@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes diagonal {
  0% {
    transform: translatex(0) translatey(0);
  }
  50% {
    transform: translatex(15px) translatey(15px);
  }
  100% {
    transform: translatex(0) translatey(0);
  }
}
@-moz-keyframes diagonal {
  0% {
    transform: translatex(0) translatey(0);
  }
  50% {
    transform: translatex(15px) translatey(15px);
  }
  100% {
    transform: translatex(0) translatey(0);
  }
}
@-o-keyframes diagonal {
  0% {
    transform: translatex(0) translatey(0);
  }
  50% {
    transform: translatex(15px) translatey(15px);
  }
  100% {
    transform: translatex(0) translatey(0);
  }
}
@keyframes diagonal {
  0% {
    transform: translatex(0) translatey(0);
  }
  50% {
    transform: translatex(15px) translatey(15px);
  }
  100% {
    transform: translatex(0) translatey(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.js-car-header-fixed {
  display: none;
}

.c-car-header {
  background-color: #740022;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  position: fixed;
  z-index: 2;
  top: 50px;
  width: 100%;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.36);
  display: flex;
  flex-wrap: wrap;
  transition: 0.5s all;
}
.c-car-header__title {
  text-transform: uppercase;
  padding: 8px 15px;
  width: 50%;
}
.c-car-header__brand {
  font-size: 1em;
  font-weight: bold;
}
.c-car-header__model {
  display: block;
  font-size: 1em;
  font-weight: bold;
}
.c-car-header__version {
  font-size: 0.6875em;
  font-weight: bold;
}
.c-car-header__price-wrapper {
  width: 50%;
}
.c-car-header__price {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  padding: 10px 15px 0 0;
}
.c-car-header__old-price {
  color: #ff4438;
  font-size: 1em;
  font-weight: 500;
  text-decoration: line-through;
  margin-right: 10px;
}
.c-car-header__current-price {
  font-size: 1.625em;
  font-weight: bold;
  line-height: normal;
}
.c-car-header__current-price .woocommerce-Price-currencySymbol {
  font-size: 16px;
}
.c-car-header__quote {
  width: fit-content;
  border-radius: 6px 0 0 0;
  background-image: linear-gradient(to bottom, #eb0045 1%, #ff4438);
  font-size: 1.125em;
  font-weight: bold;
  text-align: right;
  padding: 5px 15px 5px 30px;
  position: absolute;
  bottom: 0;
  right: 0;
  color: #ffffff;
}
.c-car-header__quote:hover, .c-car-header__quote:active, .c-car-header__quote:focus, .c-car-header__quote:visited {
  color: #ffffff;
}