@font-face {
  font-family: "Lato";
  src: url("../../fonts/Lato-Regular.eot");
  src: local("Lato Regular"), local("Lato-Regular"), url("../../fonts/Lato-Regular.eot?#iefix") format("embedded-opentype"), url("../../fonts/Lato-Regular.woff2") format("woff2"), url("../../fonts/Lato-Regular.woff") format("woff"), url("../../fonts/Lato-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  src: url("../../fonts/Lato-Bold.eot");
  src: local("Lato Bold"), local("Lato-Bold"), url("../../fonts/Lato-Bold.eot?#iefix") format("embedded-opentype"), url("../../fonts/Lato-Bold.woff2") format("woff2"), url("../../fonts/Lato-Bold.woff") format("woff"), url("../../fonts/Lato-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../../fonts/Inter-Regular.eot");
  src: local("Inter Regular"), local("Inter-Regular"), url("../../fonts/Inter-Regular.eot?#iefix") format("embedded-opentype"), url("../../fonts/Inter-Regular.woff2") format("woff2"), url("../../fonts/Inter-Regular.woff") format("woff"), url("../../fonts/Inter-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.text {
  font-size: 16px;
  line-height: 150%;
}

.text--small {
  font-size: 14px;
  line-height: 20px;
}

.text--blue {
  color: #0D4CD3;
}

.text--gray {
  color: #66727F;
}

.text--green {
  color: #2aa000;
}

.text--red {
  color: #E11432;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  border: none;
  background: transparent;
  outline: none;
}

body {
  font-family: "Lato";
  font-weight: normal;
  background-color: #E3ECFC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  min-height: 100vh;
}

a {
  color: inherit;
}

span {
  font: inherit;
  color: inherit;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.container {
  max-width: 932px;
  padding: 0px 16px;
  margin: 0 auto;
  width: 100%;
  display: inherit;
  -webkit-box-pack: inherit;
  -ms-flex-pack: inherit;
  justify-content: inherit;
  -webkit-box-align: inherit;
  -ms-flex-align: inherit;
  align-items: inherit;
  -webkit-box-orient: inherit;
  -webkit-box-direction: inherit;
  -ms-flex-direction: inherit;
  flex-direction: inherit;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.block {
  padding: 24px 32px;
  background: white;
  border-radius: 12px;
  -webkit-box-shadow: 0px 24px 48px 0px rgba(230, 235, 245, 0.4), 0px 1px 4px 0px #E3EBFC;
  box-shadow: 0px 24px 48px 0px rgba(230, 235, 245, 0.4), 0px 1px 4px 0px #E3EBFC;
}
.block-auth .text{
  display: flex;
  justify-content: center;
  align-items: center;
}
.block-auth .auth-icon{
  margin-right: 10px;
  margin-left: 10px;
}
.block-auth .logout{
  line-height: 11px;
}
.block--small {
  padding: 24px;
}

.block--document {
  padding: 48px 32px 16px;
}

.block--document img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.section {
  margin-top: 24px;
}

.back {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.input {
  gap: 4px;
  position: relative;
  padding-top: 24px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.input__input {
  padding: 12px 14px;
  border-radius: 4px;
  background: #F5F7FA;
  position: relative;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  border: 2px solid #F5F7FA;
  z-index: 1;
}

.input__input:focus {
  border: 2px solid #99B1E6;
}

.input__error {
  position: absolute;
  opacity: 0;
  top: 24px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  pointer-events: none;
}

.input__label {
  position: absolute;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  top: 0;
}

.input--error {
  padding-top: 48px;
}

.input--error .input__input {
  background: #FCE0E4;
  border: 2px solid #FCE0E4;
}

.input--error .input__input:focus {
  border: 2px solid #EE3F58;
}

.input--error .input__error {
  opacity: 1;
  top: 24px;
}

.checkbox {
  position: relative;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 1;
}

.checkbox__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
}

.checkbox__error {
  position: absolute;
  opacity: 0;
  top: 0;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  pointer-events: none;
  z-index: -1;
}

.checkbox__box {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 2px solid #0D4CD3;
  background: white;
  border-radius: 4px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.checkbox__box svg {
  width: 14px;
  height: 14px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6);
  opacity: 0;
}

.checkbox .text {
  max-width: 358px;
  width: 100%;
  background: white;
}

.checkbox .text:last-child {
  padding-left: 12px;
}

.checkbox .text a {
  text-decoration: underline;
  text-underline-position: under;
}

.checkbox__input:checked + .checkbox__box svg {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.checkbox--error {
  padding-top: 24px;
}

.checkbox--error .checkbox__box {
  border-color: #EE3F58;
  background-color: #FCE0E4;
}

.checkbox--error .checkbox__error {
  opacity: 1;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 175px;
  width: 100%;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  background-color: #0D4CD3;
  border-radius: 8px;
  padding: 14px 40px;
  cursor: pointer;
  font-family: inherit;
  font-weight: inherit;
}

.button--big {
  max-width: 288px;
}
.button--red{
  background-color: #EE2F53;
}
.button--outline {
  background: transparent;
  color: #0D4CD3;
  border: 1px solid #0D4CD3;
  padding: 13px 39px;
}
.button--disabled{
  background: #E5EAF5;
  color: #86909C;
}
.button--link{
  background-color: transparent;
  border: none;
  color: #0D4CD3;
  text-decoration: underline;
  max-width: 110px;
}

.document {
  border-radius: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.document:first-child {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.document:not(.document:first-child) {
  border-top: 1px solid #E1E1E1;
}

.document:last-child {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.document .button {
  margin-left: auto;
}

.document__left {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.document__info {
  gap: 4px;
}
.document__info .text{
  word-break: break-word;
}

.document--wait svg path {
  fill: #F79900;
}
.coins-icon{
  stroke: #F79900;
  fill: none;
}
.paid .coins-icon {
  stroke: rgb(45, 195, 106);
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 0px;
  background: white;
}

.header__number {
  font-size: 16px;
  line-height: 24px;
  color: #0d4cd3;
}

.footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 24px 0;
  background: #EFF5F9;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 70px;
}

.footer__text {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.footer__row {
  margin-top: 8px;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.info {
  gap: 8px;
}

.about {
  gap: 16px 28px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.faq-list {
  max-width: calc(50% - 14px);
  width: 100%;
}

.faq {
  cursor: pointer;
}

.faq svg {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
}

.faq:not(:first-child) {
  margin-top: 16px;
}

.faq__header {
  gap: 8px;
}

.faq__container {
  padding-left: 32px;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  height: 100%;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}

.faq--active .faq__container {
  max-height: 500px;
  padding-top: 8px;
}

.faq--active svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.video {
  gap: 32px;
  max-width: calc(50% - 14px);
  width: 100%;
}

.video iframe {
  max-width: 100%;
  max-height: 198px;
  height: 198px;
  width: 100%;
}

.warn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  background-color: #F79900;
  position: relative;
  padding-top: 27px;
  padding-bottom: 27px;
  z-index: 1;
}

.warn-sm{
  padding: 11px 22px;
  z-index: 0;
}

.warn svg:first-child {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
}

.warn__text {
  font-size: 24px;
  color: #fff;
  line-height: 32px;
}
.warn-sm .warn__text {
  font-size: 16px;
}

.warn-sm .warn__text a{
  text-decoration: underline;
}

.warn__decor {
  position: absolute;
  z-index: -1;
}

.warn__decor--1 {
  bottom: 0;
  right: 60px;
}

.warn__decor--2 {
  top: 0;
  right: 20px;
}

.warn__decor path {
  fill: #F8A826;
}

input[readonly]:focus {
  border-color: #F5F7FA;
}
.loader{
  animation: loading 1.5s linear infinite;
}
.loader-center{
  margin: 0 auto;
  display: block;
}
@keyframes loading{
  to{ transform: rotate(360deg); }
}
.cancel-doc path{
  fill: red;
}
.no-btn {
  margin-left: auto;
}

.request-container{
  max-width: 488px;
  margin: 0 auto;
}
.request-form{
  margin-top: 22px;
}
.request-form .input__input,
.request-form .input__input:focus{
  font-family: "Lato";
  border-color: #99B1E6;
}
.request-form .input__input.error{
  border-color: red;
}

.request-form .file-input-wrapper {
    position: relative;
    border: 2px dashed #0D4CD3;
    border-radius: 4px;
    padding: 12px;
    background: #f9f9f9;
    cursor: pointer;
    min-height: 44px;
}

.request-form .file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}

.request-form .file-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.request-form .file-placeholder {
    color: #0D4CD3;
    font-size: 18px;
    text-align: center;
}

.request-form .field-required {
    color: #ff0000;
}

.request-form .files-selected {
    display: none;
    width: 100%;
}

.request-form .file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 8px;
}

.request-form .file-item .file-name {
    font-size: 14px;
    color: #333;
    flex-grow: 1;
}

.request-form .file-item .file-remove {
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    line-height: 1;
    margin-left: 10px;
    z-index: 2;
}

.request-form .file-item .file-remove:hover {
    color: #ff4444;
}

.request-form .file-selected {
    display: none;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 8px 12px;
    width: 100%;
}

.request-form .file-selected .file-name {
    font-size: 14px;
    color: #0D4CD3;
    flex-grow: 1;
}

.request-form .file-selected .file-remove {
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    line-height: 1;
    margin-left: 10px;
    z-index: 2;
}

.request-form .file-selected .file-remove:hover {
    color: #ff4444;
}

.request-success{
  margin: 1.5rem auto;
  width: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
}
.request-success p.text{
  font-size: 1.2rem;
  font-weight: 700;
}
#client-info-form .modal__submit:disabled{
  background: #c4c4c4;
}

.request-form input::-webkit-datetime-edit-day-field:focus,
.request-form input::-webkit-datetime-edit-month-field:focus,
.request-form input::-webkit-datetime-edit-year-field:focus {
  color: black;
}

.flybtn-container {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: white;
  padding: 20px;
  box-shadow: 0px -2px 5px 0px #eee;
  display: none;
  transition: opacity 0.5s;
  opacity: 0;
}
.flybtn-container .button{
  margin: 0 auto;
}

.align-center {
  align-items:center;
}

.issuer-list__wrap{
  position: relative;
}
.issuer-list{
  position: absolute;
  left: 0;
  top: 80px;
  z-index: 3;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  background: white;
  padding: .5rem 1rem;
  border-radius: 12px;
  -webkit-box-shadow: 0px 24px 48px 0px rgba(230, 235, 245, 0.4), 0px 1px 4px 0px #E3EBFC;
  box-shadow: 0px 24px 48px 0px rgba(230, 235, 245, 0.4), 0px 1px 4px 0px #E3EBFC;
  transition: .3s ease;
}
.issuer-list.active{
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.issuer-list li{
  cursor: pointer;
  margin-bottom: .5rem;
}
.issuer-list li:hover{
  text-decoration: underline;
}

.phone-input-container {
  flex-direction: row !important;
  gap: 8px !important;
}

@media screen and (max-width: 768px) {
  .section {
    margin-top: 16px;
  }

  .header__logo {
    width: 111px;
  }

  .header__logo svg {
    width: 100%;
  }

  .header__number {
    font-size: 14px;
    line-height: 20px;
  }

  .about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .video,
  .faq-list {
    max-width: 100%;
    width: 100%;
  }

  .video {
    padding-left: 20px;
    padding-right: 20px;
  }

  .warn {
    padding-left: 24px;
    padding-right: 24px;
  }

  .warn__decor {
    display: none;
  }

  .phone-input-container {
    flex-direction: column !important;
    gap: 16px !important;
  }

  .phone-input-container .country-select {
    max-width: none !important;
    width: 100% !important;
  }

  .phone-input-container .input__input {
    width: 100% !important;
  }
}

@media screen and (max-width: 649px) {
  .document .button {
    margin: 8px auto 0;
  }
}

@media screen and (max-width: 500px) {
  .block--document {
    padding: 16px 0;
  }
  .modal__wrapper--active .modal{
    top: 0;
    bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
    border-radius: 0;
  }

  .request-success{
    flex-direction: column;
    margin: 2rem auto;
    justify-content: center;
    padding: 4rem;
  }
  .request-success p.text{
    text-align: center;
    width: 10rem;
  }
}
.help-block .help-block-error{
  color: #E11432;
}