@charset "UTF-8";
@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);
  }
}
.l-vehicle-info__wrapper {
  margin-top: 30px;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 1599.98px) {
  .l-vehicle-info__wrapper {
    margin-top: 15px;
  }
}
.l-vehicle-info__animations {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2.0833333333em;
  padding: 1.6666666667em;
}
@media (min-width: 1600px) {
  .l-vehicle-info__animations {
    gap: 50px;
    padding: 50px;
  }
}
@media (max-width: 1199.98px) {
  .l-vehicle-info__animations {
    gap: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 30px;
  }
}
@media (max-width: 767.98px) {
  .l-vehicle-info__animations {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
  }
}
@media (max-width: 575.98px) {
  .l-vehicle-info__animations {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.l-vehicle-info__animation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  position: relative;
  flex: 1;
  min-width: fit-content;
}
@media (min-width: 1600px) {
  .l-vehicle-info__animation {
    gap: 20px;
  }
}
@media (max-width: 575.98px) {
  .l-vehicle-info__animation {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.l-vehicle-info__animation-container {
  position: relative;
}
.l-vehicle-info__animation-container__loader {
  text-align: center;
  font-family: sans-serif;
}
.l-vehicle-info__animation-container .progress-arc {
  width: 140px;
  height: auto;
}
@media (max-width: 1599.98px) {
  .l-vehicle-info__animation-container .progress-arc {
    width: 120px;
  }
}
@media (max-width: 1199.98px) {
  .l-vehicle-info__animation-container .progress-arc {
    width: 100px;
  }
}
.l-vehicle-info__animation-container .arc-bg,
.l-vehicle-info__animation-container .arc-bar {
  fill: none;
  stroke-width: 4;
  transform-origin: center;
}
.l-vehicle-info__animation-container .arc-bg {
  stroke: #ccc;
  stroke-dasharray: 0, 8;
  /* puntos redondos pequeños */
  stroke-linecap: round;
}
.l-vehicle-info__animation-container .arc-bar {
  stroke: #1cc3e3;
  stroke-linecap: round;
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
}
.l-vehicle-info__animation-container .animation-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  transition: 0.5s all;
}
@media (max-width: 1199.98px) {
  .l-vehicle-info__animation-container .animation-icon {
    max-width: 50px;
    max-height: 40px;
  }
}
.l-vehicle-info__animation-text-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575.98px) {
  .l-vehicle-info__animation-text-container {
    align-items: flex-end;
  }
}
.l-vehicle-info__animation-title {
  font-size: 0.8em;
  font-weight: 500;
  color: #666666;
  line-height: normal;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 1600px) {
  .l-vehicle-info__animation-title {
    font-size: 1em;
  }
}
@media (max-width: 1199.98px) {
  .l-vehicle-info__animation-title {
    font-size: 0.875em;
  }
}
.l-vehicle-info__animation-value {
  font-size: 1.0909090909em;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 1600px) {
  .l-vehicle-info__animation-value {
    font-size: 1.5em;
  }
}
@media (max-width: 991.98px) {
  .l-vehicle-info__animation-value {
    font-size: 1.125em;
  }
}
.l-vehicle-info__animation-value .speed-text {
  min-width: 40px;
}
.l-vehicle-info__list {
  display: flex;
  flex-direction: column;
}
.l-vehicle-info__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 70px;
  min-height: 60px;
}
.l-vehicle-info__item:nth-child(odd) {
  background-color: #f8f8f8;
}
@media (min-width: 1200px) and (max-width: 1599.98px) {
  .l-vehicle-info__item {
    padding: 0 2.9166666667em;
    min-height: 3em;
    gap: 1em;
  }
}
@media (max-width: 991.98px) {
  .l-vehicle-info__item {
    padding: 0 20px;
    min-height: 50px;
  }
}
.l-vehicle-info__item-value, .l-vehicle-info__item-title {
  font-size: 1.125em;
  font-weight: normal;
  line-height: normal;
  color: #000;
  margin: 0;
}
@media (min-width: 1200px) and (max-width: 1599.98px) {
  .l-vehicle-info__item-value, .l-vehicle-info__item-title {
    font-size: 0.9em;
  }
}
@media (max-width: 767.98px) {
  .l-vehicle-info__item-value, .l-vehicle-info__item-title {
    font-size: 0.875em;
  }
}