#uc-header {
  position: relative;
  min-height: 58px;
}
@media screen and (min-width: 992px) {
  #uc-header {
    height: 72px;
  }
}
@media screen and (min-width: 1400px) {
  #uc-header {
    height: calc(4.5 * 1.1364vw);
  }
}
.uc-header-inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.uc-header-logo-container {
  padding: 0.25rem 0;
}
.uc-header-logo-link {
  display: block;
  margin: 0.25rem 0;
  min-width: 240px;
  padding: 0 0.25rem;
}
@media screen and (min-width: 992px) {
  .uc-header-logo-link {
    margin: 0.5rem 0;
    min-width: 320px;
    padding: 0 0.5rem;
  }
}
.uc-header-logo-image {
  display: block;
  width: 100%;
  height: auto;
  min-width: 240px;
}
@media screen and (min-width: 992px) {
  .uc-header-logo-image {
    min-width: 320px;
  }
}
.uc-header-nav {
  position: relative;
  z-index: auto;
  display: flex;
  align-items: center;
  width: 100%;
  margin-left: auto;
}
.uc-header-favorite {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0.5rem;
  margin-left: auto;
  color: #262626;
  text-decoration: none;
  transition: opacity 0.3s;
}
.uc-header-favorite:hover {
  color: #262626;
  opacity: 0.7;
}
@media screen and (min-width: 992px) {
  .uc-header-favorite {
    margin-left: 0;
  }
}
.uc-header-favorite-icon-container {
  display: inline-block;
  height: 16px;
  margin: 0 auto 8px;
  position: relative;
  top: -2px;
}
.uc-header-favorite-icon-image {
  height: 1rem;
  width: auto;
}
@media screen and (min-width: 1400px) {
  .uc-header-favorite-icon-image {
    height: calc(1 * 1.1364vw);
  }
}
.uc-header-favorite-badge {
  display: none;
  position: absolute;
  top: -0.2rem;
  right: -0.7rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #e93f33;
  color: #fff;
  font-size: 0.5rem;
  line-height: 16px;
  text-align: center;
}
.uc-header-favorite-badge.is-active {
  display: inline-block;
}
.uc-header-favorite-text {
  font-size: 0.6rem;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (min-width: 1400px) {
  .uc-header-favorite-text {
    font-size: calc(0.6 * 1.1364vw);
  }
}
.uc-header-menu-button {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.uc-header-menu-button:hover {
  opacity: 0.7;
}
@media screen and (min-width: 992px) {
  .uc-header-menu-button {
    margin-left: auto;
  }
}
@media screen and (min-width: 1300px) {
  .uc-header-menu-button {
    display: none;
  }
}
.uc-header-menu-button-icon {
  display: inline-block;
  position: absolute;
  top: 37.5%;
  right: 11px;
  width: 24px;
  height: 0;
  border: 1px solid #262626;
}
.uc-header-menu-button-icon::before,
.uc-header-menu-button-icon::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: -1px;
  width: 24px;
  height: 0;
  border: 1px solid #262626;
}
.uc-header-menu-button-icon::before {
  top: -8px;
}
.uc-header-menu-button-icon::after {
  top: 6px;
}
.uc-header-menu-button-text {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  font-size: 0.6rem;
  letter-spacing: -0.025rem;
  white-space: nowrap;
  text-align: center;
}
.uc-header-menu-list-container {
  display: none;
}
@media screen and (min-width: 992px) {
  .uc-header-menu-list-container {
    margin-left: auto;
  }
}
@media screen and (min-width: 1300px) {
  .uc-header-menu-list-container {
    display: block;
  }
}
.uc-header-menu-list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.uc-header-menu-list .uc-header-menu-list-item {
  font-size: 0.75rem;
  white-space: nowrap;
}
@media screen and (min-width: 1400px) {
  .uc-header-menu-list .uc-header-menu-list-item {
    font-size: calc(0.75 * 1.1364vw);
  }
}
.uc-header-menu-list .uc-header-menu-link {
  display: inline-block;
  padding: 0 0.5rem;
  border-left: 1px solid #9e9e9e;
  color: #424242;
  text-decoration: none;
  transition: opacity 0.3s;
}
.uc-header-menu-list .uc-header-menu-link:hover {
  color: #424242;
  opacity: 0.7;
}
.uc-header-drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(38,38,38,0.3);
  z-index: 999;
}
.uc-header-drawer-overlay.is-active {
  display: block;
}
.uc-header-drawer {
  position: fixed;
  top: 0;
  right: -80vw;
  width: 80vw;
  max-width: 400px;
  height: 100%;
  background-color: #fff;
  transition: right 0.3s;
  z-index: 1000;
}
.uc-header-drawer.is-active {
  right: 0;
}
.uc-header-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0.5rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.12);
  box-sizing: border-box;
}
.uc-header-drawer-close {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 0 0 10px;
  padding: 0;
  border: none;
  background: url("/usedcar/docs/assets/parts/img/close-black.svg") no-repeat center center;
  background-size: contain;
  cursor: pointer;
}
.uc-header-drawer-label {
  flex: 1;
  margin: 0 0 0 10px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.uc-header-drawer-body {
  height: calc(100% - 52px);
  padding: 0.5rem;
  overflow-y: auto;
}
.uc-header-drawer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.uc-header-drawer-list-item {
  position: relative;
  padding: 0.75rem 2rem 0.75rem 0.25rem;
  border-bottom: 1px solid #eee;
  font-size: 0.875rem;
}
.uc-header-drawer-list-item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #262626;
  transform: translateY(-50%);
}
.uc-header-drawer-list-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.875rem;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.uc-header-drawer-link {
  display: inline-block;
  width: 100%;
  color: #424242;
  text-decoration: none;
  transition: opacity 0.3s;
}
.uc-header-drawer-link:hover {
  color: #424242;
  opacity: 0.7;
}
html.uc-no-scroll {
  overflow: hidden;
}

/*# sourceMappingURL=header.css.map */
