html {
  font-size: 12px;
  line-height: 12px;
}

body {
  font-family: Lato, Raleway, Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  color: #000;
  text-rendering: optimizelegibility;
}

.header__logo {
  font-family: Raleway, Lato, Arial, sans-serif;
}

ul,
ol,
a,
h1,
.h1,
h2,
.h2,
h3,
.h3,
p {
  font-family: Lato, Raleway, Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.3rem;
}

@media (width >= 768px) {
  html {
    font-size: 14px;
    line-height: 14px;
  }
  ul,
  ol,
  a,
  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  p {
    font-size: 1rem;
    line-height: 1.1rem;
  }
}
@media (width >= 1024px) {
  html {
    font-size: 16px;
    line-height: 1rem;
  }
}
@media (width >= 2100px) {
  html {
    font-size: clamp(16px, 16px + 20 * (100vw - 2100px) / 1920, 32px);
    line-height: 1rem;
  }
}
* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  border: none;
  font: inherit;
  background: none;
}

html,
body {
  overscroll-behavior-x: none;
}

html {
  scroll-behavior: smooth;
}

body.page {
  margin: 0;
  color: #fff;
  background-color: #272733;
}

main {
  position: relative;
  overflow: hidden;
  display: block;
  background-color: #272733;
}

.order {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 3.5rem;
  padding-bottom: 3.4rem;
  text-align: center;
  background-image: url("../img/background.webp");
  background-repeat: no-repeat;
  background-position: center 10%;
  background-size: 1050%;
}
@media (min-width: 425px) {
  .order {
    background-size: 750%;
  }
}
@media (min-width: 768px) {
  .order {
    background-size: 450%;
  }
}
@media (min-width: 1024px) {
  .order {
    padding-bottom: 5.4rem;
    background-size: 400%;
  }
}
@media (min-width: 1200px) {
  .order {
    background-size: 350%;
  }
}
@media (min-width: 1815px) {
  .order {
    padding-top: 7.5rem;
    padding-bottom: 9.4rem;
    background-size: cover;
  }
}
.order__title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 2.6875rem;
  text-transform: uppercase;
}
.order__title_accent {
  color: #3e9cdc;
}
.order__subtitle {
  margin-top: 1.875rem;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  display: block;
  background: rgba(16, 16, 29, 0.9);
}
.header__burger-menu {
  cursor: pointer;
  position: relative;
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  background-image: url("../img/icon-burger-menu.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (min-width: 768px) {
  .header__burger-menu {
    display: none;
  }
}
.header__burger-overlay {
  pointer-events: none;
  position: fixed;
  z-index: 120;
  inset: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .header__burger-overlay {
    display: none;
  }
}
.header__burger-overlay.active {
  pointer-events: all;
  opacity: 1;
}
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6.25rem;
  padding: 0 2rem;
}
@media (min-width: 1024px) {
  .header__inner {
    justify-content: space-evenly;
    padding: 0;
  }
}
@media (min-width: 1815px) {
  .header__inner {
    justify-content: space-between;
    padding: 0 23.4rem;
  }
}
.header__logo {
  position: relative;
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 2rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}
.header__logo_accent {
  color: #42a9ed;
}

.nav {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  transform: translateX(100%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(80vw, 20rem);
  height: 100vh;
  background: rgba(16, 16, 29, 0.97);
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .nav {
    position: static;
    transform: none;
    display: block;
    width: auto;
    height: auto;
    background: transparent;
  }
}
.nav_open {
  transform: translateX(0);
}
.nav__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  list-style: none;
}
@media (min-width: 768px) {
  .nav__list {
    flex-direction: row;
    gap: clamp(1rem, 3vw, 3.75rem);
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
  }
}
.nav__item {
  flex-shrink: 0;
  transition: color 0.3s, transform 0.3s;
}
.nav__item:active {
  transform: scale(1.1);
  color: #3e9cdc;
}
.nav__item:focus-visible {
  border-radius: 2rem;
  outline: 0.1875rem solid #3e9cdc;
  outline-offset: 0.125rem;
}
.nav__link {
  color: #fff;
  text-decoration: none;
}
.nav__link:visited {
  color: #fff;
}
.nav__link:hover {
  color: #43abf0;
}
.nav__link:active {
  color: #3892cd;
}

.footer {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-flow: column wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  min-height: min(5rem, 80px);
  padding: 0;
  color: #fff;
  background-color: #3d4050;
}
@media (min-width: 768px) {
  .footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    padding-top: 1rem;
  }
}
@media (min-width: 1815px) {
  .footer {
    flex-direction: row;
    padding: 0;
  }
}
@media (min-width: 1815px) {
  .footer {
    padding: 0 clamp(1rem, 16vw, 23.5rem);
  }
}
.footer__copyright {
  order: 10;
  margin-bottom: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__copyright {
    width: 100%;
  }
}
@media (min-width: 1815px) {
  .footer__copyright {
    order: 1;
    width: auto;
    margin-bottom: 0;
  }
}
.footer .first-divider {
  flex: 0 0 1px;
  align-self: center;
  order: 9;
  width: 95vw;
  height: 1px;
  opacity: 1;
  background-color: #fff;
}
@media (min-width: 768px) {
  .footer .first-divider {
    flex: 0 0 100%;
  }
}
@media (min-width: 1815px) {
  .footer .first-divider {
    flex: 0 0 1px;
    order: 2;
    width: 1px;
    height: 1.1rem;
  }
}
.footer .second-divider {
  flex: 0 0 1px;
  align-self: center;
  width: 95vw;
  height: 1px;
  opacity: 1;
  background-color: #fff;
}
@media (min-width: 768px) {
  .footer .second-divider {
    width: 1px;
    height: 2.1rem;
  }
}
@media (min-width: 1815px) {
  .footer .second-divider {
    order: 4;
    width: 1px;
    height: 1.1rem;
  }
}
.footer__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem clamp(0.5rem, 3vw, 2.5rem);
  align-items: center;
  justify-content: space-evenly;
  min-width: 320px;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .footer__payments {
    margin-top: 0;
  }
}
@media (min-width: 1815px) {
  .footer__payments {
    order: 3;
    margin-top: 0;
  }
}
.footer__payment {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__payment_icon {
  pointer-events: none;
  user-select: none;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.5rem;
  object-fit: contain;
}
.footer__payment_text {
  white-space: nowrap;
}
.footer__contacts {
  display: flex;
  column-gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: center;
  justify-content: space-evenly;
  min-width: 260px;
}
@media (min-width: 1815px) {
  .footer__contacts {
    order: 5;
  }
}
.footer__link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.footer__link:visited {
  color: #fff;
}
.footer__link:hover, .footer__link:active {
  color: #42a9ed;
}
.footer__link-icon {
  flex: 0 0 1.1rem;
  width: 1.1rem;
  height: 1.1rem;
  margin-right: 0.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.footer__link-icon_mail {
  background-image: url("../img/icon-mail-blue.webp");
}
.footer__link-icon_vk {
  background-image: url("../img/icon-vk.webp");
}

a[href^=mailto] {
  color: #fff !important;
  text-decoration: none !important;
}
a[href^=mailto]:visited {
  color: #fff !important;
}
a[href^=mailto]:hover, a[href^=mailto]:active {
  color: #42a9ed !important;
}

.hero {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 6.25rem;
  background-image: url("../img/hero-photo.webp");
  background-repeat: no-repeat;
  background-position: -30px 0;
  background-size: 480%;
}
@media (min-width: 480px) {
  .hero {
    background-position: -100px 0;
    background-size: 200%;
  }
}
@media (min-width: 768px) {
  .hero {
    background-position: -100px 0;
    background-size: 170%;
  }
}
@media (min-width: 1024px) {
  .hero {
    background-position: 0 0;
    background-size: 150%;
  }
}
@media (min-width: 1200px) {
  .hero {
    background-position: 0 0;
    background-size: 130%;
  }
}
@media (min-width: 1815px) {
  .hero {
    padding-bottom: 12.5rem;
    padding-left: 23.4rem;
    background-position: top center;
    background-size: cover;
  }
}
.hero__title {
  position: relative;
  display: block;
  max-width: 48rem;
  margin-top: 3rem;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  font-size: 2rem;
  line-height: 2.625rem;
  color: #000;
  text-transform: uppercase;
}
@media (min-width: 425px) {
  .hero__title {
    max-width: 32rem;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .hero__title {
    max-width: 52rem;
    margin-top: 3.4rem;
    margin-left: clamp(3rem, 5.5vw, 5rem);
    font-size: 3rem;
    line-height: 3.625rem;
    text-align: left;
  }
}
@media (min-width: 1815px) {
  .hero__title {
    margin-top: 6.4rem;
    margin-left: 0;
    font-size: 3rem;
    line-height: 3.625rem;
  }
}
.hero__title_accent {
  color: #3e9cdc;
}
.hero__perks {
  position: relative;
  display: block;
}
@media (min-width: 425px) {
  .hero__perks {
    width: max-content;
    margin: auto;
  }
}
@media (min-width: 1200px) {
  .hero__perks {
    margin-left: clamp(3rem, 5.5vw, 5rem);
  }
}
@media (min-width: 1815px) {
  .hero__perks {
    margin-left: 0;
  }
}
.hero__text {
  position: relative;
  display: block;
  margin-top: 3rem;
  margin-left: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5rem;
  color: #000;
}
@media (min-width: 1815px) {
  .hero__text {
    margin-top: 5rem;
  }
}
.hero__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  margin-top: 0.625rem;
  margin-left: 0.5rem;
}
.hero__list .list__item {
  position: relative;
  display: block;
  padding-left: 1.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5rem;
  color: #000;
}
.hero__list .list__item::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0.5rem;
}
.hero__actions {
  position: relative;
  display: block;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 5rem;
}
@media (min-width: 1200px) {
  .hero__actions {
    margin-left: 4rem;
  }
}
@media (min-width: 1815px) {
  .hero__actions {
    flex-direction: row;
    gap: 1.875rem;
    margin-left: 0;
  }
}

.button {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 90vw;
  margin-right: auto;
  margin-left: auto;
  padding: 0.9375rem 0.625rem;
  border-radius: 0.25rem;
}
@media (min-width: 425px) {
  .button {
    width: 100%;
    min-width: 50%;
    max-width: 30rem;
  }
}
@media (min-width: 1200px) {
  .button {
    width: 100%;
    min-width: 0;
    max-width: 34rem;
    margin-top: 0;
    margin-right: 0;
    margin-left: clamp(2rem, 3.3vw, 5rem);
  }
}
@media (min-width: 1815px) {
  .button {
    min-width: 7.7rem;
    max-width: 11.56rem;
    margin-bottom: 4rem;
    margin-left: 0;
  }
}
.button_primary {
  border: 1px solid #fff;
  color: #fff;
  background-color: #3e9cdc;
  transition: background-color 0.2s ease;
}
.button_primary:hover {
  background-color: #4ae;
}
.button_primary:active {
  background-color: #3990ca;
}
.button_secondary {
  margin-top: 0.5rem;
  margin-bottom: 4rem;
  border: 1px solid #6f6d7b;
  color: #2a2b30;
  background-color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 1815px) {
  .button_secondary {
    margin-top: 0;
  }
}
.button_secondary:hover {
  background-color: #fff;
}
.button_secondary:active {
  background-color: #eaeaea;
}

.order-form__file-button {
  cursor: pointer;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  background-color: transparent;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.order-form__field_file:focus-within .order-form__file-button {
  box-shadow: 0 0 0 3px #42a9ed;
}

#submit_button {
  position: relative;
  display: block;
  width: 100%;
  min-width: fit-content;
}

.steps {
  position: relative;
  display: block;
  margin-top: 3rem;
}
.steps__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 8.625rem);
  align-items: center;
  justify-content: flex-start;
  width: max-content;
  margin-inline: auto;
}
@media (min-width: 480px) {
  .steps__list {
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin-inline: auto;
  }
}
@media (min-width: 1200px) {
  .steps__list {
    flex-direction: row;
    align-items: flex-start;
    width: max-content;
    margin-top: 5rem;
  }
}
@media (min-width: 1200px) {
  .steps__list::before {
    pointer-events: none;
    content: "";
    position: absolute;
    z-index: 0;
    top: 3.125rem;
    right: 4.625rem;
    left: 4.625rem;
    height: 0.4rem;
    background-image: radial-gradient(circle, #cfcfcf 0.2rem, transparent 0.2rem);
    background-repeat: repeat-x;
    background-position: center;
    background-size: 1.3rem 0.4rem;
  }
}
.steps__item {
  position: relative;
  z-index: 1;
  display: block;
  min-width: 7rem;
  max-width: 11.8rem;
}
.steps__visual {
  pointer-events: none;
  user-select: none;
  position: relative;
  display: block;
}
.steps__circle {
  position: relative;
  display: block;
  width: 6.25rem;
  height: 6.25rem;
  margin: auto;
}
.steps__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 2.625rem;
  height: 2.625rem;
}
.steps__text {
  position: relative;
  display: block;
  margin-top: 1.25rem;
}

.order-form {
  width: 100%;
  margin-top: 3rem;
  padding: 0 0.5rem;
}
@media (min-width: 1024px) {
  .order-form {
    padding: 0 3rem;
  }
}
.order-form__row {
  display: flex;
  flex-flow: column wrap;
  gap: 1.8rem;
  place-content: center;
  justify-content: center;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .order-form__row {
    flex-direction: row;
    margin-top: 3rem;
    padding: 0;
  }
}
.order-form__row > * {
  width: 100%;
  max-width: 40rem;
}
@media (min-width: 768px) {
  .order-form__row > * {
    flex: 0 0 calc((100% - 3.6rem) / 3);
    max-width: calc((100% - 3.6rem) / 3);
  }
}
.order-form__row_range {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  row-gap: 1.8rem;
  width: 100%;
}
@media (min-width: 768px) {
  .order-form__row_range {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 1.8rem;
  }
}
.order-form__field {
  position: relative;
  display: block;
}
.order-form__field_sys-type {
  position: relative;
}
.order-form__label {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.order-form__control {
  width: 100%;
  height: 3rem;
  padding: 0 0.7rem;
  border: none;
  border-radius: 0.18rem;
  font-size: 1.125rem;
  line-height: 1.2rem;
  color: #272733;
  background-color: rgba(255, 255, 255, 0.85);
  outline: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.order-form__control::placeholder {
  color: rgba(39, 39, 51, 0.7);
}
.order-form__control:hover {
  box-shadow: 0 0 0 1px #42a9ed;
}
.order-form__control:focus-visible {
  background-color: #fff;
  box-shadow: 0 0 0 3px #42a9ed;
}
.order-form__control_select {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-right: 2.6rem;
  text-align: left;
  appearance: none;
}
.order-form__control_arrow {
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%) rotate(0deg);
  display: block;
  width: 0.7rem;
  color: #3d4050;
  transition: transform 0.25s ease, color 0.25s ease;
}
.order-form__control_range {
  cursor: pointer;
  position: relative;
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: 0.5rem;
  padding: 0;
  border-radius: 0.2rem;
  appearance: none;
  background: #dcdcdc;
  background: transparent;
  box-shadow: none;
}
.order-form__control_range::-webkit-slider-runnable-track {
  height: 0.4rem;
  border-radius: 0.3rem;
  background-color: rgba(255, 255, 255, 0.7);
  transition: background-color 0.2s ease;
}
.order-form__control_range::-webkit-slider-runnable-track:hover {
  background-color: #fff;
}
.order-form__control_range::-moz-range-track {
  height: 0.4rem;
  border-radius: 0.3rem;
  background: #dcdcdc;
}
.order-form__control_range::-webkit-slider-thumb {
  cursor: pointer;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: -0.4rem;
  border: 3px solid #286690;
  border-radius: 50%;
  appearance: none;
  background: #42a9ed;
  transition: box-shadow 0.2s ease;
}
.order-form__control_range::-moz-range-thumb {
  cursor: pointer;
  width: 1.1rem;
  height: 1.1rem;
  border: 3px solid #286690;
  border-radius: 50%;
  background: #42a9ed;
  transition: box-shadow 0.2s ease;
}
.order-form__control_range:hover::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px rgba(66, 169, 237, 0.35);
}
.order-form__control_range:hover::-moz-range-thumb {
  box-shadow: 0 0 0 3px rgba(66, 169, 237, 0.35);
}
.order-form__control_file {
  display: none;
}
.order-form__select {
  position: relative;
  display: block;
}
.order-form__select-dropdown {
  position: absolute;
  z-index: 20;
  right: 0;
  left: 0;
  overflow: hidden;
  padding: 0;
  border-radius: 0.18rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.2rem;
  text-align: left;
  background-color: #272733;
  box-shadow: 0 0.7rem 1.8rem rgba(0, 0, 0, 0.6);
}
.order-form__select-header {
  display: none;
}
.order-form__select-list {
  scrollbar-color: #3e9cdc #3d4050;
  scrollbar-width: thin;
  overflow-y: auto;
  max-height: 10rem;
  margin: 0;
  padding: 0.125rem 0;
  list-style: none;
}
.order-form__select-list::-webkit-scrollbar {
  width: 0.5rem;
}
.order-form__select-list::-webkit-scrollbar-track {
  border-radius: 0.2rem;
  background: #3d4050;
}
.order-form__select-list::-webkit-scrollbar-thumb {
  border-radius: 2rem;
  background: #3e9cdc;
}
.order-form__select-option {
  cursor: pointer;
  padding: 0.44rem 1rem;
  font-size: 1.2rem;
  color: #fff;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.order-form__select-option:hover {
  color: #3e9cdc;
  background-color: transparent;
}
.order-form__select-option.is-selected {
  color: #3e9cdc;
}
.order-form__select_open .order-form__control_select {
  color: #fff;
  background-color: rgba(61, 64, 80, 0.85);
  box-shadow: 0 0 0 1px #3d4050;
}
.order-form__select_open .order-form__control_arrow {
  transform: translateY(-50%) rotate(180deg);
  color: #fff;
}
.order-form__range {
  position: relative;
  display: flex;
  grid-column: span 2;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.875rem;
  margin-bottom: 0.625rem;
}
@media (min-width: 1024px) {
  .order-form__range {
    margin-bottom: 0;
  }
}
.order-form__range-value {
  position: absolute;
  right: 0;
  bottom: -1.2rem;
  min-width: 2rem;
}
@media (min-width: 1024px) {
  .order-form__range-value {
    top: 0;
    right: 0;
  }
}
.order-form__range-label {
  align-self: start;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #fff;
}
.order-form__range-track {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.order-form__field_file {
  cursor: pointer;
  position: relative;
  display: block;
  width: 100%;
  max-width: 40rem;
  height: 3rem;
  margin-top: auto;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  border: 0.125rem solid #fff;
  border-radius: 0.185rem;
  line-height: 2.75rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.85);
  outline: none;
  transition: border 0.2s ease, background-color 0.2s ease;
}
.order-form__field_file:hover, .order-form__field_file:focus, .order-form__field_file:focus-visible, .order-form__field_file:focus-within {
  border: 0.125rem solid #3e9cdc;
  background-color: #fff;
}
.order-form__field_file:active {
  background-color: #eaeaea;
}
.order-form__file-icon {
  flex: 0 0 1.2rem;
  width: 1.1rem;
  height: 1.2rem;
  background: url("../img/icon-clipboard.webp") center/contain no-repeat;
}
.order-form .selected {
  background: url("../img/icon-check.webp") center/contain no-repeat;
}
.order-form__file-text {
  overflow: hidden;
  display: block;
  min-width: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 1815px) {
  .order-form {
    padding: 0 25rem;
  }
}

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