.aoyea-component-manual-library {
  position: relative;
  overflow: hidden;
  background: var(--aoyea-color-page);
  color: #fff;
  font-family: var(--aoyea-font-ui);
}

.aoyea-component-manual-library .aoyea-manual-hero {
  position: relative;
  height: var(--aoyea-hero-height-default);
  overflow: hidden;
}

.aoyea-component-manual-library .aoyea-manual-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 44.4%;
}

.aoyea-component-manual-library .aoyea-manual-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 24%);
}

.aoyea-component-manual-library .aoyea-manual-hero h1 {
  position: absolute;
  top: 203px;
  left: 50%;
  width: min(992px, calc(100% - 64px));
  margin: 0;
  color: #fff;
  font-family: var(--aoyea-font-display);
  font-size: 200px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transform: translateX(-50%);
}

.aoyea-component-manual-library .aoyea-manual-catalogue {
  position: relative;
  min-height: 1980px;
  background: var(--aoyea-color-page);
}

.aoyea-component-manual-library .aoyea-manual-search {
  position: absolute;
  z-index: 2;
  top: -88px;
  left: 50%;
  display: flex;
  width: min(1134px, calc(100% - 64px));
  height: 88px;
  align-items: center;
  padding: 0 27px 0 35px;
  border-radius: 12px 12px 0 0;
  background: var(--aoyea-color-page);
  transform: translateX(-50%);
}

.aoyea-component-manual-library .aoyea-manual-search-title {
  width: 420px;
  flex: 0 0 420px;
  font-size: 28px;
  font-weight: 400;
  line-height: 48px;
  transform: translateY(7px);
}

.aoyea-component-manual-library .aoyea-manual-search-field {
  position: relative;
  width: 592px;
  height: 52px;
  margin-left: auto;
  transform: translateY(7px);
}

.aoyea-component-manual-library .aoyea-manual-search-field > img {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 18px;
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.aoyea-component-manual-library .aoyea-manual-search-field input {
  width: 100%;
  height: 52px;
  padding: 0 132px 0 60px;
  border: 1px solid #fff;
  border-radius: 26px;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 16px;
  line-height: 18px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.aoyea-component-manual-library .aoyea-manual-search-field input::placeholder {
  color: #c7c7c7;
  opacity: 1;
}

.aoyea-component-manual-library .aoyea-manual-search-field input:focus {
  border-color: var(--aoyea-color-brand);
  box-shadow: 0 0 0 3px rgb(49 197 0 / 18%);
}

.aoyea-component-manual-library .aoyea-manual-search-field button {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 111px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #fff;
  color: #000;
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.aoyea-component-manual-library .aoyea-manual-search-field button:hover,
.aoyea-component-manual-library .aoyea-manual-search-field button:focus-visible {
  background: var(--aoyea-color-brand);
  color: #fff;
}

.aoyea-component-manual-library .aoyea-manual-layout {
  display: grid;
  width: min(1184px, calc(100% - 64px));
  grid-template-columns: 260px 760px;
  column-gap: 120px;
  margin: 0 auto;
  padding-top: 83px;
}

.aoyea-component-manual-library .aoyea-manual-categories h2 {
  height: 38px;
  margin: 0 0 9px;
  font-size: 24px;
  font-weight: 500;
  line-height: 38px;
}

.aoyea-component-manual-library .aoyea-manual-category-tree {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.aoyea-component-manual-library .aoyea-manual-category-tree button,
.aoyea-component-manual-library .aoyea-manual-category-group summary {
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
}

.aoyea-component-manual-library .aoyea-manual-category-all,
.aoyea-component-manual-library .aoyea-manual-vehicle-filter {
  display: flex;
  width: 260px;
  height: 45px;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-radius: 12px;
}

.aoyea-component-manual-library .aoyea-manual-category-tree > button:hover,
.aoyea-component-manual-library .aoyea-manual-category-tree > button:focus-visible,
.aoyea-component-manual-library .aoyea-manual-category-tree > button.aoyea-is-active {
  background: #222;
  box-shadow: inset 0 1px 2px rgb(92 92 92 / 40%), inset 0 -1px 2px #2c2c2c;
}

.aoyea-component-manual-library .aoyea-manual-category-group {
  width: 260px;
}

.aoyea-component-manual-library .aoyea-manual-category-group summary {
  display: flex;
  width: 260px;
  height: 45px;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-radius: 8px;
  background: #222;
  box-shadow: inset 0 1px 2px rgb(92 92 92 / 40%), inset 0 -1px 2px #2c2c2c;
  list-style: none;
}

.aoyea-component-manual-library .aoyea-manual-category-group summary::-webkit-details-marker {
  display: none;
}

.aoyea-component-manual-library .aoyea-manual-category-group summary img,
.aoyea-component-manual-library .aoyea-manual-vehicle-filter img {
  width: 20px;
  height: 20px;
  transition: transform 180ms ease;
}

.aoyea-component-manual-library .aoyea-manual-category-group[open] summary img {
  transform: rotate(180deg);
}

.aoyea-component-manual-library .aoyea-manual-category-group ul {
  position: relative;
  display: flex;
  height: 674px;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 0 8px;
  padding: 7px 0 0 16px;
  border-left: 2px solid #222;
  border-radius: 0 0 0 12px;
  list-style: none;
}

.aoyea-component-manual-library .aoyea-manual-category-group ul::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 18px;
  height: 2px;
  background: #222;
  content: "";
}

.aoyea-component-manual-library .aoyea-manual-category-group li {
  position: relative;
  width: 236px;
  height: 37px;
}

.aoyea-component-manual-library .aoyea-manual-category-group li::before {
  position: absolute;
  top: 17px;
  left: -16px;
  width: 18px;
  height: 2px;
  background: #242424;
  content: "";
}

.aoyea-component-manual-library .aoyea-manual-category-group li button {
  position: relative;
  width: 236px;
  height: 37px;
  padding: 8px;
  border-radius: 8px;
  color: #9d9d9d;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
  transition: color 160ms ease, background-color 160ms ease;
}

.aoyea-component-manual-library .aoyea-manual-category-group li button:hover,
.aoyea-component-manual-library .aoyea-manual-category-group li button:focus-visible,
.aoyea-component-manual-library .aoyea-manual-category-group li button.aoyea-is-active {
  color: var(--aoyea-color-brand);
}

.aoyea-component-manual-library .aoyea-manual-card-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.aoyea-component-manual-library .aoyea-manual-card {
  position: relative;
  width: 760px;
  height: 236px;
  overflow: hidden;
  border: 1px solid rgb(217 221 228 / 10%);
  border-radius: 12px;
  background: #212121;
  box-shadow: inset 0 2px 4px rgb(92 92 92 / 40%), inset 0 -2px 4px #3d3d3d;
  transition: border-color 300ms ease, transform 300ms ease;
  will-change: transform;
}

@media (hover: hover) {
  .aoyea-component-manual-library .aoyea-manual-card:hover {
    border-color: var(--aoyea-color-brand);
    transform: translateY(-4px);
  }
}

.aoyea-component-manual-library .aoyea-manual-card:focus-within {
  border-color: var(--aoyea-color-brand);
  transform: translateY(-4px);
}

.aoyea-component-manual-library .aoyea-manual-card[hidden] {
  display: none;
}

.aoyea-component-manual-library .aoyea-manual-card-copy {
  position: absolute;
  z-index: 1;
  top: 34px;
  left: 58px;
  display: flex;
  width: 366px;
  flex-direction: column;
  gap: 33px;
}

.aoyea-component-manual-library .aoyea-manual-card-copy > div {
  display: flex;
  height: 99px;
  flex-direction: column;
  gap: 12px;
}

.aoyea-component-manual-library .aoyea-manual-card h2,
.aoyea-component-manual-library .aoyea-manual-card h3,
.aoyea-component-manual-library .aoyea-manual-card p {
  margin: 0;
}

.aoyea-component-manual-library .aoyea-manual-card h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
}

.aoyea-component-manual-library .aoyea-manual-card h3 {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

.aoyea-component-manual-library .aoyea-manual-card p {
  width: 366px;
  color: #afafaf;
  font-family: var(--aoyea-font-copy);
  font-size: 13px;
  font-weight: 300;
  line-height: 16px;
}

.aoyea-component-manual-library .aoyea-manual-card-copy > button {
  display: flex;
  width: 216px;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 23px;
  background: #fff;
  box-shadow: none;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  cursor: pointer;
  transition: background-color 300ms ease, border-color 300ms ease, color 300ms ease, transform 300ms ease;
}

.aoyea-component-manual-library .aoyea-manual-card-copy > button:hover,
.aoyea-component-manual-library .aoyea-manual-card-copy > button:focus-visible {
  border-color: var(--aoyea-color-brand);
  background: var(--aoyea-color-brand);
  color: #fff;
  transform: translateY(-4px);
}

.aoyea-component-manual-library .aoyea-manual-card-copy > button img {
  width: 15px;
  height: 12px;
  transition: filter 300ms ease;
}

.aoyea-component-manual-library .aoyea-manual-card-copy > button:hover img,
.aoyea-component-manual-library .aoyea-manual-card-copy > button:focus-visible img {
  filter: invert(1);
}

.aoyea-component-manual-library .aoyea-manual-card-visual {
  position: absolute;
  top: 46px;
  right: -10px;
  width: 201px;
  height: 265px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: inset 0 2px 4px rgb(92 92 92 / 40%), inset 0 -2px 4px #3d3d3d;
  transform: translate3d(0, 0, 0) rotate(0deg);
  transform-origin: 50% 50%;
  transition: transform 420ms cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.aoyea-component-manual-library .aoyea-manual-card-visual img {
  position: absolute;
  top: 0;
  left: -101.2%;
  width: 201%;
  height: 131.32%;
  max-width: none;
}

.aoyea-component-manual-library .aoyea-manual-card--featured .aoyea-manual-card-visual {
  top: 36px;
  right: -8px;
}

@media (hover: hover) {
  .aoyea-component-manual-library .aoyea-manual-card:hover .aoyea-manual-card-visual {
    transform: translate3d(-24px, -2px, 0) rotate(-6.31deg) scale(1.07);
  }
}

.aoyea-component-manual-library .aoyea-manual-card:focus-within .aoyea-manual-card-visual {
  transform: translate3d(-24px, -2px, 0) rotate(-6.31deg) scale(1.07);
}

.aoyea-component-manual-library .aoyea-manual-card-visual--placeholder {
  background: #d9d9d9;
}

.aoyea-component-manual-library .aoyea-manual-empty {
  display: grid;
  height: 236px;
  margin: 0;
  place-items: center;
  border: 1px solid rgb(217 221 228 / 10%);
  border-radius: 12px;
  color: #afafaf;
  font-size: 16px;
}

.aoyea-component-manual-library .aoyea-manual-empty[hidden] {
  display: none;
}

.aoyea-component-manual-library .aoyea-manual-pagination {
  display: flex;
  width: 502px;
  height: 60px;
  align-items: center;
  gap: 25px;
  margin: 48px auto 0;
}

.aoyea-component-manual-library .aoyea-manual-pagination > div {
  display: flex;
  gap: 2px;
}

.aoyea-component-manual-library .aoyea-manual-pagination button,
.aoyea-component-manual-library .aoyea-manual-pagination span {
  display: grid;
  width: 60px;
  height: 60px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 30px;
  background: transparent;
  color: #fff;
  font-size: 24px;
  line-height: 24px;
}

.aoyea-component-manual-library .aoyea-manual-pagination button {
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.aoyea-component-manual-library .aoyea-manual-pagination button:hover,
.aoyea-component-manual-library .aoyea-manual-pagination button:focus-visible,
.aoyea-component-manual-library .aoyea-manual-pagination button.aoyea-is-active {
  background: #fff;
  color: #000;
}

.aoyea-component-manual-library .aoyea-manual-pagination .aoyea-manual-pagination-arrow {
  width: 10px;
  height: 18px;
  flex: 0 0 10px;
  border-radius: 0;
}

.aoyea-component-manual-library .aoyea-manual-pagination .aoyea-manual-pagination-arrow:hover,
.aoyea-component-manual-library .aoyea-manual-pagination .aoyea-manual-pagination-arrow:focus-visible {
  background: transparent;
}

.aoyea-component-manual-library .aoyea-manual-pagination-arrow img {
  width: 14px;
  height: 21px;
  max-width: none;
}

@media (max-width: 1279px) {
  .aoyea-component-manual-library .aoyea-manual-layout {
    grid-template-columns: 230px minmax(0, 760px);
    column-gap: clamp(40px, 7vw, 90px);
  }

  .aoyea-component-manual-library .aoyea-manual-categories,
  .aoyea-component-manual-library .aoyea-manual-category-group,
  .aoyea-component-manual-library .aoyea-manual-category-group summary,
  .aoyea-component-manual-library .aoyea-manual-category-all,
  .aoyea-component-manual-library .aoyea-manual-vehicle-filter {
    width: 230px;
  }

  .aoyea-component-manual-library .aoyea-manual-category-group li,
  .aoyea-component-manual-library .aoyea-manual-category-group li button {
    width: 206px;
  }

  .aoyea-component-manual-library .aoyea-manual-category-group li button {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .aoyea-component-manual-library .aoyea-manual-card {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .aoyea-component-manual-library .aoyea-manual-hero h1 {
    top: 230px;
    font-size: clamp(104px, 17vw, 174px);
  }

  .aoyea-component-manual-library .aoyea-manual-catalogue {
    min-height: 0;
    padding: 0 30px 150px;
  }

  .aoyea-component-manual-library .aoyea-manual-search {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    min-height: 104px;
    margin: -72px auto 0;
    padding: 20px 24px;
    gap: 24px;
    transform: none;
  }

  .aoyea-component-manual-library .aoyea-manual-search-title {
    width: auto;
    flex: 1 1 auto;
    font-size: 22px;
    line-height: 30px;
    transform: none;
  }

  .aoyea-component-manual-library .aoyea-manual-search-field {
    width: min(520px, 65%);
    flex: 1 1 520px;
    transform: none;
  }

  .aoyea-component-manual-library .aoyea-manual-layout {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 54px;
    padding-top: 58px;
  }

  .aoyea-component-manual-library .aoyea-manual-category-tree {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .aoyea-component-manual-library .aoyea-manual-category-all,
  .aoyea-component-manual-library .aoyea-manual-vehicle-filter,
  .aoyea-component-manual-library .aoyea-manual-category-group,
  .aoyea-component-manual-library .aoyea-manual-category-group summary {
    width: 100%;
  }

  .aoyea-component-manual-library .aoyea-manual-category-group {
    grid-column: 1 / -1;
  }

  .aoyea-component-manual-library .aoyea-manual-category-group ul {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 12px;
  }

  .aoyea-component-manual-library .aoyea-manual-category-group li,
  .aoyea-component-manual-library .aoyea-manual-category-group li button {
    width: 100%;
  }

  .aoyea-component-manual-library .aoyea-manual-card {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .aoyea-component-manual-library .aoyea-manual-hero {
    height: var(--aoyea-hero-height-default-mobile);
  }

  .aoyea-component-manual-library .aoyea-manual-hero-image {
    width: 135%;
  }

  .aoyea-component-manual-library .aoyea-manual-hero h1 {
    top: 230px;
    font-size: clamp(70px, 23vw, 108px);
  }

  .aoyea-component-manual-library .aoyea-manual-catalogue {
    padding: 0 20px 100px;
  }

  .aoyea-component-manual-library .aoyea-manual-search {
    flex-direction: column;
    align-items: stretch;
    margin-top: -44px;
    padding: 22px 18px 24px;
    gap: 14px;
  }

  .aoyea-component-manual-library .aoyea-manual-search-title {
    flex: 0 0 auto;
    font-size: 21px;
  }

  .aoyea-component-manual-library .aoyea-manual-search-field {
    width: 100%;
    flex: 0 0 52px;
  }

  .aoyea-component-manual-library .aoyea-manual-search-field input {
    padding-right: 104px;
    font-size: 13px;
  }

  .aoyea-component-manual-library .aoyea-manual-search-field button {
    width: 88px;
  }

  .aoyea-component-manual-library .aoyea-manual-layout {
    padding-top: 48px;
  }

  .aoyea-component-manual-library .aoyea-manual-categories h2 {
    font-size: 22px;
  }

  .aoyea-component-manual-library .aoyea-manual-category-tree {
    grid-template-columns: 1fr;
  }

  .aoyea-component-manual-library .aoyea-manual-category-group,
  .aoyea-component-manual-library .aoyea-manual-category-group ul {
    grid-column: auto;
  }

  .aoyea-component-manual-library .aoyea-manual-category-group ul {
    grid-template-columns: 1fr;
  }

  .aoyea-component-manual-library .aoyea-manual-card {
    height: 286px;
  }

  .aoyea-component-manual-library .aoyea-manual-card-copy {
    top: 28px;
    left: 24px;
    width: calc(100% - 48px);
  }

  .aoyea-component-manual-library .aoyea-manual-card-copy > div {
    width: min(66%, 366px);
    height: 122px;
  }

  .aoyea-component-manual-library .aoyea-manual-card p {
    width: 100%;
  }

  .aoyea-component-manual-library .aoyea-manual-card-visual {
    top: 36px;
    right: -36px;
    width: 164px;
    height: 250px;
  }

  .aoyea-component-manual-library .aoyea-manual-card-copy > button {
    position: relative;
    z-index: 2;
  }

  .aoyea-component-manual-library .aoyea-manual-pagination {
    width: min(100%, 390px);
    justify-content: center;
    gap: 10px;
    overflow: hidden;
  }

  .aoyea-component-manual-library .aoyea-manual-pagination button,
  .aoyea-component-manual-library .aoyea-manual-pagination span {
    width: 42px;
    height: 42px;
    border-radius: 21px;
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aoyea-component-manual-library *,
  .aoyea-component-manual-library *::before,
  .aoyea-component-manual-library *::after {
    transition: none !important;
  }
}

body.aoyea-manual-modal-open {
  overflow: hidden;
}

.aoyea-component-manual-library .aoyea-manual-download-modal {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  overflow-y: auto;
  padding: 24px;
  place-items: center;
  background: rgb(0 0 0 / 60%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.aoyea-component-manual-library .aoyea-manual-download-modal[hidden],
.aoyea-component-manual-library .aoyea-manual-download-view[hidden] {
  display: none;
}

.aoyea-component-manual-library .aoyea-manual-download-dialog {
  position: relative;
  width: min(542px, calc(100vw - 48px));
  height: 504px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid #6aed5e;
  border-radius: 20px;
  outline: 0;
  background: #212121;
  box-shadow: inset 0 2px 4px rgb(92 92 92 / 40%), inset 0 -2px 4px #3d3d3d;
  color: #fff;
}

.aoyea-component-manual-library .aoyea-manual-download-close {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 33px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.aoyea-component-manual-library .aoyea-manual-download-close::before,
.aoyea-component-manual-library .aoyea-manual-download-close::after {
  position: absolute;
  top: 17px;
  left: 8px;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  content: "";
}

.aoyea-component-manual-library .aoyea-manual-download-close::before {
  transform: rotate(45deg);
}

.aoyea-component-manual-library .aoyea-manual-download-close::after {
  transform: rotate(-45deg);
}

.aoyea-component-manual-library .aoyea-manual-download-close::before,
.aoyea-component-manual-library .aoyea-manual-download-close::after {
  transition: background-color 180ms ease;
}

.aoyea-component-manual-library .aoyea-manual-download-close:hover::before,
.aoyea-component-manual-library .aoyea-manual-download-close:hover::after,
.aoyea-component-manual-library .aoyea-manual-download-close:focus-visible::before,
.aoyea-component-manual-library .aoyea-manual-download-close:focus-visible::after {
  background: var(--aoyea-color-brand);
}

.aoyea-component-manual-library .aoyea-manual-download-view {
  position: absolute;
  inset: 0;
}

.aoyea-component-manual-library .aoyea-manual-download-icon {
  position: absolute;
  top: 74px;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translateX(-50%);
}

.aoyea-component-manual-library .aoyea-manual-download-view h2 {
  position: absolute;
  top: 180px;
  left: 40px;
  width: calc(100% - 80px);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  text-align: center;
}

.aoyea-component-manual-library .aoyea-manual-download-description {
  position: absolute;
  top: 219px;
  left: 40px;
  width: calc(100% - 80px);
  margin: 0;
  color: #9ea1a7;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
}

.aoyea-component-manual-library .aoyea-manual-download-description strong {
  color: #fff;
  font-weight: 500;
}

.aoyea-component-manual-library .aoyea-manual-download-form label {
  position: absolute;
  top: 262px;
  left: 40px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

.aoyea-component-manual-library .aoyea-manual-download-form input {
  position: absolute;
  top: 297px;
  left: 40px;
  width: calc(100% - 80px);
  height: 46px;
  padding: 0 14px;
  border: 1px solid rgb(49 197 0 / 30%);
  border-radius: 12px;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.aoyea-component-manual-library .aoyea-manual-download-form input::placeholder {
  color: #53545a;
  opacity: 1;
}

.aoyea-component-manual-library .aoyea-manual-download-form input:focus {
  border-color: var(--aoyea-color-brand);
  box-shadow: 0 0 0 3px rgb(49 197 0 / 14%);
}

.aoyea-component-manual-library .aoyea-manual-download-form button,
.aoyea-component-manual-library .aoyea-manual-download-done {
  position: absolute;
  top: 384px;
  left: 40px;
  width: calc(100% - 80px);
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--aoyea-color-brand);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  cursor: pointer;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.aoyea-component-manual-library .aoyea-manual-download-form button:hover,
.aoyea-component-manual-library .aoyea-manual-download-form button:focus-visible,
.aoyea-component-manual-library .aoyea-manual-download-done:hover,
.aoyea-component-manual-library .aoyea-manual-download-done:focus-visible {
  background: var(--aoyea-color-brand-strong);
  box-shadow: 0 8px 24px rgb(49 197 0 / 22%);
}

.aoyea-component-manual-library .aoyea-manual-download-form button:active,
.aoyea-component-manual-library .aoyea-manual-download-done:active {
  transform: translateY(1px);
}

.aoyea-component-manual-library .aoyea-manual-download-view--success .aoyea-manual-download-icon {
  top: 119px;
}

.aoyea-component-manual-library .aoyea-manual-download-view--success h2 {
  top: 225px;
  line-height: 22px;
}

.aoyea-component-manual-library .aoyea-manual-download-view--success .aoyea-manual-download-description {
  top: 264px;
}

@media (max-width: 600px) {
  .aoyea-component-manual-library .aoyea-manual-download-modal {
    padding: 16px;
  }

  .aoyea-component-manual-library .aoyea-manual-download-dialog {
    width: calc(100vw - 32px);
    height: min(504px, calc(100dvh - 32px));
    min-height: 460px;
  }

  .aoyea-component-manual-library .aoyea-manual-download-close {
    right: 18px;
  }

  .aoyea-component-manual-library .aoyea-manual-download-view h2,
  .aoyea-component-manual-library .aoyea-manual-download-description {
    left: 24px;
    width: calc(100% - 48px);
  }

  .aoyea-component-manual-library .aoyea-manual-download-form label,
  .aoyea-component-manual-library .aoyea-manual-download-form input,
  .aoyea-component-manual-library .aoyea-manual-download-form button,
  .aoyea-component-manual-library .aoyea-manual-download-done {
    left: 24px;
    width: calc(100% - 48px);
  }
}
