@charset "UTF-8";
body {
  font-family: "Skoda Next", Courier, monospace;
  background-color: #f3f3f3;
}

#app {
  max-width: 1800px;
  margin-inline: auto;
}

section {
  width: clamp(800px, 85%, 1600px);
  margin-inline: auto;
}
@media (max-width: 599px) {
  section {
    width: 90%;
  }
}

.intro {
  margin-block: 5rem;
}
@media (max-width: 599px) {
  .intro {
    margin-block: 3rem;
  }
}
.intro__header {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  margin-inline: 25%;
  margin-block: 0 4rem;
}
@media (max-width: 599px) {
  .intro__header {
    margin-inline: 2rem;
  }
}
.intro p {
  text-align: center;
  margin-inline: 10%;
}
@media (max-width: 599px) {
  .intro p {
    margin-inline: 1rem;
  }
}

.offers {
  margin-block: 5rem;
}
.offers__offers-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.offers__offer {
  padding-block: 1rem;
  padding-inline: 1rem;
  background-color: #fff;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
  display: flex;
}
@media (max-width: 599px) {
  .offers__offer--desktop {
    display: none;
  }
}
.offers__img-wrapper {
  width: 400px;
  aspect-ratio: 1600/897;
}
.offers__img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
.offers__content {
  display: flex;
  color: #797979;
  align-items: center;
  width: 100%;
}
.offers__content-part {
  padding-inline: 1rem;
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.offers__content-part:not(:first-child) {
  border-left: 1px solid #e6e9ec;
}
.offers__content-part:has(:nth-child(2), :nth-child(3)) {
  flex: 1;
}
.offers__content-part:first-child {
  flex: 0.8;
}
.offers__content-part:nth-child(4) {
  flex: 0.8;
}
.offers__content-part > button {
  font-size: 0.75rem;
  font-weight: 600;
  background-color: #78faae;
  border-radius: 100px;
  padding-block: 0.7rem;
  color: #000;
  padding-inline: 2rem;
  margin-inline: auto;
  display: block;
  cursor: pointer;
}
.offers__name {
  font-size: 2rem;
  font-weight: 200;
}
.offers__offer-id {
  font-size: 1rem;
}
.offers__params {
  margin-block: 0 1rem;
}
.offers__params, .offers__date {
  max-width: 200px;
  font-size: 0.8rem;
}
.offers__params span, .offers__date span {
  font-weight: 600;
}
.offers__price-small {
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}
.offers__price-small span:nth-child(2) {
  color: #000;
}
.offers__price-big {
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-block: 0.5rem 0;
}
.offers__price-big span:nth-child(2) {
  font-size: 1.15rem;
  color: #78faae;
}
.offers__offer-mob {
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1200px) {
  .offers__offer-mob {
    display: none;
  }
}
.offers__content-mob {
  padding-block: 1rem;
  background-color: #fff;
  padding: 1rem;
}
.offers__content-mob h3 {
  font-size: 1.6rem;
}
.offers__content-mob h4 {
  font-size: 1rem;
}
.offers__content-mob h4 span {
  font-size: 1.4rem;
  color: #78faae;
  font-weight: 600;
}
.offers__content-mob p {
  font-size: 0.8rem;
  margin-block: 1rem;
}
.offers__content-mob > button {
  font-size: 0.85rem;
  font-weight: 600;
  background-color: #78faae;
  border-radius: 100px;
  padding-block: 0.75rem;
  color: #000;
  padding-inline: 3rem;
  margin-inline: auto;
  display: block;
  cursor: pointer;
  margin-block: 1rem 0;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: #f3f4f6;
  border-radius: 50px;
  margin: 2rem auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.pagination__list {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}
.pagination__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-weight: bold;
  font-size: 1rem;
  background-color: #fff;
  border: 2px solid #66e0a8;
  color: #000;
}
.pagination__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.pagination__button--active {
  background-color: #66e0a8;
  border-color: #66e0a8;
  cursor: default;
}
.pagination__button--active:hover {
  transform: none;
  box-shadow: none;
}
.pagination__ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-weight: bold;
  color: #555;
  border-radius: 100px;
}

.selects {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}
@media (max-width: 599px) {
  .selects {
    flex-direction: column;
  }
}

.form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 2rem;
  padding-block: 2rem;
  padding-inline: 2rem;
  color: #000;
  padding-inline: 5rem;
}
@media (max-width: 599px) {
  .form {
    width: 100%;
    margin-inline: 0;
    padding-inline: 2rem;
  }
}
.form__bg {
  display: flex;
  background-color: #fff;
  background-size: cover;
  padding-block: 2rem;
  margin-block: 2rem 3rem;
  position: relative;
}
.form__header {
  width: 100%;
  font-size: 1.8rem;
  text-align: center;
}
.form__subheader {
  width: 100%;
  text-align: center;
}
.form__input-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 47%;
}
@media (max-width: 599px) {
  .form__input-wrapper {
    width: 100%;
  }
}
.form__textarea-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.form__label {
  position: absolute;
  top: 30%;
  left: 0.75rem;
  color: #000;
  cursor: text;
  transition: all 0.1s ease-in-out;
  transform-origin: left;
}
.form__label--textarea {
  top: 1.5rem;
}
.form__label--error {
  color: #fc0d1b;
}
.form__input {
  padding-inline: 0.75rem;
  padding-block: 1rem 0.375rem;
  border-bottom: 1px solid #8a9097;
  transition: all 0.1s ease-in-out;
  color: #000;
}
.form__input::-moz-placeholder {
  color: transparent;
}
.form__input::placeholder {
  color: transparent;
}
.form__input:is(:focus) {
  border-color: #3f83f8;
}
.form__input:is(:focus):not(.form__input--error) + label {
  color: #3f83f8;
}
.form__input:is(:focus, :not(:-moz-placeholder-shown)) + label {
  top: -5px;
  left: 0.785rem;
  scale: 0.7;
}
.form__input:is(:focus, :not(:placeholder-shown)) + label {
  top: -5px;
  left: 0.785rem;
  scale: 0.7;
}
.form__input--error {
  border-color: #fc0d1b;
  color: #fc0d1b;
  background-color: #ffdbdd;
}
.form__checkbox-wrapper {
  width: 100%;
  margin-left: 25px;
}
.form__checkbox-wrapper:has(input:checked) label::before {
  content: "✓";
  background-color: #001e50;
  line-height: 0;
  font-size: 0.9rem;
}
.form__checkbox-wrapper--small {
  width: 100px;
}
.form__checkbox {
  position: relative;
  cursor: pointer;
  font-size: 0.9rem;
}
.form__checkbox::before {
  content: "";
  position: absolute;
  left: -25px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  border-radius: 3px;
  border: 1px solid #8a9097;
  transition: all 0.2s ease-in-out;
}
.form__checkboxes-wrapper {
  width: 100%;
  display: flex;
  gap: 0.25rem;
}
.form__textarea {
  height: 100px;
  padding-inline: 0.75rem;
  padding-block: 1.5rem 1rem;
  border-bottom: 1px solid #8a9097;
  transition: all 0.1s ease-in-out;
  color: #000;
}
.form__textarea::-moz-placeholder {
  color: transparent;
}
.form__textarea::placeholder {
  color: transparent;
}
.form__textarea:focus {
  border-color: #3f83f8;
}
.form__textarea:is(:focus) + label {
  color: #3f83f8;
}
.form__textarea:is(:focus, :not(:-moz-placeholder-shown)) + label {
  scale: 0.75;
  top: 0.4rem;
}
.form__textarea:is(:focus, :not(:placeholder-shown)) + label {
  scale: 0.75;
  top: 0.4rem;
}
.form__error-message-wrapper {
  position: absolute;
  bottom: -1.2rem;
}
.form__error-message-wrapper--checkbox {
  position: static;
}
.form__error-message {
  height: 1rem;
  font-size: 0.7rem;
  color: #fc0d1b;
  margin-block: 0.25rem 0;
  white-space: nowrap;
}
.form__consent-text {
  font-size: 0.7rem;
}
.form__expand-btn {
  display: block;
  font-weight: 600;
  cursor: pointer;
}
.form__submit-btn {
  padding-block: 0.75rem;
  padding-inline: 5rem;
  border-radius: 100px;
  background-color: #78faae;
  margin-inline: auto;
  color: #0e3a2f;
  transition: all 0.2s ease-in-out;
}
.form__submit-btn:hover {
  cursor: pointer;
  background-color: #47f890;
}
.form__submit-btn:disabled {
  opacity: 0.3;
}
.form__submit-btn:disabled:hover {
  color: #fff;
  background-color: #000;
}
@media (max-width: 599px) {
  .form__submit-btn {
    margin-inline: auto;
  }
}
.form__popup-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 99999;
}
.form__popup {
  position: relative;
  padding-inline: 3rem;
  padding-block: 3rem;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
}
.form__popup-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  font-size: 1.4rem;
  cursor: pointer;
}

.baner {
  position: relative;
  font-weight: 300;
}
.baner__content {
  position: absolute;
  bottom: 15%;
  left: 8%;
  color: #fff;
}
@media (max-width: 599px) {
  .baner__content {
    position: static;
    color: #000;
    margin-inline: 1rem;
    margin-block: 1rem;
    text-align: center;
    font-weight: 600;
  }
}
.baner__title {
  font-size: clamp(1.2rem, 3.5vw, 3rem);
  margin-block: 0 1rem;
  font-weight: 600;
}
.baner__subline {
  font-size: clamp(1.2rem, 3.5vw, 3rem);
}

.footer {
  padding-block: 2rem;
  padding-inline: 2rem;
  background-color: #0e3a2f;
  color: #fff;
  text-align: center;
}
.footer__main {
  font-size: 1.4rem;
}
.footer__submain {
  font-size: 1.2rem;
  font-weight: 600;
  margin-block: 0.25rem 0.75rem;
}

.logo-bar {
  background-color: #fff;
  display: flex;
  padding-inline: 3%;
  padding-block: 0.25rem;
  align-items: center;
}
.logo-bar > a {
  width: -moz-fit-content;
  width: fit-content;
}
.logo-bar__logo {
  width: clamp(150px, 16%, 300px);
  padding-inline: 0 1.5rem;
}
.logo-bar__dealer-name {
  color: #0e3a2f;
  font-weight: 600;
  font-size: 1.3rem;
  border-left: 1px solid #0e3a2f;
  padding-inline: 1.5rem 0;
  margin-block: 0.2rem 0;
  height: -moz-fit-content;
  height: fit-content;
}
.logo-bar__dealer-name p {
  line-height: 1rem;
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.loader__item {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loader__item div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.loader__item div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fcf;
  margin: -4px 0 0 -4px;
}
.loader__item div:nth-child(1) {
  animation-delay: -0.036s;
}
.loader__item div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.loader__item div:nth-child(2) {
  animation-delay: -0.072s;
}
.loader__item div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.loader__item div:nth-child(3) {
  animation-delay: -0.108s;
}
.loader__item div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.loader__item div:nth-child(4) {
  animation-delay: -0.144s;
}
.loader__item div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.loader__item div:nth-child(5) {
  animation-delay: -0.18s;
}
.loader__item div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.loader__item div:nth-child(6) {
  animation-delay: -0.216s;
}
.loader__item div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.loader__item div:nth-child(7) {
  animation-delay: -0.252s;
}
.loader__item div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.loader__item div:nth-child(8) {
  animation-delay: -0.288s;
}
.loader__item div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Block: .custom-select */
.custom-select {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: sans-serif;
  /* Element: .custom-select__label */
  /* Element: .custom-select__wrapper */
  /* Element: .custom-select__field */
}
.custom-select__label {
  font-weight: bold;
  font-size: 1rem;
  white-space: nowrap;
}
.custom-select__wrapper {
  position: relative;
  flex-grow: 1;
}
.custom-select__field {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 8px 30px 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  font-size: 1rem;
  cursor: pointer;
}
.custom-select__field:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}
.custom-select__wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  pointer-events: none;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #555;
  transition: transform 0.2s ease;
}/*# sourceMappingURL=style.css.map */