html.remodal-is-locked {
  overflow: hidden;

  -ms-touch-action: none;
  touch-action: none;
}
.remodal,
[data-remodal-id] {
  display: none;
}
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;

  display: none;
}
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}
.remodal-wrapper:after {
  display: inline-block;

  height: 100%;
  margin-left: -0.05em;

  content: "";
}
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.remodal {
  position: relative;

  outline: none;

  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}
.remodal-overlay {
  background: rgba(33, 32, 32, 0.7);
}
.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}
.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}
.remodal-wrapper {
  padding: 10px 10px 0;
}
.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
}
.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}
.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  position: absolute;
  top: 11px;
  right: 12px;
  width: 12px;
  height: 12px;
  text-align: center;
  display: block;
  overflow: visible;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: 0;
  outline: 0;
  background: transparent;
  transition: 0.3s ease all;
  z-index: 2;
}
.remodal-close svg {
  width: 100%;
  height: 100%;
}
.remodal-close use {
  fill: #C4C4C4;
  transition: 0.3s ease all;
}
.remodal-close:hover use {
  fill: #FF473A;
  transition: 0.3s ease all;
}
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;

  border: 0;
  outline: 0;
}
.remodal-confirm {
  color: #fff;
  background: #81c784;
}
.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}
.remodal-cancel {
  color: #fff;
  background: #e57373;
}
.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;

  border: 0;
}
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}



@media only screen and (min-width: 320px) {
  .remodal {
    max-width: 700px;
    text-align: left;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    text-align: center;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%), #FFFFFF;
    box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.25), 2px 2px 4px rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    padding: 34px 18px 32px 18px;
  }
  .remodal-login {
    max-width: 689px;
  }
  .remodal-info {
    max-width: 650px;
  }







}
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}
.lt-ie9 .remodal {
  width: 700px;
}



.remodal-title {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
  color: #000000;
  /*font-family: 'Open Sans', sans-serif;*/
  text-transform: uppercase;
  margin-bottom: 32px;
}
.form-login {
  max-width: 300px;
  margin: 0 auto;
}
.form-login_thumb {
  margin-bottom: 34px;
  font-size: 0;
}
.form-login_thumb img {

}
.form-login_item {
  margin-bottom: 22px;
}
.input-rel {
  position: relative;
}
.input-text {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: -0.02em;
  color: #000000;
  text-align: left;
  margin-bottom: 9px;
}
.input {
  display: block;
  width: 100%;
  height: 48px;
  box-sizing: border-box;
  border: 1px solid #999999;
  border-radius: 2px;
  line-height: 46px;
  font-size: 14px;
  color: #000000;
  box-sizing: border-box;
  padding: 0 45px 0 12px;
  caret-color: #FF473A;
}
textarea.input {
    height: auto;
    padding: 8px 45px 8px 12px;
    resize: vertical;
    line-height: 1.5;
}
::-webkit-input-placeholder {color:#999999;}
::-moz-placeholder          {color:#999999;}
:-moz-placeholder           {color:#999999;}
:-ms-input-placeholder      {color:#999999;}
.input.input-area {
  height: 72px;
  line-height: 1;
  padding: 12px;
  resize: none;
  font-family: inherit;
}
.forgot-password {
  display: inline-block;
  vertical-align: top;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  text-decoration-line: underline;
  color: #FF473A;
  margin-top: 3px;
  background: transparent;
}
.forgot-password:hover {
  text-decoration: none;
}
.button {
  display: block;
  width: 100%;
  height: 48px;
  background: #FF473A;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.24);
  border-radius: 2px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: 0.3s ease all;
}
.button:hover {
  background: #FF7A70;
  transition: 0.3s ease all;
}
.form-login_text {
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  color: #000000;
  margin-bottom: 13px;
}
.form-login_register {
  text-align: center;
}
.form-login_register button {
  display: inline-block;
  vertical-align: top;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: underline;
  color: #FF473A;
  background: transparent;
}
.form-login_register button:hover {
  text-decoration: none;
}
.input-error .input-rel:before {
  display: block;
  content: "";
  width: 23px;
  height: 20px;
  background: url(../images/icons_error.svg) no-repeat;
  background-size: 23px 20px;
  position: absolute;
  right: 12px;
  top: 13px;
}
.input-error .input, .input-error .selectric {
  border-color: #FF473A;
  box-shadow: 0 0 0 1px #FF473A;
}
.input-error_text {
  font-size: 10px;
  line-height: 1.2;
  color: #FF473A;
  margin-top: 8px;
  text-align: left;
}
.input-properly .input-rel:before {
  display: block;
  content: "";
  width: 24px;
  height: 19px;
  background: url(../images/icons-properly.svg) no-repeat;
  background-size: 24px 19px;
  position: absolute;
  right: 12px;
  top: 14px;
}
.input-properly .input {
  border-color: #3EC28F;
  box-shadow: 0 0 0 1px #3EC28F;
}
.button-eye {
  display: block;
  width: 24px;
  height: 24px;
  background: transparent;
  font-size: 0;
  position: absolute;
  top: 12px;
  right: 12px;
}
.remodal-text {
  max-width: 470px;
  margin: 0 auto 30px auto;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #000000;
}
.remodal-text a {
  color: #FF473A;
  text-decoration: underline;
}
.remodal-text a:hover {
  text-decoration: none;
}
.button.button-300 {
  width: 300px;
  margin: 0 auto;
}
.form-registration {
  max-width: 624px;
  margin: 0 auto;
}
.form-registration_item {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  box-sizing: border-box;
  padding-bottom: 24px;
  font-size: initial;
}
.form-registration_item:nth-child(odd) {
  padding-right: 12px;
}
.form-registration_item:nth-child(even) {
  padding-left: 12px;
}
.title-role {
  /*font-family: 'Open Sans', sans-serif;*/
  font-weight: bold;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000;
  text-align: left;
  margin-bottom: 24px;
}
.box-role {
  margin-bottom: 15px;
}
.box-role li {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  box-sizing: border-box;
  padding-bottom: 16px;
}
.box-role li:nth-child(odd) {
  padding-right: 12px;
}
.box-role li:nth-child(even) {
  padding-left: 12px;
}
.box-role_item {

}
.box-role_item input[type="radio"] {
  display: none;
}
.box-role_label {
  display: block;
  width: 100%;
  height: 128px;
  border: 1px solid #999999;
  box-sizing: border-box;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.box-role_label h4 {
  text-align: center;
  /*font-family: 'Open Sans', sans-serif;*/
  font-weight: bold;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000;
  box-sizing: border-box;
  padding: 16px 10px 0 27px;
  position: relative;
  z-index: 2;
}
.box-role_icons {
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  margin-top: -16px;
  right: 30px;
}
.box-role_icons circle {
  stroke: #999999;
}
.box-role_icons path {
  fill: #999999;
}
.box-role_thumb {
  position: absolute;
  left: 12px;
  bottom: -1px;
  font-size: 0;
}
.box-role li:nth-child(2) .box-role_thumb {
  left: 0;
}
.box-role_item input[type="radio"] + label:hover,
.box-role_item input[type="radio"]:checked + label {
  border-color: #FF473A;
  box-shadow: 0 0 0 1px #FF473A;
}
.box-role_item input[type="radio"] + label:hover .box-role_icons circle,
.box-role_item input[type="radio"]:checked + label .box-role_icons circle {
  stroke: #FF473A;
}
.box-role_item input[type="radio"] + label:hover .box-role_icons path,
.box-role_item input[type="radio"]:checked + label .box-role_icons path {
  fill: #FF473A;
}
.registration-text {
  max-width: 450px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: -0.02em;
  color: #000000;
  margin-top: 32px;
}
.registration-text a {
  color: #FF473A;
}
.registration-text a:hover {
  text-decoration: none;
}
.registration-back {
  font-size: 14px;
  text-align: center;
  color: #000000;
  margin-top: 28px;
}
.registration-back button {
  font-weight: 500;
  text-decoration: underline;
  color: #FF473A;
  background: transparent;
  margin-left: 6px;
}
.registration-back button:hover {
  text-decoration: none;
}
.select-price {
  width: 100%;
  text-align: left;
}
.form-answer {
  max-width: 585px;
  margin: 0 auto;
}
.form-answer_item {
  margin-bottom: 16px;
}
.form-answer_item-2 {
  margin-bottom: 25px;
}
.g-recaptcha {
  display: inline-block;
  vertical-align: top;
}
.remodal-text.remodal-text_300 {
  max-width: 300px;
}



















@media screen and (max-width: 1199px) {

}
@media screen and (max-width: 767px) {
  .remodal-wrapper {
    padding: 10px 16px 0;
  }
  .remodal {
   padding: 20px 18px 20px 18px;
  }
  .remodal-title {
    margin-bottom: 17px;
  }
  .form-login_thumb {
    max-width: 195px;
    margin: 0 auto 18px auto;
  }
  .form-login_item {
    margin-bottom: 19px;
  }
  .form-login_text {
    margin-bottom: 8px;
  }
  .remodal-text {
    margin: 0 auto 18px auto;
  }


}
@media screen and (max-width: 639px) {
  .box-role li,
  .form-registration_item {
    width: 100%;
  }
  .box-role li:nth-child(odd),
  .form-registration_item:nth-child(odd) {
    padding-right: 0;
  }
  .box-role li:nth-child(even),
  .form-registration_item:nth-child(even) {
    padding-left: 0;
  }
  .registration-text {
    margin-top: 15px;
  }
  .registration-back {
    margin-top: 15px;
  }


}

@media screen and (max-width: 479px) {

}
@media screen and (max-width: 374px) {
  .button.button-300 {
    width: 100%;
  }
  #recaptchaContainer {
    -ms-transform: scale(0.815);
    -webkit-transform: scale(0.815);
    -moz-transform: scale(0.815);
    -o-transform: scale(0.815);
    transform: scale(0.815);
    -ms-transform-origin: left top;
    -webkit-transform-origin: left top;
    -moz-transform-origin: left top;
    -o-transform-origin: left top;
    transform-origin: left top;
  }
  .form-answer_item-2 {
    margin-bottom: 0;
  }



}
