*::-webkit-input-placeholder {
	color: #666;
	opacity: 1;
}
*:-moz-placeholder {
	color: #666;
	opacity: 1;
}
*::-moz-placeholder {
	color: #666;
	opacity: 1;
}
*:-ms-input-placeholder {
	color: #666;
	opacity: 1;
}

html {
  -webkit-text-size-adjust: 100%; 
  background-color: #eee;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

body {
	margin: 0 auto;
	font-size: 16px;
	font-family: 'CeraPro';
	max-width: 768px;
	background-color: #fff;
}

a, a:hover, a:focus, a:active {
	text-decoration: none;
	outline: none;
}

input {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.interview-main-header {
  width: 100%;
  padding: 30px 20px 80px;
  text-align: center;
  position: relative;
  background-image: url(../img/bg.jpg);
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.interview-main-header img { 
  width: 120px;
  height: 50px;
  display: block;
  margin: 0 auto 80px;
}

.interview-main-header span {
  display: block;
  font-family: 'CeraProBold';
  color: #fff;
  margin-bottom: 15px;
  font-size: 28px;
} 

.interview-main-header p {
  font-size: 14px;
  color: #fff;
  margin: 0;
}

.button {
  display: inline-block;
  line-height: 60px;
  text-align: center;
  color: #fff;
  background-color: #fcaebb;
  box-shadow: 0 5px 14px 0 rgba(255, 30, 30, 0.14);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-family: 'CeraProBold';
  font-size: 20px;
}

.button:hover {
  background-color: #f7a3b1;
}

.interview-main-header .start_btn {
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 220px;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  cursor: pointer;
}

.interview-main-footer {
  padding: 60px 10px 40px;
  text-align: center;
  position: relative;
}

.interview-main-footer p {
  font-size: 14px;
  color: #505050;
  margin: 0 0 20px;
}

.interview-main-footer a {
  width: 220px;
  display: inline-block;
  color: #fff;
  font-size: 12px;
  background-color: #505050;
  padding: 15px 10px;
  box-shadow: 0 5px 14px 0 rgba(53, 53, 53, 0.1);
}

.interview-success {
  display: table-cell;
  width: 100vw;
  height: 100vh;
  text-align: center;
  padding: 20px 10px 140px;
  background-image: url(../img/bg-success.jpg);
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  vertical-align: middle;
  position: relative;
}

.interview-success p {
  margin: 30px auto 0;
  width: 90%;
  max-width: 400px;
  color: #fff;
  font-size: 22px;
  font-family: 'CeraProBold';
}

.interview-success a {
  position: absolute;
  width: 280px;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.interview-thanks {
  display: table-cell;
  width: 100vw;
  height: 100vh;
  text-align: center;
  padding: 100px 10px;
  background-image: url(../img/bg-success.jpg);
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  vertical-align: middle;
  position: relative;
}

.interview-thanks p {
  margin: 0 auto;
  width: 90%;
  max-width: 400px;
  color: #fff;
  font-size: 22px;
  font-family: 'CeraProBold';
}

.interview {
  padding-bottom: 180px;
  position: relative;
  display: none;
}

.interview:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  content: '';
  background-color: #fff;
  display: block;
}

.interview-header {
  width: 100%;
  line-height: 90px;
  text-align: center;
  background-color: #fcaebb;
  color: #fff;
  font-size: 28px;
  font-family: 'CeraProBold';
  display: block;
  position: relative;
}

.interview-stars {
  text-align: center;
  margin: 25px 0 40px;
  position: relative;
}
.interview-stars div{
  display: inline-block;
  cursor: pointer;
}


.interview form {
  position: relative;
}

.interview-form-title {
  display: block;
  text-align: center;
  font-size: 18px;
  color: #505050;
  margin-bottom: 30px;
  font-family: 'CeraProBold';
}

.interview-form-line-label {
  display: block;  
}

.interview-form-line-label span {
  width: 100%;
  display: block;
  padding: 15px 40px;
  color: #505050;
  border-bottom: 1px solid #eee;
}

.interview-form-line-label:nth-child(2) span {
  border-top: 1px solid #eee;
}

.interview-form-line-label input {
  display: none;
}

.interview-form-line-label input:checked + span {
  background-color: #fcaebb;
  color: #fff;
}

.interview-form-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  padding: 10px 0 25px;
  z-index: 10;
  text-align: center;
}

.interview-form-fixed input {
  display: block;
  margin: 0 auto 20px;
  background-color: #ffffff;
  box-shadow: 0 5px 14px 0 rgba(255, 30, 30, 0.14);
  /*width: 280px;*/
  width: calc(100% - 40px);
  max-width: 728px;
  height: 60px;
  color: #555;
  padding: 0 20px;
  font-size: 14px;
  border: 0;
  font-family: 'CeraPro';
}

.interview-form-fixed button {
  border: none;
  /*width: 280px;*/
  width: calc(100% - 40px);
  max-width: 728px;
}

.interview-form-labels-block {
  width: 100%;
  overflow-x: scroll;
}

.interview-form-labels-block div {
  width: 950px;
  padding: 10px 0 10px 20px;
  overflow: hidden;
}

.interview-form-labels-block label {
  display: block;
  float: left;
  width: 120px;
  height: 120px;
  background-color: #ffffff;
  box-shadow: 0 4px 11.3px 0 rgba(255, 30, 30, 0.14);
  margin-right: 10px;
}

.interview-form-labels-block label input {
  display: none;
}

.interview-form-labels-block label span {
  display: block;
  width: 100%;
  height: 120px;
  padding: 73px 10px 10px;
  color: #505050;
  font-size: 12px;
  text-align: center;
  position: relative;
}

.interview-form-labels-block label span svg {
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  fill: #B7B7B7;
}

.interview-form-labels-block label input:checked + span svg {
  fill: #feadba;
}

.main-header {
  background-image: url(../img/main-bg.jpg);
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  padding: 23px 20px 45px;
  text-align: center;
  /*height: calc(100vh - 160px);
  min-height: 420px;*/
}

@media only screen and (min-height : 615px) {
  .main-header {
    min-height: 470px;
  }
}

.main-header-content {
  margin: 40px auto 0;
  padding: 30px 10px 25px;
  width: 100%;
  max-width: 300px;
  background-color: #fff;
}

.main-header-content span {
  color: #fcaebb;
  font-size: 22px;
  font-family: 'CeraProBold';
}

.main-header-content p {
  margin: 15px 0 30px;
  color: #505050;
  font-size: 12px;
}

.main-header-content div {
  text-align: center;
}

.main-header-content div a {
  display: inline-block;
  vertical-align: top;
  width: 80px;
  color: #505050;
  text-transform: uppercase;
  font-size: 10px;
  background-image: url(../img/phone.svg);
  background-position: center top;
  background-repeat: no-repeat;
  padding: 65px 0 0;
}

.main-header-content div a:nth-child(2) {
  background-image: url(../img/telegram.svg);
}

.main-header-content div a:nth-child(3) {
  background-image: url(../img/whatsapp.svg);
}

.main-footer a {
  display: block;
  line-height: 50px;
  border-top: 1px solid #eee;
  padding: 0 20px;
  color: #505050;
  font-size: 12px;
  position: relative;
}

.main-footer a img {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.sorry {
  display: table-cell;
  width: 100vw;
  height: 100vh;
  text-align: center;
  padding: 100px 20px 40px;
  background-image: url(../img/bg-success.jpg);
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  vertical-align: top;
  position: relative;
}

@media only screen and (max-width : 400px) {
  .sorry {
    padding: 30px 20px 40px;
  }
}

.sorry > span {
  display: block;
  margin: 30px 0 25px;
  color: #feadba;
  font-size: 28px;
  font-family: 'CeraProBold';
}

.sorry p {
  margin: 0 auto 40px;
  width: 100%;
  max-width: 300px;
  font-size: 14px;
  color: #fff;
}

.sorry p span {
  color: #feadba;
}

.sorry-fixed {
  /*position: absolute;
  bottom: 100px;
  left: 0;*/
  width: 100%;
  margin-top: 30px;
  color: #fff;
  font-size: 14px;
  text-align: left;
  padding: 0 20px;
}

.sorry-fixed span {
  float: right;
}

.way-header {
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  padding: 30px 0 110px;
  text-align: center;
  position: relative;
}

.way-header > a {
  display: block;
  margin: 50px auto 40px;
}

.way-header-content {
  color: #fff;
  font-size: 14px;
  padding: 0 10px;
}

.way-header-content span {
  display: block;
  font-size: 25px;
  font-family: 'CeraProBold';
  margin-top: 5px;
}

.way-menu {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.way-menu.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #353535;
  width: 100%;
  height: 50px;
}

.way-menu a {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  color: #fff;
  line-height: 50px;
  font-size: 14px;
}

.way-menu a:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.way-content {
  padding: 50px 0 0;
  text-align: center;
}

.way-content > span {
  font-size: 24px;
  color: #feadba;
  display: block;
  font-family: 'CeraProBold';
}

.way-content p {
  margin: 20px auto;
  width: 100%;
  padding: 0 20px;
  color: #505050;
  font-size: 14px;
  max-width: 400px;
}

.way-content img {
  width: 100%;
  display: block;
  margin: 20px auto;
  width: 100%;
  max-width: 400px;
}

.way-footer {
  background-color: #353535;
  line-height: 70px;
  font-size: 14px;
  color: #484848;
  text-align: center;
}

.before-header {
  background-image: url(../img/before-header-bg.jpg);
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  padding: 30px 10px 130px;
  text-align: center;
}

.before-menu {
  margin: 30px auto;
}

.before-menu a {
  display: inline-block;
  vertical-align: top;
  color: #fff;
  font-size: 14px;
  margin: 0 5px;
}

@media only screen and (max-width : 350px) {
  .before-menu a {
    font-size: 12px;
  }
}

.before-header span {
  font-size: 28px;
  color: #fff;
  font-family: 'CeraProBold';
}

.visit-info {
  background-color: #fff;
  box-shadow: 0 5px 14px 0 rgba(255, 30, 30, 0.14);
  width: calc(100% - 40px);
  max-width: 400px;
  margin: -100px auto 40px;
  position: relative;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.visit-info-header {
  color: #fcaebb;
  font-family: 'CeraProBold';
  font-size: 18px;
  padding: 28px 10px 26px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.visit-info-time {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.visit-info-name {
  width: 35%;
  float: left;
  padding: 20px 10px 20px 20px;
  color: #505050;
  font-size: 9px;
  letter-spacing: 1.2px;
}

.visit-info-time-value {
  width: 65%;
  float: left;
  padding: 20px 10px 20px 0;
  font-size: 15px;
  color: #505050;
}

.visit-info-service {
  overflow: hidden;
  padding: 10px 0 30px;
} 

.visit-info-service-value {
  width: 65%;
  float: left;
  padding-top: 20px;
}

.visit-info-service-value > div {
  margin-bottom: 20px;
  color: #505050;
  font-size: 15px;
  
}  

.visit-info-service-value > div span {
  display: block;
  color: #fcaebb;
  font-size: 12px;
}

.visit-info-master {
  margin-top: 10px;
}

.visit-info-master div {
  width: 30px;
  height: 30px;
  float: left;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  margin-right: 10px;
  margin-top: -1px;
}

.write-error {
  display: block;
  width: 280px;
  margin: 0 auto;
}

.tips {
  margin-top: 40px;
}

.tip {
  padding: 40px 20px;
  text-align: center;
}

.tip:first-child {
  background-color: #f1f1f1;
}

.tip span {
  color: #fcaebb;
  font-size: 20px;
  margin-bottom: 10px;
  font-family: 'CeraProBold';
  display: block;
}

.tip p {
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
  color: #505050;
  font-size: 14px;
}

.advantages > div:first-child {
  /*border-top: 1px solid #eee;*/
}

.advantages > div {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 20px 20px 20px 90px;
  position: relative;
  /*border-bottom: 1px solid #eee;*/
  position: relative;
}

.advantages > div:first-child:before {
  content: '';
  width: 100vw;
  height: 1px;
  background-color: #eee;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.advantages > div:after {
  content: '';
  width: 100vw;
  height: 1px;
  background-color: #eee;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.advantages > div > img {
  position: absolute;
  top: 23px;
  left: 30px;
}

.advantages > div p {
  margin: 0;
  font-size: 14px;
  color: #505050;
}

.advantage-payment {
  margin-top: 10px;
  vertical-align: middle;
}

.advantage-payment img {
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
}

.sliders {
  margin: 40px auto 20px;
}

.sliders-nav {
  width: 100%;
  font-size: 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.sliders-nav a {
  display: inline-block;
  width: 50%;
  text-align: center;
  line-height: 70px;
  color: #505050;
  font-size: 12px;
  font-family: 'CeraProBold';
}

.sliders-nav a.active {
  color: #fff;
  background-color: #feadba;
}

.sliders-content {
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.slider-item {
  padding: 0 5px;
}

.slider-item img {
  width: 280px;
}

.sliders > a {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
  position: relative;
  /*border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;*/
  line-height: 50px;
  font-size: 14px;
  color: #505050;
  font-family: 'CeraProBold';
  padding: 0 20px;
}

.sliders > a:before {
  content: '';
  width: 100vw;
  height: 1px;
  background-color: #eee;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.sliders > a:after {
  display: block;
  content: 'pdf';
  text-transform: uppercase;
  color: #fff;
  line-height: 20px;
  padding: 0 10px;
  color: #fff;
  font-size: 12px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background-color: #fcaebb;
}

.privilege {
  margin-bottom: 40px;
  width: 100%;
  overflow-x: scroll;
}

.privilege-content {
  padding: 20px 0 20px 20px;
  width: 1100px;
  overflow: hidden;
}

.privilege-content div {
  width: 250px;
  height: 270px;
  background-color: #fff;
  float: left;
  margin-right: 20px;
  box-shadow: 0 5px 14px 0 rgba(255, 30, 30, 0.14);
  text-align: center;
  padding: 20px 10px;
}

.privilege-content div.privilege-content-img {
  width: 100%;
  height: 100px;
  position: relative;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  padding: 0;
  margin: 0 0 15px;
}

.privilege-content div img {
  display: block;
  max-height: 100px;
  max-width: 144px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.privilege-content div span {
  display: block;
  color: #fcaebb;
  font-size: 20px;
  margin-bottom: 5px;
  font-family: 'CeraProBold';
}

.privilege-content div p {
  color: #505050;
  margin: 0 auto;
  font-size: 14px;
}

.price {
  background-color: #fafafa;
  padding: 40px 0 30px;
}

.price > span {
  display: block;
  color: #fcaebb;
  font-size: 22px;
  text-align: center;
  font-family: 'CeraProBold';
}

.price-items {
  margin-top: 20px;
}

.price-item {
  width: calc(100% - 40px);
  max-width: 400px;
  background-color: #fff;
  box-shadow: 0 5px 14px 0 rgba(255, 30, 30, 0.14);
  margin: 0 auto 10px;
}

.price-item > span {
  line-height: 60px;
  color: #fcaebb;
  font-size: 18px;
  padding: 0 40px 0 20px;
  font-family: 'CeraProBold';
  position: relative;
  display: block;
}

.price-item > span img {
  position: absolute;
  top: 52%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.price-item > span.active img {
  -webkit-transform: translate(0, -50%) scale(1, -1);
  -moz-transform: translate(0, -50%) scale(1, -1);
  -ms-transform: translate(0, -50%) scale(1, -1);
  -o-transform: translate(0, -50%) scale(1, -1);
  transform: translate(0, -50%) scale(1, -1);
}

.price-item-info {
  border-top: 1px solid #eee;
  padding: 30px 20px;
  color: #505050;
  font-size: 14px;
}

.price-item-info div span {
  float: right;
}

.new {
  background-color: #c9d8ea;
  padding: 40px 0 85px;
}

.new > span {
  display: block;
  color: #fff;
  font-size: 22px;
  font-family: 'CeraProBold';
  text-align: center;
}

.new-slider {
  margin-top: 20px;
}

.new-slider-item {
  width: 290px;
  padding: 0 5px;
  color: #505050;
  font-size: 14px;
}

.new-slider-item img {
  width: 100%;
  margin-bottom: 20px;
}

.new-slider-item p {
  margin: 0;
  color: #505050;
}

.new-slider-item p span {
  float: right;
  margin-left: 40px;
  color: #505050;
}

.main-header-content.before-signup {
  position: relative;
  margin-top: 0px;
  box-shadow: 0 10px 14px 0 rgba(0, 0, 0, 0.25);
  text-align: center;
  width: calc(100% - 40px);
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
} 

.contacts {
  background-color: #353535;
  padding: 280px 10px 40px;
  position: relative;
}

.contacts-content {
  text-align: center;
}

.contacts-content > span {
  display: block;
  color: #fcaebb;
  font-size: 22px;
  margin-bottom: 10px;
  font-family: 'CeraProBold';
}

.contacts-content p {
  margin: 0 auto 15px;
  color: #fff;
}

.contacts-content div {
  margin: 15px 0 30px;
  color: #fff;
  font-size: 12px;
}

.contacts-content div span {
  font-size: 14px;
  display: block;
}

.contacts-content a {
  width: 280px;
}

.map {
  width: 100%;
  height: auto;
}

.hidden {
  display: none;
}

.popup {
  margin: auto;
  position: relative;
  width: 100%;
  max-width: 300px;
  text-align: center;
}

.popup .main-header-content span {
  margin-bottom: 30px;
  display: block;
}

.interview-main {
  position: relative;  
}

.interview-main:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  content: '';
  background-color: #fff;
  display: block;
}

#video {
  display: none;
}

#interview_form_1, #interview_form_2, #interview_form_3 {
	display: none;
}
#interview_star1_full, #interview_star2_full, #interview_star3_full, #interview_star4_full, #interview_star5_full {
	display: none;
}
.interview-success {
	display: none;
}