/*main*/
.registration-content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  overflow: hidden;
  width: 100%;
  color: #fff;
  background-color: #454546;
  background-repeat: no-repeat;
  background-image: url("../images/bg-registration-light.jpg");
  background-position: left top;
  background-size: auto 100%;
}
/*article*/
.content-registration {
  width: 100%;
  padding-top: 70px;
  padding-bottom: 42px;
  margin-right: 533px;
  background-color: #454546;
  -webkit-box-shadow: 0 0 5px #000;
  box-shadow: 0 0 5px #000;
}
@media (max-width: 991px) {
  .content-registration {
    margin-right: 0;
  }
}
.content-registration__title {
  min-height: 60px;
  padding-left: 144px;
  margin-top: 0;
  margin-bottom: 54px;
  font-family: 'helveticaneuecyrbold';
  font-weight: normal;
  font-size: 32px;
  line-height: 32px;
  color: #fff;
  text-transform: uppercase;
  background-repeat: no-repeat;
  background-image: url("../images/bg-new-user-registration.png");
  background-position: 62px 0;
  background-size: 66px 61px;
}
@media (max-width: 479px) {
  .content-registration__title {
    padding-left: 90px;
    background-position: 15px 0;
  }
}
.registration-form > .btn {
  margin-left: 107px;
}
@media (max-width: 479px) {
  .registration-form > .btn {
    margin-left: 62px;
  }
}
.registration-form__inner {
  height: 550px;
  overflow-x: hidden;
  padding-right: 35px;
  margin-right: 54px;
  margin-bottom: 34px;
}
.registration-form__inner::-webkit-scrollbar {
  width: 4px;
  background-color: rgba(0,0,0,0.5);
  border-left: none;
  border-right: none;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.registration-form__inner::-webkit-scrollbar-button {
  background-color: none;
  width: 4px;
  border-left: none;
  border-right: none;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.registration-form__inner::-webkit-scrollbar-thumb {
  background-color: #4acdcd;
  width: 4px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  cursor: pointer;
}
.registration-form__inner::-webkit-scrollbar-thumb:hover {
  background-color: #178a87;
}
@media (max-width: 479px) {
  .registration-form__inner {
    height: auto;
    overflow-x: visible;
    margin-right: 0;
    padding-right: 20px;
  }
}
/*fieldset*/
.registration-form__step {
  bottom: 0;
  padding-bottom: 47px;
  padding-left: 109px;
  margin-bottom: 27px;
}
@media (max-width: 479px) {
  .registration-form__step {
    padding-left: 60px;
  }
}
.registration-form__step:not(:last-of-type) {
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.login-form__step {
  padding-left: 80px;
}
@media (max-width: 479px) {
  .login-form__step {
    padding-left: 40px;
  }
}
.registration-form__step--has-error .registration-form__legend::before {
  color: #ef0f54;
  border-color: #ef0f54;
}
.registration-form__error-text {
  display: none;
  color: #ef0f54;
}
/*legend*/
.registration-form__legend {
  position: relative;
  border: 0;
  font-family: 'helveticaneuecyrroman';
  font-weight: normal;
  font-size: 18px;
  line-height: 36px;
  color: #fff;
}
.registration-form__legend:not(.login-form__legend)::before {
  position: absolute;
  left: -47px;
  top: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  padding-left: 9px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid #4acdcd;
  margin-top: auto;
  margin-bottom: auto;
  font-family: 'helveticaneuecyrroman';
  font-weight: normal;
  font-size: 14px;
  line-height: 27px;
  color: #4acdcd;
  content: attr(data-step-number);
}
.registration-form__label {
  width: 200px;
  padding-right: 27px;
  margin-bottom: 0;
  font-family: 'helveticaneuecyrlight';
  font-weight: normal;
  font-size: 16px;
  line-height: 36px;
  color: #4acdcd;
}
.registration-form__label:not(:first-of-type) {
  margin-top: 3px;
}
.registration-form__label--long {
  padding-right: 25px;
}
.registration-form__label--checkbox {
  width: 100%;
  margin-top: 15px;
  position: relative;
  padding-left: 31px;
  line-height: 29px;
  cursor: pointer;
}
.registration-form__label--checkbox:before,
.registration-form__label--checkbox:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
}
.registration-form__label--checkbox:before {
  -webkit-border-radius: 0;
  border-radius: 0;
  background-color: #4acdcd;
}
.registration-form__label--checkbox:after {
  opacity: 0;
  background-repeat: no-repeat;
  background-image: url("../images/bg-ok-dark.svg");
  background-position: 4px 5px;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.registration-form__step input[type=checkbox] {
  display: none;
}
.registration-form__step input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.registration-form__input,
.registration-form__select {
  margin-bottom: 11px;
}
.registration-form__captcha-image {
  margin-bottom: 11px;
}
.registration-form__link {
  color: #fff;
}
.registration-form__link transition,
.registration-form__link:hover,
.registration-form__link:focus,
.registration-form__link:active {
  color: #4acdcd;
}
.registration-form__choose-package {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 533px;
  padding-top: 70px;
  padding-bottom: 30px;
  margin: auto;
  color: #fff;
  background-color: #3d3a4b;
  -webkit-box-shadow: 0 0 30px rgba(0,0,0,0.5);
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}
@media (max-width: 991px) {
  .registration-form__choose-package {
    position: static;
    width: 100%;
    margin-bottom: 20px;
  }
}
.package-choose__title {
  width: 400px;
  min-height: 72px;
  padding-left: 152px;
  margin-top: 0;
  margin-bottom: 26px;
  font-family: 'helveticaneuecyrbold';
  font-weight: normal;
  font-size: 32px;
  line-height: 36px;
  color: #4acdcd;
  text-transform: uppercase;
  background-repeat: no-repeat;
  background-image: url("../images/bg-services-packages.svg");
  background-position: 59px 0;
  background-size: 63px 63px;
}
@media (max-width: 991px) {
  .package-choose__title {
    width: 100%;
  }
}
.package-choose__description {
  padding-left: 61px;
  padding-right: 20px;
  font-family: 'helveticaneuecyrlight';
  font-weight: normal;
  font-size: 15px;
  line-height: 24px;
  color: #fff;
}
.package-choose__description > p {
  margin-bottom: 30px;
}
/*ul*/
.package-choose__packages {
  width: 100%;
  padding-left: 61px;
  padding-right: 54px;
  margin: 0;
  list-style-type: none;
}
/*li*/
.package-choose__package:not(:last-child) {
  margin-bottom: 15px;
}
.package-choose__package > input[type=radio]:checked + .service-package {
  padding-left: 27px;
  padding-top: 17px;
  padding-bottom: 21px;
  border: 5px solid #78767f;
  outline: none;
}
/*label*/
.service-package {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 100%;
  min-width: 260px;
  min-height: 180px;
  padding-left: 31px;
  padding-right: 20px;
  padding-top: 21px;
  padding-bottom: 25px;
  border: 1px dotted #78767f;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .service-package {
    width: 418px;
  }
}
.service-package::after {
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: '';
}
.service-package:hover,
.service-package:focus {
  padding-left: 27px;
  padding-top: 17px;
  padding-bottom: 21px;
  border: 5px solid #78767f;
  outline: none;
}
.service-package:active:hover,
.service-package:active:focus {
  border: 5px solid #605e66;
}
.service-package__title {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: 'helveticaneuecyrbold';
  font-weight: normal;
  font-size: 22px;
  line-height: 1.2;
  color: #4acdcd;
  text-transform: uppercase;
}
/*ul*/
.service-package__features {
  display: inline-block;
  vertical-align: top;
  max-width: 260px;
  padding: 0;
  margin: 0;
  margin-right: 15px;
  list-style-type: none;
}
.service-package__price {
  display: inline-block;
  vertical-align: top;
  min-width: 79px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 6px;
  padding-bottom: 6px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-family: 'helveticaneuecyrroman';
  font-weight: normal;
  font-size: 12px;
  line-height: 1.2;
  color: #1a2f2f;
  text-align: center;
  background-color: #4acdcd;
}
/*b*/
.service-package__price--value {
  display: block;
  margin-bottom: -5px;
  font-family: 'helveticaneuecyrbold';
  font-weight: normal;
  font-size: 28px;
  line-height: 1.2;
}
.custom-label--reg::before {
  top: 15px;
}
@media (max-width: 767px) {
  .custom-label--reg::before {
    top: 0;
  }
}
.custom-label--reg::after {
  line-height: 36px;
}

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