@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Montserrat:wght@400;600&family=Mulish:wght@400;700&display=swap");
/*-start reset-*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

a {
  text-decoration: none !important;
}

a:focus, button:focus, input:focus, textarea:focus {
  outline: none;
  box-shadow: none;
  text-decoration: none !important;
}

a:hover {
  text-decoration: none !important;
  transition: all 0.2s;
}

div:focus {
  outline: none;
}

.btn.focus, .btn:focus {
  outline: 0;
  box-shadow: none;
}

html {
  height: 100%;
}

body {
  font-family: "Inter", "Arial", sans-serif !important;
  font-weight: normal;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  min-width: 320px;
  min-height: 550px;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
}

.content {
  flex: 1;
}

.btn {
  cursor: pointer;
  position: relative;
  background: #A31014;
  border-radius: 14px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  font-family: "Montserrat", "Arial", sans-serif !important;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  border: 2px solid #A31014;
  color: #FFFFFF;
  transition: all 0.2s ease-in-out;
}
.btn.outline {
  background: rgba(196, 196, 196, 0.4);
  border: 2px solid #A31014;
  color: #A31014;
  transition: all 0.2s ease-in-out;
}
.btn.outline svg {
  margin-right: 12px;
}
.btn.outline:hover {
  box-shadow: 0 0 4px rgba(155, 16, 20, 0.4);
  border: 2px solid #202020;
  color: #202020;
  background: rgba(196, 196, 196, 0.4);
  transition: all 0.2s ease-in-out;
}
.btn.outline:hover svg path {
  stroke: #202020;
}
.btn.outline:focus {
  box-shadow: 0px 0px 4px rgba(155, 16, 20, 0.4);
  border: 2px solid #580003;
  color: #580003;
  background: rgba(196, 196, 196, 0.4);
  transition: all 0.2s ease-in-out;
}
.btn:hover {
  border: 2px solid #580003;
  background: #580003;
  transition: all 0.2s ease-in-out;
}
.btn:focus {
  background: #750E10;
  border: 2px solid #750E10;
  transition: all 0.2s ease-in-out;
}

.container {
  width: 100%;
  max-width: 1440px !important;
}

label {
  position: relative;
}

.hide-input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

canvas {
  height: 0;
  width: 0;
}

/*checkbox*/
.checkbox-form {
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: -0.01em;
  color: #A31014;
  position: relative;
}

.checkbox-form.fluid {
  width: 100%;
}

.checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.checkbox-wrap {
  margin-top: 0;
}

.checkbox__form .checkbox {
  display: none;
}

.checkbox__form .checkbox__label {
  cursor: pointer;
  background: #FFFFFF;
  border: 2px solid #A31014;
  box-sizing: border-box;
  border-radius: 4px;
  position: relative;
  width: 21px;
  height: 21px;
  display: block;
}

.checkbox__form {
  margin-right: 10px;
}

.checkbox__label::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 4px;
  position: absolute;
  left: -1px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  background: url("../images/icons/exclude.svg") no-repeat center;
  background-color: #ffffff;
  background-size: cover;
  transition: all 0.2s;
}

.checkbox__form input[type=checkbox]:checked + .checkbox__label {
  opacity: 1;
  transition: all 0.2s;
}

.checkbox__form input[type=checkbox]:checked + .checkbox__label::before {
  opacity: 1;
  transition: all 0.2s;
}

.checkbox-text {
  font-family: "Mulish", "Arial", sans-serif !important;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: #202020;
}

.checkbox-text .simple-link {
  display: inline;
  cursor: pointer;
  color: #A31014;
}

/*checkbox end*/
/*-end-*/
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: 0 auto;
  padding: 12px;
}
.header__link {
  display: block;
  color: #000000;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  width: 33.33%;
  transition: all 0.2s ease-in-out;
}
.header__link:hover {
  color: #A31014;
  transition: all 0.2s ease-in-out;
}
.header__link.back {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
.header__link.back svg {
  margin-right: 12px;
  height: 14px;
}
.header__link.back:hover svg path {
  fill: #A31014;
  transition: all 0.2s ease-in-out;
}
.header__link.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}
.header__link.logo-link img {
  width: auto;
  height: 100%;
}
.header__link.menu {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

.main {
  height: 100%;
  width: 100%;
}
.main .container {
  padding: 90px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main__wrp {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main__title {
  max-width: 550px;
  font-weight: 700;
  font-size: 34px;
  line-height: 39px;
  text-align: center;
  color: #A31014;
  margin: 0 auto 32px;
}
.main__link-start {
  display: block;
  width: 240px;
  height: auto;
}
.main__link-start img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.main__comment {
  margin-top: 16px;
  color: #B1B1B1;
  font-weight: 500;
  font-size: 14px;
  line-height: 104%;
  text-align: center;
}

.pin__comment {
  margin-top: -16px;
  color: #B1B1B1;
  font-weight: 500;
  font-size: 14px;
  line-height: 104%;
}
.pin__form {
  margin-top: 32px;
  width: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pin__form .btn {
  margin-top: 32px;
  width: 150px;
}
.pin__form-wrp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 99px;
}
.pin__pin-code-fields {
  text-align: center;
  padding: 10px 0;
  margin: 8px 0 16px;
  display: flex;
  flex-wrap: nowrap;
  border-bottom: 2px solid #ededed;
}
.pin__pin-code-input {
  display: inline-block;
  width: 60px;
  height: 48px;
  text-align: center;
  border: 1px solid #E2E2E2;
  color: #202020;
  padding: 14px 20px;
  margin: 0 8px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 28px;
  line-height: 140%;
  letter-spacing: 0.3px;
  outline: none;
  background-color: #F9F9F9;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  transition: all 0.2s ease-in-out;
}
.pin__pin-code-input::-webkit-outer-spin-button, .pin__pin-code-input::-webkit-inner-spin-button {
  display: none;
}
.pin__pin-code-input:focus {
  border: 2px solid #750E10;
  transition: all 0.2s ease-in-out;
}
.pin__pin-code-input.error {
  border: 2px solid #D93535;
  transition: all 0.2s ease-in-out;
}

.operations__form {
  min-height: 30vh;
  margin-top: 32px;
  width: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.operations__item {
  background: #FFFFFF;
  box-shadow: 0 2px 16px 2px rgba(27, 27, 27, 0.1);
  border-radius: 18px;
  margin-bottom: 32px;
  padding: 24px;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 2px solid #ffffff;
  transition: all 0.2s ease-in-out;
}
.operations__item:hover {
  border: 2px solid #A31014;
  transition: all 0.2s ease-in-out;
}
.operations__card-title {
  font-family: "Mulish", "Arial", sans-serif !important;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #00799C;
  margin-bottom: 12px;
}
.operations__comment {
  font-family: "Mulish", "Arial", sans-serif !important;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 104%;
  color: #B1B1B1;
  margin-bottom: 0;
}

.form__body {
  width: 100%;
  flex: 1;
}
.form__footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}
.form__next-link {
  font-family: "Montserrat", "Arial", sans-serif !important;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: #A31014;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.form__next-link svg {
  margin-left: 16px;
  height: 14px;
}
.form__next-link:hover {
  color: #580003;
  transition: all 0.2s ease-in-out;
}
.form__next-link:hover svg path {
  fill: #580003;
  transition: all 0.2s ease-in-out;
}
.form__steps-info {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Montserrat", "Arial", sans-serif !important;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: #B1B1B1;
}
.form__steps-wrp {
  margin-left: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.form__step {
  padding: 0 2px;
}
.form__step.current {
  color: #A31014;
}
.form.personal {
  margin-top: 16px;
}

.personal .main__comment {
  margin-top: -16px;
}
.personal__btn-start {
  cursor: pointer;
  width: auto;
  display: inline-flex;
  margin: 0 auto;
}
.personal__body-wrp {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.personal .form__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.file-viewer {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin: 32px auto 0;
}
.file-viewer canvas.fill {
  height: auto;
  max-height: 320px;
  min-height: 200px;
  max-width: 100%;
  width: auto;
  border-radius: 8px;
  overflow: hidden;
}
.file-viewer__file-info {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  background: rgba(196, 196, 196, 0.7);
  border: 1px solid #E2E2E2;
  border-radius: 8px;
}
.file-viewer__file-info.show {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
}
.file-viewer__file-name {
  font-family: "Inter", "Arial", sans-serif !important;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 104%;
  text-align: center;
  letter-spacing: 0.01em;
  color: #A31014;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.file-viewer__file-name svg {
  display: inline-block;
  width: 32px;
  height: auto;
  margin-bottom: 12px;
}
.file-viewer__remove {
  display: block;
  position: absolute;
  bottom: 13px;
  right: 13px;
  cursor: pointer;
}
.file-viewer__remove svg {
  width: 20px;
  height: auto;
}
.file-viewer__remove svg path {
  fill: #00799C;
}
.file-viewer__remove:hover svg path {
  fill: #A31014;
}

.options__form {
  min-height: 30vh;
  margin-top: 32px;
  width: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.options__item {
  margin-bottom: 14px;
}

.preview {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.preview__form {
  min-height: 30vh;
  margin-top: 0;
  width: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.preview__form .form__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.preview__body-wrp .personal__btn-start {
  margin: 32px auto 0;
}

@media (max-width: 1440px) {
  .container {
    width: 100%;
    max-width: 991px !important;
  }
}
@media (max-width: 991px) {
  .container {
    width: 100%;
    max-width: 576px !important;
  }
}
@media (max-width: 768px) {
  .main__title {
    max-width: 425px;
    font-size: 24px;
    line-height: 29px;
  }
  .pin__pin-code-input {
    display: inline-block;
    width: 48px;
    height: 38px;
  }
  .operations__form {
    min-height: 30vh;
    margin-top: 32px;
    width: 80%;
  }
  .pin__form {
    margin-top: 32px;
    width: 80%;
  }
  .options__form {
    min-height: 30vh;
    margin-top: 32px;
    width: 80%;
  }
  .preview__form {
    min-height: 30vh;
    margin-top: 0;
    width: 80%;
  }
  .main .container {
    padding: 90px 0 45px;
  }
  .file-viewer.preview {
    margin: 0 auto;
  }
  .main__wrp {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .file-viewer canvas.fill {
    height: auto;
    max-height: 320px;
    min-height: 200px;
    width: auto;
    border-radius: 8px;
    overflow: hidden;
  }
}
@media (max-width: 425px) {
  .header__link {
    font-size: 14px;
    line-height: 19px;
  }
  .main__title {
    max-width: 320px;
    font-size: 18px;
    line-height: 24px;
  }
  .pin__pin-code-input {
    display: inline-block;
    width: 40px;
    height: 30px;
    padding: 10px;
    margin: 0 5px;
    font-size: 22px;
    line-height: 140%;
  }
  .operations__form {
    min-height: 30vh;
    margin-top: 32px;
    width: 80%;
  }
  .main .container {
    padding: 90px 0 45px;
  }
  .options__form {
    min-height: 30vh;
    margin-top: 32px;
    width: 80%;
  }
  .preview__form {
    min-height: 30vh;
    margin-top: 0;
    width: 80%;
  }
  .file-viewer.preview {
    margin: 0 auto;
  }
  .main__wrp {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .file-viewer canvas.fill {
    height: auto;
    max-height: 320px;
    min-height: 200px;
    width: auto;
    border-radius: 8px;
    overflow: hidden;
  }
  .operations__form {
    min-height: 30vh;
    margin-top: 16px;
    width: 95%;
  }
  .pin__form {
    margin-top: 16px;
    width: 95%;
  }
  .options__form {
    min-height: 30vh;
    margin-top: 16px;
    width: 95%;
  }
  .preview__form {
    min-height: 30vh;
    margin-top: 0;
    width: 95%;
  }
  .operations__card-title {
    font-size: 20px;
    line-height: 25px;
  }
  .operations__item {
    margin-bottom: 16px;
    padding: 16px;
  }
  .file-viewer {
    margin: 16px auto 0;
  }
  .checkbox-text {
    font-size: 14px;
    line-height: 20px;
  }
}

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