@font-face {
  font-family: 'AudioWide';
  src: url('AudioWide/AudioWide-Regular.ttf') format('truetype');
  font-style: normal;
}
@font-face {
  font-family: 'poppins';
  src: url('Poppins/Poppins-Regular.ttf') format('truetype');
  font-style: normal;
}
html,
body {
  color: white;
  font-family: 'poppins', sans-serif;
  font-size: 16px;
}
html h1,
body h1,
html h2,
body h2,
html h3,
body h3,
html h4,
body h4,
html h5,
body h5,
html h6,
body h6 {
  font-family: 'AudioWide', sans-serif;
}
.login-register-container #alert-msg {
  visibility: hidden;
}
.login-register-container .password-set {
  position: relative;
}
.login-register-container .password-set #password {
  padding-right: 30px;
  position: relative;
  z-index: 1;
}
.login-register-container .password-set .show-password {
  position: absolute;
  right: 10px;
  top: 5px;
  color: #000;
  font-size: 1.5rem;
  z-index: 2;
}
.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: -1;
}
.background-image img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.search-page {
  position: relative;
  height: 100vh;
  max-width: 100vw;
  overflow: hidden !important;
}
#searchContainer {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
}
#resultsContainer {
  position: absolute;
  left: 100%;
}
.results-page {
  height: auto;
  overflow: auto;
}
.results-page .edit-car-link a {
  color: #ff0;
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.25s linear;
}
.results-page .edit-car-link a:hover {
  color: #ffc107;
}
@keyframes searchSlideToLeft {
  from {
    transform: translate(0, -50%);
  }
  to {
    transform: translate(-100%, -50%);
  }
}
@keyframes searchSlideToRight {
  from {
    transform: translate(-100%, -50%);
  }
  to {
    transform: translate(0, -50%);
  }
}
@keyframes resultSlideToLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes resultSlideToRight {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
.animate-search-left {
  animation: searchSlideToLeft 1s forwards ease-out;
}
.animate-search-right {
  animation: searchSlideToRight 1s forwards ease-out;
}
.animate-result-left {
  animation: resultSlideToLeft 1s forwards ease-out;
}
.animate-result-right {
  animation: resultSlideToRight 1s forwards ease-in;
}
.white-icon {
  position: relative;
  top: 6px;
  color: #fff;
  font-size: 1.5rem;
}
.back-icon {
  position: relative;
  top: 5px;
  font-size: 1.5rem;
}
.required-icon {
  color: red;
  font-size: 0.5rem;
  position: relative;
  top: -2px;
}
