.application {
  color: #000;
  background: #f3f3f3;
  min-height: 100vh;
  position: relative;
}

* {
  cursor: initial;
}

.loader {
  display: block !important;
}

.footer a {
  cursor: pointer;
}

.footer a span {
  cursor: pointer;
}

.footer a img {
  cursor: pointer;
}

.application-front {
  position: relative;
  background: #fff;
}

.application-front__row {
  display: flex;
  align-items: center;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.application-front__side {
  flex: 1 1 50%;
  max-width: 50%;
}

.application-front__info {
  text-align: center;
}

.application-front__info h2 {
  font-size: 65px;
  line-height: 1.154em;
  font-weight: 800;
}

.application-front__info .app-btn {
  width: 210px;
  height: 55px;
  padding: 0;
}

.application-front__info .app-btn:after {
  position: relative;
  left: 0;
}

.application-front__info .app-btn:hover {
  padding-left: 30px;
}

.application-front__info .app-btn:hover:after {
  left: 30px;
  opacity: 0;
}

.application-front__info .app-btn_orange {
  background: #ecc4ad !important;
}

.application-front__info .app-btn_green {
  background: #59a8b0 !important;
}

.application-front::before {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: rgba(190, 190, 190, 0.15);
}

.application-front::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: url(/images/coins.png?6df753e88585dc4ce85c94f8c5613c90) center center no-repeat;
}

@media screen and (max-width: 1300px) {
  .application-front__info h2 {
    font-size: 45px;
  }
}

@media screen and (max-width: 992px) {
  .application-front {
    height: 100%;
    min-height: 880px;
  }

  .application-front__row {
    padding-top: 123px;
    flex-direction: column;
  }

  .application-front__side {
    flex: inherit;
    max-width: none;
  }

  .application-front__side:nth-of-type(1) {
    margin-bottom: 200px;
  }

  .application-front__side:nth-of-type(2) {
    padding-top: 32px;
  }

  .application-front:before {
    width: 100%;
    height: 50%;
  }

  .application-front:after {
    background-image: url(/images/app-coins-mobile.png?25d14d7d4326013f726d5ab38edd5420);
    background-position: 50% calc(50% - 20px);
  }
}

@media screen and (max-width: 650px) {
  .application-front__info h2 {
    font-size: 35px;
  }
}

.app-btn {
  background: rgba(89, 168, 176, 0.15);
  border: 0 none;
  color: #59a8b0;
  padding: 17px 40px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  margin: 40px auto 0 auto;
  display: inline-flex;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.app-btn img {
  width: 32px;
  margin-right: 10px;
}

.app-btn:after {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 20px;
  display: inline-block;
  margin-left: 10px;
  background: #59a8b0;
  transition: all 0.3s ease;
  opacity: 1;
}

.app-btn_green {
  background: #59a8b0;
  color: #fff;
}

.app-btn_green:after {
  background: #fff;
}

.app-btn_green:hover {
  background: #3f8991;
}

.app-btn_orange {
  background: #e7a895;
  color: #fff;
}

.app-btn_orange:after {
  background: #fff;
}

.app-btn_orange:hover {
  background: #d98f79;
}

.app-btn_grey {
  background: #e6e6e6;
  color: #000;
}

.app-btn_grey:after {
  background: #000;
}

.app-btn_grey:hover {
  background: #000;
  color: #fff;
}

.app-btn_grey:hover:after {
  background: #fff;
}

.app-btn_disabled {
  pointer-events: none;
  background: #e8e8e8;
  color: #8f8f8f;
}

.app-btn_white {
  background: #fff;
  color: #59a8b0;
}

.app-btn_empty {
  background: none;
}

.single-choice:not(:last-of-type) {
  margin-bottom: 30px;
}

.single-choice__heading {
  font-size: 35px;
  line-height: 45px;
  font-weight: 800;
  margin-bottom: 23px;
}

.single-choice__err {
  margin-top: -14px;
  margin-bottom: 20px;
  display: block;
  font-size: 17px;
  color: #e13f4e;
  font-weight: 700;
}

.single-choice__list {
  list-style-type: none;
}

.single-choice__item {
  font-size: 20px;
  line-height: 35px;
  color: rgba(0, 0, 0, 0.6);
  transition: 0.3s ease;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  margin-bottom: 10px;
  padding-left: 35px;
}

.single-choice__item:hover {
  color: black;
}

.single-choice__item:before {
  content: "";
  display: block;
  border-radius: 50%;
  background: #dcdcdc;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.single-choice__item_active {
  color: black;
  font-weight: 700;
}

.single-choice__item_active:before {
  background: #59a8b0 url(/images/check-icon.svg?bad33469d9b0b7299e95f4b86b4b92a6) center 8px/14px auto no-repeat;
}

@media screen and (max-width: 992px) {
  .single-choice__heading {
    font-size: 25px;
    line-height: 35px;
  }

  .single-choice__item {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 21px;
  }

  .single-choice_solo {
    padding: 0 15px;
    margin-top: 80px;
  }
}

.multiple-choice:not(:last-of-type) {
  margin-bottom: 12px;
}

.multiple-choice__heading {
  font-size: 35px;
  line-height: 45px;
  font-weight: 800;
  margin-bottom: 40px;
}

.multiple-choice__err {
  margin-top: -14px;
  margin-bottom: 20px;
  display: block;
  font-size: 17px;
  color: #e13f4e;
  font-weight: 700;
}

.multiple-choice__sub {
  font-size: 20px;
  margin-bottom: 22px;
}

.multiple-choice__list {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.multiple-choice__item {
  background: rgba(230, 230, 230, 0.45);
  font-size: 15px;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.6);
  transition: 0.3s ease;
  font-weight: 500;
  position: relative;
  min-width: 130px;
  min-height: 60px;
  border: 1px solid #e6e6e6;
  border-radius: 35px;
  margin-bottom: 18px;
  padding: 11px 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: calc(50% - 10px);
  cursor: pointer;
}

.multiple-choice__item:hover {
  color: black;
}

.multiple-choice__item_active {
  color: black;
  background: #fff;
  border: 1px solid #fff;
}

.multiple-choice__item_active:before {
  content: "";
  display: block;
  border-radius: 50%;
  background: #59a8b0 url(/images/check-icon.svg?bad33469d9b0b7299e95f4b86b4b92a6) center 8px/14px auto no-repeat;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  min-width: 24px;
  top: 50%;
  left: 0;
}

@media screen and (max-width: 992px) {
  .multiple-choice__heading {
    font-size: 25px;
    line-height: 35px;
  }

  .multiple-choice__sub {
    font-size: 18px;
  }
}

@media screen and (max-width: 500px) {
  .multiple-choice__item {
    width: 275px;
  }
}

.radio-choice__heading {
  font-size: 35px;
  line-height: 45px;
  font-weight: 800;
  margin-bottom: 23px;
}

.radio-choice__err {
  margin-top: -14px;
  margin-bottom: 20px;
  display: block;
  font-size: 17px;
  color: #e13f4e;
  font-weight: 700;
}

.radio-choice__list {
  list-style-type: none;
  display: flex;
}

.radio-choice__item {
  font-size: 20px;
  line-height: 35px;
  color: rgba(0, 0, 0, 0.6);
  transition: 0.3s ease;
  font-weight: 500;
  position: relative;
  min-width: 130px;
  border: 1px solid #e6e6e6;
  border-radius: 35px;
  margin-right: 20px;
  padding: 11px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(230, 230, 230, 0.45);
  cursor: pointer;
}

.radio-choice__item:hover {
  color: black;
}

.radio-choice__item_active {
  color: black;
  background: #fff;
  border: 1px solid #fff;
}

.radio-choice__item_active:before {
  content: "";
  display: block;
  border-radius: 50%;
  background: #59a8b0 url(/images/check-icon.svg?bad33469d9b0b7299e95f4b86b4b92a6) center 8px/14px auto no-repeat;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  min-width: 24px;
  top: 50%;
  left: 0;
}

@media screen and (max-width: 992px) {
  .radio-choice__heading {
    font-size: 25px;
    line-height: 35px;
  }
}

.app-page {
  max-width: 570px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-bottom: 80px;
}

.app-page::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: url(/images/logo-stamp.svg?a82229e189c89e6cf786654df85f7be2) -80px 310px/340px auto no-repeat;
}

.app-page_long:before {
  top: 470px;
}

.app-page_long .header-bar {
  display: none;
}

.app-page__long-form {
  padding-top: 765px;
}

.app-page__checks .sm-input__err {
  display: none;
  position: relative;
  width: auto;
  bottom: 0;
  background: none;
}

.app-page__check-error {
  color: #dc3040;
  display: block;
  font-size: 14px;
  bottom: 5px;
  left: 7px;
  line-height: 50px;
  width: calc(100% - 15px);
  pointer-events: none;
  font-weight: 700;
}

@media screen and (max-width: 992px) {
  .app-page {
    max-width: 614px;
    padding: 0 22px 80px;
  }

  .app-page::before {
    display: none;
  }

  .app-page__long-form {
    padding-top: 0;
  }

  .app-page__form {
    padding-top: 75px;
  }
}

@media screen and (max-width: 614px) {
  .app-page {
    padding-left: 0;
    padding-right: 0;
  }

  .app-page__form {
    padding: 70px 15px 0;
  }
}

.contact-form {
  text-align: center;
}

.contact-form .app-btn {
  min-width: 140px;
  font-size: 15px;
  padding: 12px 40px;
  margin-top: 52px;
}

.contact-form .app-btn:after {
  display: none;
}

.contact-form__heading {
  font-size: 40px;
  line-height: 50px;
  max-width: 500px;
  font-weight: 800;
  margin: 0 auto;
}

.contact-form__form,
.contact-form__sub {
  flex: 1 1 50%;
}

.contact-form__sub {
  font-size: 15px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.65);
  font-weight: 500;
  text-align: left;
  display: flex;
  align-items: flex-end;
  padding-right: 65px;
  background: url(/images/coins-2.png?ce56658fbeccdbc1530a5659f7215425) 0 55px no-repeat;
}

.contact-form__form {
  display: flex;
  flex-wrap: wrap;
  padding-left: 44px;
  margin-bottom: -17px;
  padding-top: 100px;
}

.contact-form__form .sm-input {
  width: 100%;
}

.contact-form__form .sm-input input {
  font-size: 16px;
}

.contact-form__form .sm-input input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #f3f3f3 inset !important;
}

.contact-form__form .sm-input input:focus {
  font-size: 16px;
}

.contact-form__form .sm-input__label {
  position: relative;
}

.contact-form__container {
  display: flex;
  margin: 0 -110px;
}

@media screen and (max-width: 992px) {
  .contact-form {
    padding: 0 15px;
    margin-top: 80px;
  }

  .contact-form__heading {
    font-size: 26px;
    line-height: 35px;
    max-width: 320px;
    margin-bottom: 10px;
  }

  .contact-form__container {
    flex-direction: column;
    margin: 0;
  }

  .contact-form__sub {
    background: none;
    padding: 0;
    text-align: center;
  }

  .contact-form__form {
    padding-top: 47px;
    padding-left: 0;
  }
}

@media screen and (max-width: 992px) {
  .contact-form {
    margin-top: 175px;
  }
}

.sm-input {
  height: 73px;
  display: flex;
  position: relative;
  flex-direction: column;
  text-align: left;
}

.sm-input input {
  background: none;
  border: none;
  display: block;
  height: 55px;
  font-size: 14px;
  position: relative;
  outline: none !important;
}

.sm-input input[type=password],
.sm-input input[type=email],
.sm-input input[type=text] {
  border-bottom: 1px solid #ebebeb;
  order: 2;
  margin-top: -13px;
  width: 100%;
}

.sm-input input[type=password]:focus,
.sm-input input[type=email]:focus,
.sm-input input[type=text]:focus {
  border-bottom: 2px solid #ebebeb;
}

.sm-input input::-moz-placeholder {
  font-size: 16px;
  color: #cecece;
}

.sm-input input:-ms-input-placeholder {
  font-size: 16px;
  color: #cecece;
}

.sm-input input::placeholder {
  font-size: 16px;
  color: #cecece;
}

.sm-input input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
}

.sm-input__label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.45);
}

.sm-input_long-form {
  height: auto;
}

.sm-input_long-form input[type=password],
.sm-input_long-form input[type=email],
.sm-input_long-form input[type=text] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border: 2px solid #fff;
  margin-top: 13px;
  border-radius: 8px;
  padding-left: 22px;
  height: 60px;
  background: #fff;
  font-size: 16px;
}

.sm-input_long-form input:focus {
  border: 2px solid #ebebeb;
  font-size: 16px;
}

.sm-input_focused .sm-input__autocomplete li {
  opacity: 1;
  pointer-events: auto;
}

.sm-input_alone label {
  font-size: 35px;
  line-height: 45px;
  color: #000;
  font-weight: 800;
}

.sm-input_secondary label {
  font-size: 20px;
  margin-bottom: 22px;
  color: #000;
}

.sm-input_small input {
  max-width: 194px;
}

.sm-input_small .sm-input__err {
  max-width: 180px;
}

.sm-input_err input {
  border-color: #dc3040 !important;
}

.sm-input__err {
  color: #dc3040;
  display: block;
  font-size: 14px;
  position: absolute;
  bottom: 5px;
  left: 7px;
  line-height: 50px;
  padding-left: 15px;
  background: #fff;
  width: calc(100% - 15px);
  pointer-events: none;
}

.sm-input__wrapper {
  display: flex;
  gap: 15px;
}

.sm-input__autocomplete {
  order: 3;
  height: 0;
  list-style-type: none;
  position: relative;
  z-index: 1;
  line-height: 55px;
}

.sm-input__autocomplete li {
  background: #fff;
  padding-left: 15px;
  border-left: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
  cursor: pointer;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
}

.sm-input__autocomplete li:hover {
  color: black;
}

.sm-input__autocomplete li:first-of-type {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-top: 1px solid #ebebeb;
}

.sm-input__autocomplete li:last-of-type {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom: 1px solid #ebebeb;
}

.contact-form .sm-input.sm-input_err .sm-input__label {
  color: #dc3040;
}

.contact-form .sm-input.sm-input_err .sm-input__err {
  display: none;
}

.checks .sm-input {
  flex-direction: row;
  height: 38px;
}

.checks .sm-input label {
  display: flex;
  align-items: center;
  position: relative;
}

.checks .sm-input label::before {
  content: "";
  display: block;
  width: 21px;
  min-width: 21px;
  height: 21px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #ebebeb;
  margin-right: 12px;
  transition: 0.3s ease;
}

.checks .sm-input label:after {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 10px;
  border: 3px solid #fff;
  top: calc(50% - 7px);
  left: 7px;
  border-top: none;
  border-left: 0;
  transform: rotate(45deg);
}

.checks .sm-input input {
  opacity: 0;
  position: absolute;
}

.checks .sm-input input:checked ~ label:before {
  background: #59a8b0;
  border: 1px solid #59a8b0;
}

@media screen and (max-width: 992px) {
  .sm-input_alone label {
    font-size: 25px;
    line-height: 35px;
  }
}

.long-form-header {
  min-height: 550px;
  background: url(/images/header-coin-1.png?d4ab0b26bc3c8fd38d0ab95edf1f0bc8) calc(50% - 450px) 114px no-repeat, url(/images/header-coin-2.png?463001830f933aed914f73eb631b04b3) calc(50% + 420px) calc(100% - 50px) no-repeat;
  background-color: #59a8b0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 111;
}

.long-form-header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: url(/images/header-arrow-2.png?175a9a8cdaeb4fbdd505a509df59a414) 50% calc(100% - 46px) no-repeat;
}

.long-form-header_orange {
  background-color: #f3e0d5;
  color: #000;
}

.long-form-header_orange:before {
  background-image: url(/images/header-arrow.png?78290d946d390e42660c7893da4d46bc);
}

.long-form-header__bar {
  background: #fff;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  padding: 0 65px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.long-form-header__logo {
  background: url(/images/cazle-logo-sign-black.svg?678801db31245aeddaf9989a3922eb5c) center left/23px auto no-repeat;
  padding: 10px 0 10px 50px;
  display: flex;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
}

.long-form-header__logo:after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 2px;
  background: #000;
  margin-left: 30px;
}

.long-form-header__progress {
  font-size: 11px;
  text-align: left;
}

.long-form-header__progress-bar {
  height: 14px;
  width: 555px;
  position: relative;
  border-radius: 14px;
  background: rgba(219, 219, 219, 0.45);
  margin-top: 10px;
}

.long-form-header__progress-inner {
  height: 6px;
  border-radius: 6px;
  background: #59a8b0;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
}

.long-form-header__back {
  align-items: center;
  margin-bottom: -10px;
  display: block;
}

.long-form-header__back:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 2px;
  background: #000;
  margin-right: 30px;
}

.long-form-header__back button {
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.15em;
  font-size: 12px;
  cursor: pointer;
}

.long-form-header__back button:hover {
  opacity: 0.6;
}

.long-form-header__greeting {
  font-size: 100px;
  font-weight: 800;
  margin-bottom: 5px;
}

.long-form-header__heading {
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 10px;
}

.long-form-header__sub {
  font-size: 25px;
  font-weight: 500;
  opacity: 0.65;
}

.long-form-header__steps {
  display: flex;
  font-size: 12px;
  text-transform: none;
  letter-spacing: normal;
  width: 100%;
  justify-content: space-between;
  max-width: 860px;
  color: rgba(0, 0, 0, 0.45);
  position: relative;
}

.long-form-header__steps .long-form-header__progress-bar {
  position: absolute;
  width: 85%;
  height: 6px;
  left: 50%;
  transform: translateX(-50%);
}

.long-form-header__steps .long-form-header__progress-inner {
  letter-spacing: 0;
  background: #b1d7db;
}

.long-form-header__step {
  flex: 1;
  max-width: 16.666%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  font-weight: 600;
}

.long-form-header__step:before {
  position: relative;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: #dcdcdc;
  border-radius: 50%;
  margin-bottom: 11px;
  bottom: -4px;
}

.long-form-header__step_current {
  color: #000;
}

.long-form-header__step_current::before {
  background: #59a8b0;
  border: 4px solid #dcdcdc;
  bottom: 0;
  margin-bottom: 3px;
}

.long-form-header__step_passed {
  color: #59a8b0;
}

.long-form-header__step_passed:before {
  background: #b1d7db;
}

@media screen and (max-width: 992px) {
  .long-form-header {
    min-height: 330px;
    padding: 100px 0 116px;
    position: relative;
  }

  .long-form-header::after {
    position: absolute;
    content: "";
    width: 100vw;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url(/images/header-coin-1.png?d4ab0b26bc3c8fd38d0ab95edf1f0bc8) calc(50% - 450px) 114px no-repeat, url(/images/header-coin-2.png?463001830f933aed914f73eb631b04b3) calc(50% + 420px) calc(100% - 50px) no-repeat;
    background-position: -10px 104px, calc(100% + 10px) calc(100% - 40px);
    background-size: 60px auto;
    background-color: #59a8b0;
    z-index: -1;
  }

  .long-form-header_orange::after {
    background-color: #f3e0d5;
  }

  .long-form-header__greeting {
    font-size: 60px;
  }

  .long-form-header__heading {
    font-size: 25px;
  }

  .long-form-header__sub {
    font-size: 18px;
    max-width: calc(100% - 87px);
  }

  .long-form-header__logo {
    font-size: 0;
    min-height: 35px;
    padding: 0;
    width: 35px;
  }

  .long-form-header__logo:after {
    display: none;
  }

  .long-form-header__bar {
    padding: 16px;
    height: 75px;
    align-items: flex-start;
  }

  .long-form-header__back::before {
    display: none;
  }

  .long-form-header__progress {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    max-width: 555px;
    width: 100%;
    padding: 0 20px;
  }

  .long-form-header__progress-bar {
    margin-top: 0;
    margin-bottom: 7px;
    max-width: 555px;
    width: 100%;
  }

  .long-form-header__steps .long-form-header__progress-bar {
    max-width: none;
    margin-top: 10px;
  }

  .long-form-header__step {
    font-size: 0;
  }

  .long-form-header__step_current {
    font-size: 12px;
    white-space: nowrap;
  }
}

@media screen and (max-width: 614px) {
  .long-form-header {
    margin-left: 0;
    background: url(/images/header-coin-1.png?d4ab0b26bc3c8fd38d0ab95edf1f0bc8) calc(50% - 450px) 114px no-repeat, url(/images/header-coin-2.png?463001830f933aed914f73eb631b04b3) calc(50% + 420px) calc(100% - 50px) no-repeat;
    background-position: -10px 104px, calc(100% + 10px) calc(100% - 40px);
    background-size: 60px auto;
    background-color: #59a8b0;
  }

  .long-form-header:after {
    display: none;
  }

  .long-form-header_orange {
    background-color: #f3e0d5;
  }
}

.long-form__heading {
  font-size: 35px;
  line-height: 45px;
  font-weight: 800;
  margin-bottom: 23px;
}

.long-form__disc {
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.45);
  line-height: 20px;
}

.long-form__grp {
  margin-bottom: 80px;
}

.long-form__controls {
  display: flex;
  justify-content: space-between;
}

.long-form__controls .app-btn {
  margin-left: 0;
  margin-right: 0;
  min-width: 140px;
  font-size: 15px;
  padding: 12px 40px;
}

.long-form__controls .app-btn:after {
  display: none;
}

.long-form__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}

.long-form__row .sm-input {
  width: calc(50% - 10px);
  margin-bottom: 15px;
}

@media screen and (max-width: 650px) {
  .long-form__row .sm-input {
    width: 100%;
  }
}

.coborrower-form__heading {
  font-size: 24px;
  margin-bottom: 10px;
}

.coborrower-form__sub {
  font-size: 16px;
  margin-bottom: 40px;
  font-weight: 400;
}

.coborrower-form__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.coborrower-form__row .sm-input {
  width: calc(50% - 10px);
  margin-bottom: 15px;
}

@media screen and (max-width: 650px) {
  .coborrower-form__info h2 {
    font-size: 35px;
  }

  .coborrower-form__row .sm-input:not(.dependents_input) {
    width: 100%;
  }
}

.income-form__heading {
  font-size: 24px;
  margin-bottom: 10px;
}

.income-form__sub {
  font-size: 16px;
  margin-bottom: 40px;
  font-weight: 400;
}

.income-form__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.income-form__row .sm-input {
  width: calc(50% - 10px);
  margin-bottom: 15px;
}

@media screen and (max-width: 992px) {
  .income-form__row .sm-input {
    width: 100%;
  }
}

.user-choice {
  margin-left: calc(-50vw + 285px);
  min-width: 100vw;
  text-align: center;
}

.user-choice .app-btn:not(.app-btn_grey) {
  width: 219px;
  padding: 0;
  height: 55px;
}

.user-choice .app-btn:not(.app-btn_grey)::after {
  display: none;
}

.user-choice .long-form__controls {
  justify-content: center;
}

.user-choice .app-btn_grey {
  margin-top: 80px;
}

.user-choice__header {
  padding-bottom: 20px;
}

.user-choice__heading {
  font-size: 40px;
  line-height: 50px;
}

.user-choice__sub {
  font-size: 20px;
  line-height: 40px;
}

.user-choice__container {
  display: flex;
  justify-content: center;
  margin-top: 55px;
}

.user-choice__block {
  display: flex;
  flex-direction: column;
  font-size: 24px;
  font-weight: 500;
  padding: 0 85px;
  position: relative;
}

.user-choice__block:after {
  content: "";
  display: block;
  height: 130px;
  width: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
}

.user-choice__block:last-of-type:after {
  display: none;
}

.user-choice__phone-btn img {
  width: 25px;
}

.user-choice_reverse .user-choice__header {
  display: flex;
  flex-direction: column-reverse;
}

.user-choice_reverse .user-choice__block:first-of-type .btn {
  background: #59a8b0 !important;
}

.user-choice_reverse .user-choice__block:first-of-type .btn::after {
  display: block;
  position: relative;
  left: 0;
}

.user-choice_reverse .user-choice__block:first-of-type .btn:hover {
  background: #59a8b0 !important;
  padding-left: 30px;
}

.user-choice_reverse .user-choice__block:first-of-type .btn:hover::after {
  display: block;
  left: 30px;
  opacity: 0;
}

.user-choice_reverse .user-choice__block:not(:first-of-type) .btn {
  background: #e7a895 !important;
}

.user-choice_reverse .user-choice__block:not(:first-of-type) .btn::after {
  display: none;
}

.user-choice_reverse .user-choice__block:not(:first-of-type) .btn:hover {
  background: #d98f79 !important;
}

@media screen and (max-width: 992px) {
  .user-choice {
    min-width: 0;
    margin: 0 auto;
    padding-top: 160px;
  }

  .user-choice__container {
    flex-direction: column;
    margin-top: 25px;
  }

  .user-choice__block {
    padding: 0;
    margin-bottom: 50px;
  }

  .user-choice__block:after {
    display: none;
  }

  .user-choice__heading {
    font-size: 26px;
    line-height: 35px;
  }

  .user-choice__sub {
    font-size: 16px;
  }

  .user-choice .app-btn {
    margin-top: 23px;
  }
}

@media screen and (max-width: 600px) {
  .user-choice {
    padding-left: 15px;
    padding-right: 15px;
  }

  .user-choice__heading br {
    display: none;
  }
}

.thank-you {
  height: 100vh;
  background: #59a8b0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.thank-you__header {
  font-size: 75px;
  margin-bottom: 10px;
}

.thank-you__sub {
  font-size: 25px;
  color: #f7f7f7;
}

.thank-you__logo {
  position: absolute;
  background: url(/images/logo-light-nav.svg?baba837e4e7bd1b998688305baeab3a0) center center/130px auto no-repeat;
  filter: brightness(100);
  width: 130px;
  height: 50px;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
}

.thank-you__input {
  background: rgba(247, 247, 247, 0.112);
  border-radius: 6px;
  height: 55px;
  max-width: 624px;
  width: 95%;
  margin: 0 auto;
  padding: 0 23px;
  margin-top: 45px;
}

.thank-you__input input {
  width: 100%;
  height: 100%;
  border: none !important;
  background: none;
  outline: none !important;
  color: #fff;
  font-size: 16px;
}

.thank-you__input input::-moz-placeholder {
  font-size: 16px;
  color: rgba(247, 247, 247, 0.6);
}

.thank-you__input input:-ms-input-placeholder {
  font-size: 16px;
  color: rgba(247, 247, 247, 0.6);
}

.thank-you__input input::placeholder {
  font-size: 16px;
  color: rgba(247, 247, 247, 0.6);
}

.thank-you__input input:focus {
  font-size: 16px;
}

.thank-you__close {
  position: absolute;
  top: 35px;
  right: 35px;
  cursor: pointer;
}

.thank-you__close::before,
.thank-you__close::after {
  display: block;
  content: "";
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  position: relative;
}

.thank-you__close:before {
  transform: rotate(-45deg);
  top: 2px;
}

.thank-you__close:after {
  transform: rotate(45deg);
}

.thank-you__btns .app-btn {
  width: 160px !important;
  height: 45px !important;
  padding: 0;
  margin-left: 15px;
  margin-right: 15px;
}

.thank-you .app-btn_empty {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.thank-you .app-btn_empty:after {
  display: none;
}

.thank-you .app-btn_empty:hover {
  background: #fff;
  color: #59a8b0;
}

.thank-you .app-btn_white {
  width: 220px;
  height: 55px;
  padding: 0;
}

.thank-you .app-btn_white:after {
  position: relative;
  left: 0;
}

.thank-you .app-btn_white:hover {
  padding-left: 21px;
}

.thank-you .app-btn_white:hover:after {
  left: 30px;
  opacity: 0;
}

@media screen and (max-width: 992px) {
  .thank-you {
    padding: 0 15px;
  }

  .thank-you__header {
    font-size: 35px;
    line-height: 40px;
  }

  .thank-you__sub {
    font-size: 16px;
    line-height: 30px;
    max-width: 280px;
    margin: 0 auto;
  }

  .thank-you__block {
    width: 100%;
    max-width: 400px;
  }

  .thank-you__btns {
    display: flex;
    justify-content: space-between;
  }

  .thank-you__btns .app-btn {
    margin-left: 0;
    margin-right: 0;
    font-size: 16px;
  }
}

.header-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  padding: 0 65px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.15em;
  z-index: 111;
}

.header-bar__logo {
  background: url(/images/cazle-logo-sign-black.svg?678801db31245aeddaf9989a3922eb5c) center left/23px auto no-repeat;
  padding: 10px 0 10px 50px;
  display: flex;
  align-items: center;
  font-size: 16px;
  min-height: 35px;
  cursor: pointer;
}

.header-bar__text {
  display: flex;
  align-items: center;
}

.header-bar__text:after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 2px;
  background: #000;
  margin-left: 30px;
}

.header-bar__back {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.header-bar__back:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 2px;
  background: #000;
  margin-right: 30px;
}

.header-bar__back button {
  border: none;
  background: none;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.15em;
  font-size: 12px;
  cursor: pointer;
}

.header-bar__back button:hover {
  opacity: 0.6;
}

@media screen and (max-width: 992px) {
  .header-bar {
    padding: 0 13px;
  }

  .header-bar__text {
    font-size: 14px;
    position: absolute;
    bottom: -51px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s ease;
  }

  .header-bar__text:after {
    margin-left: 13px;
  }

  .header-bar__logo {
    background-image: url(/images/logo-dark-nav-2.svg?1e7673522316a3ea0e5f0d9cbdb51c96);
    background-size: 115px auto;
    padding: 20px 0 20px 115px;
  }

  .header-bar__back:before {
    width: 19px;
    margin-right: 12px;
  }

  .header-bar_front .header-bar__text {
    display: none;
  }

  .header-bar.hide .header-bar__text {
    opacity: 0;
  }
}

.application_dark .header-bar {
  color: #fff;
}

.application_dark .header-bar__logo {
  background-image: url(/images/cazle-logo-sign-white.svg?c605d675f78e3edc96ac6350007f33d5);
}

.application_dark .header-bar__text:after {
  background: #fff;
}

.application_dark .header-bar__back:before {
  background: #fff;
}

.application_dark .header-bar__back button {
  color: #fff;
}

@media screen and (max-width: 992px) {
  .application_dark .header-bar__logo {
    background-image: url(/images/logo-light-nav.svg?baba837e4e7bd1b998688305baeab3a0);
  }
}

.checklist__check {
  display: flex;
}

.checklist__item {
  display: flex;
}

.places-autocomplete__err {
  margin-top: 15px;
  display: block;
  font-size: 17px;
  color: #e13f4e;
  font-weight: 700;
}

.social-security {
  margin-top: -130px;
}

.social-security__header {
  text-align: center;
}

.social-security__header h2 {
  font-size: 18px;
  line-height: 28px;
  position: relative;
  padding-top: 58px;
  margin-bottom: 33px;
}

.social-security__header h2::before {
  content: "";
  width: 43px;
  height: 43px;
  background: url(/images/warning-iconsvg.svg?934cb85288c0f02b6ac94e637945cdd2) center center no-repeat;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.social-security__header p {
  font-size: 15px;
  line-height: 25px;
  color: #797979;
  margin-bottom: 80px;
}

.social-security__header p b {
  display: block;
  color: #000;
  font-weight: 900;
}

.social-security__body {
  background: #e6e6e6 url(/images/logo-sign-bg-grey.svg?fbac1cf005c4d3c479441132fcd87b6f) center center/auto 150px no-repeat;
  background-position: calc(100% + 55px) 30px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  padding: 40px 55px;
}

.social-security__body h2 {
  font-size: 35px;
  line-height: 45px;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 22px;
}

.social-security__body .sm-input_long-form .sm-input__label {
  font-size: 15px;
  font-weight: 500;
}

.social-security__body .sm-input_long-form::before {
  content: "";
  display: block;
  position: absolute;
  height: 38px;
  width: 60px;
  bottom: 11px;
  left: 0;
  background: url(/images/lock-icon.svg?07c7b1d0d390969f63d9842525654ed7) center center/auto 25px no-repeat;
  z-index: 1;
  border-right: 1px solid #adadad;
}

.social-security__body .sm-input_long-form input[type=text] {
  padding-left: 70px;
  border-radius: 6px;
}

.social-security__body .long-form__grp {
  padding-bottom: 50px;
  margin-bottom: 42px;
}

.social-security__body .checks {
  margin-top: 34px;
  margin-bottom: 35px;
}

.social-security__body .checks .sm-input__label {
  font-size: 14px;
  color: #000;
}

.social-security__body .checks .sm-input {
  height: auto;
  margin-bottom: 22px;
}

.social-security__body .checks .sm-input::before {
  display: none;
}

.social-security__body .checks .sm-input label {
  align-items: flex-start;
}

.social-security__body .checks .sm-input label::after {
  top: 4px;
  border-color: #cacaca;
}

.social-security__body .checks .sm-input label::before {
  border-radius: 7px;
  background: #cacaca;
  border: 2px solid #59a8b0;
}

.social-security__full-screen {
  width: 570px;
}

.social-security .btn {
  margin-top: 0;
}

.social-security .btn:after {
  display: none;
}

.social-security .app-btn_disabled {
  background: #d2d2d2;
  min-width: 150px;
}

.social-security .single-choice {
  margin-bottom: 18px;
}

.social-security .single-choice__item {
  font-size: 15px;
  line-height: 25px;
}

.social-security .single-choice__item:before {
  background-color: #cacaca;
  border: 2px solid #59a8b0;
}

.social-security .single-choice__item_active::before {
  background-color: #59a8b0;
}

.social-security__reviews-heading {
  font-weight: 800;
  font-size: 55px;
  text-align: center;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url(/images/logo-bg-grey.svg?a7e495769ec087dd4d81bdddc42862b4) center center no-repeat;
  margin-top: 94px;
}

.social-security__reviews-heading span {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-top: 13px;
  text-transform: uppercase;
}

.social-security__reviews-footer {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.social-security__reviews-footer h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 23px;
}

.social-security__reviews-footer p {
  font-size: 16px;
  opacity: 0.7;
}

.social-security__reviews-footer span:nth-of-type(1) {
  padding-right: 20px;
  margin-right: 20px;
  position: relative;
}

.social-security__reviews-footer span:nth-of-type(1):after {
  content: "";
  width: 1px;
  height: 20px;
  background: #c0c0c0;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.social-security .feedback__list {
  margin-top: 0;
}

.social-security .feedback__item > div {
  min-width: 172px;
}

.social-security .app-page__check-error {
  margin-top: 35px;
  margin-bottom: -35px;
}

@media screen and (max-width: 650px) {
  .social-security {
    padding: 0 13px;
    margin-top: 0;
  }

  .social-security__header {
    margin-top: 55px;
  }

  .social-security__header h2 br {
    display: none;
  }

  .social-security__header p {
    margin-bottom: 50px;
  }

  .social-security__body {
    padding: 25px 19px;
  }

  .social-security__body h2 {
    max-width: 205px;
    margin-top: 25px;
    font-size: 25px;
    line-height: 35px;
  }

  .social-security__body .checks {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .social-security__body .long-form__grp {
    padding-bottom: 35px;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
  }

  .social-security__body .long-form__grp .btn {
    margin: -14px 0 0 auto;
  }

  .social-security__full-screen {
    width: auto;
  }

  .social-security .btn {
    padding: 14px 43px;
    font-size: 16px;
  }

  .social-security__reviews-heading {
    margin-top: 40px;
    font-size: 34px;
  }

  .social-security__reviews-footer {
    margin-bottom: 27px;
  }

  .social-security__reviews-footer span {
    display: block;
    line-height: 30px;
  }

  .social-security__reviews-footer span:nth-of-type(1) {
    padding: 0;
    margin: 0;
  }

  .social-security__reviews-footer span:nth-of-type(1):after {
    display: none;
  }

  .social-security__controls {
    display: flex;
    justify-content: flex-end;
  }

  .social-security__controls .btn {
    margin: 0;
  }

  .social-security .feedback__item > div {
    min-width: 0;
  }
}

.social-security__body .checks .input_active label::after {
  border-color: #fff !important;
}


