@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container {
  padding-left: 25px;
  padding-right: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

body {
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.5px;
}

.header {
  padding-top: 20px;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-bottom: 15px;
}

.header-stages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dedede;
}

.header-stages::before {
  position: absolute;
  content: '';
  display: inline-block;
  left: 0;
  right: 0;
  background: #979797;
  bottom: 32px;
  height: 2px;
}

.header-stages_second::after {
  position: absolute;
  content: '';
  display: inline-block;
  left: 0;
  width: 50%;
  background: #2D7EFF;
  bottom: 32px;
  z-index: 1;
  height: 2px;
}

.header-stages__item {
  position: relative;
  z-index: 3;
  padding-top: 18px;
}

.header-stages__item-label {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  font-size: 13px;
  line-height: 13px;
  color: #979797;
}

.header-stages__item-count {
  border: 2px solid #979797;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  background: #fff;
  -ms-flex-line-pack: center;
  align-content: center;
  background-color: #fff;
  position: relative;
  z-index: 2;
  font-size: 13px;
  line-height: 29px;
  color: #979797;
}

.header-stages__item.active .header-stages__item-count {
  color: #2D7EFF;
  border-color: #2D7EFF;
}

.header-stages__item.active .header-stages__item-label {
  color: #2D7EFF;
}

.header-stages__item.done .header-stages__item-count {
  color: #2D7EFF;
  background: #2D7EFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-color: #2D7EFF;
}

.header-stages__item.done .header-stages__item-count svg {
  width: 20px;
  height: 20px;
}

.header-stages__item.done .header-stages__item-label {
  color: #2D7EFF;
}

.product__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product__img {
  width: 64px;
  margin-right: 10px;
  min-width: 64px;
}

.product__img img {
  width: 100%;
}

.product__content {
  width: 100%;
}

.product__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product__sale {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px;
  background: #F6F6F6;
  border-radius: 3px;
  font-size: 13px;
  line-height: 13px;
  color: #2C3035;
}

.product__sale i {
  margin-right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product__sale i svg {
  width: 11.5px;
  height: 11.5px;
}

.product__oldprice {
  font-size: 15px;
  margin: 0;
  color: #5A636D;
  text-decoration: line-through;
}

.product__middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5px;
}

.product__title {
  font-size: 17px;
  line-height: 20px;
  color: #2C3035;
}

.product__price {
  font-size: 16px;
  color: #2C3035;
}

.product__descr {
  font-size: 15px;
  line-height: 17px;
  color: #5A636D;
}

.main__features {
  padding: 0;
  margin: 0;
  margin-top: 25px;
  list-style: none;
}

.main__features li {
  position: relative;
  padding: 15px 10px;
  padding-left: 40px;
  background: #EAF6EF;
  margin-bottom: 15px;
}

.main__features li i {
  position: absolute;
  top: 15px;
  left: 10px;
}

.main__features li p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  color: #0BC86D;
}

.main__features li p:last-child {
  margin-bottom: 0;
}

.main__btn {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  width: 100%;
  height: 46px;
  background: #2D7EFF;
  -webkit-box-shadow: 0 12px 40px 0 rgba(45, 126, 255, 0.35);
          box-shadow: 0 12px 40px 0 rgba(45, 126, 255, 0.35);
  border-radius: 31px;
  font-size: 14px;
  color: #FFFFFF;
  letter-spacing: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -ms-flex-pack: center;
  justify-content: center;
  border: none;
  text-transform: uppercase;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-bottom: 25px;
  padding: 16px;
}

.main__btn i {
  margin-left: 11px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main__btn i svg {
  width: 14px;
}

.main__rate-logo svg {
  width: 170px;
  margin-right: 20px;
}

.main__rate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.trustpilot-badge__star-fill {
  fill: #00b67a;
}

.trustpilot-badge__star .trustpilot-badge__svg {
  width: 20px;
  margin-right: 2px;
}

.main__rate-list > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 6px;
}

.main__icons {
  margin-top: 25px;
  padding: 0 16px 10px 16px;
  border-bottom: 1px solid #dedede;
  padding-bottom: 30px;
  margin-bottom: 20px;
}

.main__icons-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 25px;
}

.main__icons-item:last-child {
  margin-bottom: 0;
}

.main__icons-ico {
  width: 30px;
  margin-right: 15px;
  min-width: 30px;
}

.main__icons-title {
  font-size: 15px;
  color: #2C3035;
  line-height: 20px;
  margin-bottom: 5px;
}

.main__icons-txt {
  font-size: 15px;
  color: #5A636D;
  line-height: 20px;
}

.footer {
  padding-top: 25px;
  padding-bottom: 40px;
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}

.footer__col {
  width: 50%;
  padding-left: 5px;
  padding-right: 5px;
}

.footer__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer__list li {
  font-size: 13.5px;
  line-height: 1.1;
  color: #5A636D;
  margin-bottom: 15px;
  display: block;
  text-decoration: none;
}

.footer__list li a {
  color: #5A636D;
  text-decoration: none;
}

.disclaimer {
  padding: 10px;
  background: #EAF6EF;
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #0BC86D;
  margin-bottom: 10px;
}

.disclaimer a {
  color: #0BC86D;
}

.payprices__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 12px;
}

.payprices__row:last-child {
  margin-bottom: 0;
}

.payprices__item {
  font-size: 13.75px;
  color: #5A636D;
}

.payprices__item span {
  color: #0BC86D;
}

.payprices__finish {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #dedede;
}

.payprices__finish-label {
  font-size: 13.75px;
  color: #2C3035;
}

.payprices__finish-price {
  font-size: 13.75px;
  color: #2C3035;
}

.payprices__finish-price span {
  font-size: 13.75px;
  color: #5A636D;
  margin-right: 10px;
}

.paypal {
  position: relative;
  padding: 15px;
  border: 1px solid #DEDEDE;
  border-radius: 5px;
  margin-top: 25px;
  margin-bottom: 20px;
}

.paypal__title {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-block;
  padding: 0 15px;
  background-color: #fff;
  z-index: 2;
  font-size: 13px;
  color: #2C3035;
  white-space: nowrap;
  -webkit-transform: translateY(-60%) translateX(-50%);
          transform: translateY(-60%) translateX(-50%);
}

.paypal__link {
  background: #FCBA03;
  border-radius: 3px;
  width: 100%;
  min-height: 54px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
}

.paypal__link img {
  width: 112px;
}

.payblock__or {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 13px;
}

.payblock__or b {
  font-size: 14px;
  min-width: 50px;
  text-align: center;
  font-weight: 400;
  color: #2C3035;
}

.payblock__or span {
  width: 100%;
  background: #DEDEDE;
  height: 1px;
}

.payblock__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.payblock__title {
  font-size: 20px;
  color: #2C3035;
  text-align: left;
}

.payblock__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.payblock__list-item {
  margin-left: 8px;
}

.payblock__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.payblock__item {
  position: relative;
}

.payblock__item-label {
  font-size: 13px;
  line-height: 13px;
  color: #2C3035;
  margin-bottom: 8px;
}

.payblock__item-field {
  width: 100%;
  height: 54px;
  border-radius: 5px;
  border: 1px solid #DEDEDE;
  padding-left: 15px;
}

.payblock__item .validateicons {
  position: absolute;
  right: 10px;
  bottom: 14px;
}

.payblock__item .validateicons svg {
  width: 20px;
  display: none;
}

.payblock__item .validateicons .validate svg {
  width: 25px;
  height: 25px;
}

.payblock__item_secure .secure svg {
  display: block;
}

.payblock__col {
  width: 50%;
  margin-bottom: 15px;
}

.payblock__col_12 {
  width: 100%;
}

.payblock__col_sm {
  width: 40%;
}

.payblock__col_lg {
  width: 56%;
}

.validate_error .payblock__item-field {
  border-color: red;
}

.validate_error .secure svg {
  display: none;
}

.validate_error .error svg {
  display: block;
}

.validate_success .payblock__item-field {
  border-color: green;
}

.validate_success .secure svg {
  display: none;
}

.validate_success .validate svg {
  display: block;
}

.main__btn_purch i {
  -webkit-transform: none;
          transform: none;
  margin-right: 10px;
}

.safe {
  position: relative;
  padding: 15px;
  border: 1px solid #DEDEDE;
  border-radius: 5px;
  margin-top: 55px;
  margin-bottom: 20px;
  margin-bottom: 40px;
}

.safe__title {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-block;
  padding: 0 15px;
  background-color: #fff;
  z-index: 2;
  font-size: 13px;
  color: #2C3035;
  white-space: nowrap;
  -webkit-transform: translateY(-60%) translateX(-50%);
          transform: translateY(-60%) translateX(-50%);
}

.safe__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

html.locked {
  overflow: hidden;
}

.modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  background: #fff;
  bottom: 0;
  padding: 25px;
  padding-top: 7px;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  overflow: auto;
  -webkit-transition: .3s all ease;
  transition: .3s all ease;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: none;
          transform: none;
}

.modal__close {
  position: fixed;
  right: 10px;
  top: 10px;
  border: none;
  background: transparent;
}

.modal__close svg {
  width: 20px;
}

.modal__logo {
  text-align: center;
  margin-bottom: 15px;
}

.modal__title {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  color: #2C3035;
}

.modal__title span {
  color: #CB5B6E;
}

.modal__picture {
  text-align: center;
}

.modal__list {
  text-decoration: none;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 260px;
  margin-left: auto;
  margin-bottom: 24px;
  color: #7F7F7F;
  margin-right: auto;
  font-size: 14px;
}

.modal__list_fullwindth {
  max-width: 380px;
}

.modal__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal__list li i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 12px;
}

.modal__subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: #2C3035;
}

.modal__subtitle span {
  color: #CB5B6E;
}

.modal__descr {
  padding: 10px;
  background: #EAF6EF;
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #0BC86D;
  margin-bottom: 10px;
}

.modal__descr a {
  color: #0BC86D;
  text-decoration: underline;
}

.modal__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.modal__no {
  width: 120px;
  height: 45px;
  border-radius: 6px;
  border: none;
  background: #5C606D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 24px;
  margin-right: 20px;
}

.modal__purchase {
  width: 190px;
  height: 60px;
  border-radius: 6px;
  border: none;
  background: #0BCB6E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  line-height: 24px;
}

.modal__purchase i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal__guarantee {
  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;
  margin-bottom: 15px;
  color: #7F7F7F;
  margin-right: auto;
  font-size: 14px;
}

.modal__guarantee i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 12px;
}

.modal .modal__anno {
  margin-top: 33px;
  margin-bottom: 15px;
  color: #7F7F7F;
  margin-right: auto;
  font-size: 14px;
  font-weight: 500;
}

.modal__list_anti {
  max-width: 300px;
}

.modal__prices {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 28px;
  color: #CB5B6E;
}

.modal__prices span {
  text-decoration: line-through;
  color: #2C3035;
  font-weight: 400;
  margin-right: 20px;
  font-size: 16px;
}
/*# sourceMappingURL=style.css.map */