@charset "UTF-8";

::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Roboto Condensed', sans-serif;

  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

button {
  border: none;
}

body {
  position: relative;
}

.space {
  width: 100%;
  position: relative;
  height: 80px;
}

.order {
  position: relative;
  width: 100%;
  max-width: 576px;
  background: #000 url("https://speedmouse.ru/index/img/4.jpg");
  background-size: cover;
  margin: 0 auto 0 auto;
  min-height: 100vh;
  padding: 0;
}

.order--hidden {
  display: none;
}

.order__step {
  position: relative;
  height: 100vh;
  -webkit-transition-duration: 0.7s;
  transition-duration: 0.7s;
  overflow: hidden;
}

.order__step--hide {
  display: none;
}

.order__top {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  z-index: 99;
  padding: 20px 0 0 0;
}

.order__top--2 {
  height: 80px;
}

.order__top--3 {
  height: 140px;
}

.blur {
  filter: blur(5px);
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}

.not-records {
  color: white;
  text-align: center;
  font-size: 26px;
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
}

.order__mid {
  position: relative;
  overflow-y: scroll;
  width: 100%;
  height: calc(100vh - 140px);
  padding: 0px;
}

.order__mid--2 {
  height: calc(100vh - 80px);
}

.order__mid--3 {
  height: calc(100vh - 140px);
}

.order__back {
  width: 60px;
  height: 60px;
  position: absolute;
  left: 0px;
  top: 0px;
  background: url("https://speedmouse.ru/index/img/back.png") no-repeat;
  background-size: 26px 26px;
  background-position: 50% 50%;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  z-index: 199;
  cursor: pointer;
}

.order__back:active {
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}

.order__head {
  position: relative;
  margin: 0 auto 20px auto;
  font-size: 18px;
  display: block;
  color: #fff;
  text-align: center;
}

.order__separator {
  width: 50%;
  height: 1px;
  position: relative;
  background: #fff;
  margin: 10px auto 10px auto;

  overflow-x: visible;
}

.icon {
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.icon.icon-loading {
  animation: 1s linear 0s normal none infinite running rot;
  -webkit-animation: 1s linear 0s normal none infinite running rot;
}

.icon.icon-logout {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0px;
  top: 0px;
  background: url(../icons/logout-white.svg) no-repeat;
  background-size: 32px 32px;
  background-position: 50% 50%;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  z-index: 199;
}

.icon:active {
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}

.icon-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes rot {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rot {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 576px) {
  .order__separator {
    width: 60%;
  }
}

.order__separator::after {
  content: "";
  display: block;
  position: absolute;
  top: -19px;
  left: -38px;
  background: url("https://speedmouse.ru/index/img/razor.png");
  background-size: cover;
  width: 38px;
  height: 38px;
}

@media (min-width: 576px) {
  .order__separator::after {
    width: 46px;
    height: 46px;
    top: -23px;
    left: -46px;
  }
}

.order__separator::before {
  content: "";
  display: block;
  position: absolute;
  top: -19px;
  right: -38px;
  background: url("https://speedmouse.ru/index/img/razor.png");
  background-size: cover;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  width: 38px;
  height: 38px;
}

@media (min-width: 576px) {
  .order__separator::before {
    width: 46px;
    height: 46px;
    top: -23px;
    right: -46px;
  }
}

.order__where {
  position: relative;
  margin: 15px auto;
  color: #fff;
  font-size: 20px;
  text-align: center;
}

@media (min-width: 576px) {
  .order__where {
    font-size: 150%;
  }
}

.order__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 20px auto;
  padding: 10px 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.order__wrap--hide {
  display: none;
}

.order__next {
  position: fixed;
  bottom: 115px;
  width: 100%;
  max-width: 576px;
  margin: 0;
  height: 100px;
  background: #00000066;
  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;
}

.order__btn {
  cursor: pointer;
  background: #CCA454;
  color: #111;
  width: 100%;
  max-width: 300px;
  height: 70px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  -webkit-box-shadow: 0 2px 0 #ff9900;
  box-shadow: 0 2px 0 #ff9900;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  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;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0 50px;
  position: relative;
}

.order__btn:active {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.order__btn::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 23px;
  width: 24px;
  height: 24px;
  background: url("https://speedmouse.ru/index/img/arrow.png");
  background-size: cover;
}

.place__radio {
  display: none;
}

.place__radio:checked+.place__card>.place__img {
  border: 5px solid #CCA454;
}

.place__radio:checked+.place__card>.place__img::after {
  content: "";
  position: absolute;
  left: 88%;
  top: 0px;
  background: url("https://.speedmouse.ru/index/img/sign.png");
  width: 24px;
  height: 24px;
  background-size: cover;
}

.place__card {
  width: 160px;
  position: relative;
  margin: 20px 10px;
}

.place__img {
  position: relative;
  width: 130px;
  height: 130px;
  background: #000 url("https://.speedmouse.ru/index/img/place.jpg");
  background-size: cover;
  margin: 10px auto;
  border-radius: 100px;
  border: 5px solid #eee;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.place__title {
  color: #fff;
  text-align: center;
  margin: 5px auto;
}

.place__time {
  color: #777;
  text-align: center;
}

.switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 400px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  margin: 30px auto 0 auto;
}

.switch__radio {
  display: none;
}

.switch__radio:checked+.switch__label {
  color: #fff;
  border-bottom: 4px solid #CCA454;
}

.switch__label {
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  text-transform: uppercase;
  color: #aaa;
  text-align: center;
  position: relative;
  width: 50%;
  padding: 0 0 10px 0;
  border-bottom: 4px solid transparent;
}


.show {
  display: block !important;
}

.error {
  border-bottom: 1px solid #CCA454 !important;
}

#person,
#servs {
  display: none;
}


.servs {
  position: relative;
  width: 100%;
  margin: 20px 0;
  min-height: 30vh;
  display: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.servs__header {
  font-size: 18px;
  text-align: center;
  margin: 70px auto 20px auto;
  text-transform: uppercase;
  color: #CCA454;
  font-weight: 600;
}
.servs__cat-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  padding: 10px;
  width: 100%;
  color: #CCA454;
  margin: 0 auto;
  text-align: center;
  font-weight: 600;
}
.servs__check {
  display: none;
}

.modal {
  position: absolute;
  top: -110px;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px 40px;
  border-radius: 30px;
  background: #CCA454;
  max-width: 375px;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  z-index: 9999;
  opacity: 0;
}

.modal .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  height: 100%;
}


.modal .header {
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.modal .text {
  text-align: center;
  height: 100%;
}

.modal.show {
  top: 30px;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  opacity: 1;
}

.servs__check:checked+.servs__label {
  background: #CCA454;
}

.servs__check:checked+.servs__label>.servs__title {
  color: #111;
}

.servs__check:checked+.servs__label>.servs__price {
  color: #667;
}

.servs__label {
  position: relative;
  cursor: pointer;
  background: #00000088;
  width: 31%;
  min-width: 100px;
  min-height: 75px;
  max-width: 170px;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 6px 4px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.servs__label:active {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.servs__title {
  position: relative;
  line-height: 1.2;
  color: #fff;
  font-size: 18px;
  text-align: center;
  margin: 0 0 6px 0;
}

.servs__price {
  position: relative;
  font-size: 17px;
  color: #aaa;
  text-align: center;
}

.person {
  position: relative;
  width: 100%;
  margin: 70px 0 20px 0;
  display: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.person--show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.servs--show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.person__radio {
  display: none;
}

.person__radio:checked+.person__label>.person__img {
  border: 4px solid #CCA454;
}

.person__radio:checked+.person__label--any {
  border: 4px solid #CCA454;
}

.person__label {
  cursor: pointer;
  position: relative;
  background: #00000088;
  width: 31%;
  min-width: 140px;
  max-width: 140px;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 4px 4px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.person__label--any {
  position: relative;
  width: 100%;
  max-width: 576px;
  height: 90px;
  padding: 5px;
}

.person__label:active {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.person__img {
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 100px;
  margin: 10px auto;
  border: 3px solid #eee;
}

.person__name {
  position: relative;
  line-height: 1.2;
  color: #fff;
  font-size: 17px;
  text-align: center;
  margin: 0 0 6px 0;
}

.person__prof {
  position: relative;
  font-size: 16px;
  color: #aaa;
  text-align: center;
}

.city {
  position: relative;
}

.city__current {
  position: relative;
  margin: 0 auto 14px auto;
  font-size: 140%;
  display: block;
  color: #fff;
  text-align: center;
  padding: 0 0 0 20px;
}

.city__current::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("https://speedmouse.ru/index/img/map.png");
  background-size: cover;
  position: absolute;
  margin: 1px 0 0 -25px;
}

.city__list {
  background: #eee;
  position: absolute;
  width: 250px;
  left: 50%;
  margin: 0 0 0 -125px;
  z-index: 199;
  max-height: 300px;
  padding: 3px;
  -webkit-box-shadow: 0 6px 15px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 6px 15px 0 rgba(0, 0, 0, 0.2);
  display: none;
}

.city__radio {
  display: none;
}

.city__radio:checked+.city__li::before {
  content: "✔";
  font-size: 24px;
  position: absolute;
  left: 6px;
  line-height: 20px;
  color: #CCA454;
}

.city__li {
  display: block;
  padding: 5px 0 5px 25px;
  margin: 1px 0;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.city__li--top {
  border-top: 1px solid #ccc;
}

.date {
  position: relative;
  display: none;
}

.date--show {
  display: block;
}

.date__header {
  font-size: 18px;
  text-align: center;
  margin: 50px auto 20px auto;
  text-transform: uppercase;
  color: #fff;
}

.date__radio {
  display: none;
}

.date__radio:checked+.date__hours {
  background: #CCA454;
  color: #111
}

.date__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*min-height: 30vh;*/
}

.date__hours {
  cursor: pointer;
  position: relative;
  background: #00000088;
  width: 19%;
  height: 40px;
  min-width: 40px;
  max-width: 70px;
  padding: 5px 5px 5px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 4px 4px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  color: #fff;
  font-size: 18px;
}

.date__hours:active {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.next {
  position: absolute;
  width: 100%;
  height: 80px;
  background: #00000066;
  bottom: 0;
  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;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transform: translateY(200px);
  transform: translateY(200px);
}

.next--show {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.next__btn {
  cursor: pointer;
  background: #CCA454;
  color: #111;
  width: 100%;
  max-width: 200px;
  height: 46px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  -webkit-box-shadow: 0 2px 0 #ff9900;
  box-shadow: 0 2px 0 #ff9900;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  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;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0 20px;
  position: relative;
}

.next__btn:active {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.form {
  position: relative;
  display: none;
  background: #00000066;
  padding: 20px 10px;
}

.form--show {
  display: block;
}

.form__header {
  font-size: 18px;
  text-align: center;
  margin: 70px auto 20px auto;
  text-transform: uppercase;
  color: #fff;
}

.form__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #999;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 12px 0;
}

.form__title {
  color: #bbb;
  text-transform: uppercase;
  font-size: 15px;
  width: 29%;
  position: relative;
}

.form__text {
  width: 65%;
  position: relative;
  font-size: 17px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form__comment {
  width: 65%;
  height: 18px;
  position: relative;
  font-size: 17px;
  color: #fff;
  background: transparent;
  border: none;
  outline: none;
  resize: none;
}

.form__input {
  width: 65%;
  position: relative;
  font-size: 17px;
  color: #fff;
  background: transparent;
  border: none;
  outline: none;
}

.form__check {
  display: none;
}

.form__check:checked+.form__remind {
  background: #CCA454;
  border: 1px solid #CCA454;
  text-decoration: none;
  color: #111;
  border-radius: 50px;
}

.form__wrap {
  width: 65%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.form__remind {
  color: #999;
  font-size: 16px;
  text-transform: uppercase;
  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;
  width: 47%;
  padding: 6px 3px;
  border: 1px solid #999;
  border-radius: 4px;
  text-decoration: line-through;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  cursor: pointer;
  border-radius: 50px;
}

.form__submit {
  cursor: pointer;
  display: block;
  margin: 70px auto 20px auto;
  border-radius: 50px;
  width: 100%;
  max-width: 260px;
  height: 52px;
  background: #CCA454;
  color: #111;
  font-size: 18px;
  text-transform: uppercase;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: none;
  outline: none;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.form__submit:active {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.account {
  position: relative;
  height: 100vh;
  -webkit-transition-duration: 0.7s;
  transition-duration: 0.7s;
  overflow: hidden;
}

.account--hide {
  display: none;
}

.account__icon {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0px;
  top: 0px;
  background: url("https://speedmouse.ru/index/img/lk.png") no-repeat;
  background-size: 32px 32px;
  background-position: 50% 50%;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  z-index: 199;
  cursor: pointer;
}

.account__icon:active {
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}

.account__card {
  position: relative;
  margin: 10px auto;
  padding: 10px;
  background: #00000066;
}

.account__card--hide {
  display: none;
}

.account__head {
  color: #fff;
  font-size: 18px;
  padding: 12px 0;
  border-bottom: 1px solid #999;
}

.login-form {
  position: absolute;
  z-index: 9999;
  width: 100%;
  max-width: 576px;
  top: 50%;
  padding: 50px;
  transform: translateY(-50%);
}

.login-form .title {
  color: white;
  text-align: center;
  margin-bottom: 30px;
}

.login-form .next__btn {
  margin: 30px auto;
}

.hidden {
  display: none;
}

#confirm_code {
  display: none;
}

.account__line {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #999;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 0;
}

.account__title {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 29%;
  font-size: 14px;
  color: #999;
  position: relative;
  text-transform: uppercase;
}

.account__data {
  position: relative;
  font-size: 14px;
  color: #fff;
}

.account__cancel {
  margin: 20px auto 10px auto;
  font-size: 18px;
  text-transform: uppercase;
  color: #CCA454;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  text-align: center;
  cursor: pointer;
}

.account__cancel:active {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.account__switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 400px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  margin: 30px auto 0 auto;
}

.account__radio {
  display: none;
}

.account__radio:checked+.account__label {
  color: #fff;
  border-bottom: 4px solid #CCA454;
}

.account__label {
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  text-transform: uppercase;
  color: #aaa;
  text-align: center;
  position: relative;
  width: 50%;
  padding: 0 0 10px 0;
  border-bottom: 4px solid transparent;
  cursor: pointer;
}

.picker {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0px auto 10px auto;
}

.picker__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 10px auto 10px auto;
}

.picker__daynum {
  display: none;                                                                                                                                                    
}

.picker__day {
  position: relative;
  width: 13%;
  color: #fff;
  text-align: center;
  color: #999;
  font-size: 13px;
}

.picker__radio {
  display: none;
}

.picker__radio:checked+.picker__label {
  background: #CCA454;
  color: #111;
}

.picker__selectbuttons {
  display: flex;
}

.picker__label {
  cursor: pointer;
  position: relative;
  width: 13%;
  height: 55px;
  min-width: 39px;
  background: #00000066;
  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;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  margin: 5px 0;
  font-size: 18px;
}

.picker__label:active {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.picker__label--dis {
  color: #999;
}

.picker__label--dis:active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.main {
  position: relative;
  width: 100%;
  max-width: 576px;
  height: 100vh;
  margin: 0 auto;
  background: #0E163D url("https://speedmouse.ru/index/img/wall4.jpg") no-repeat;
  background-size: cover;
  padding: 10px 0 105px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 600px) {
  .main {
    background-size: 120% auto;
    background-position: 50% 50%;
  }
}

@media (max-width: 400px) {
  .main {
    padding: 10px 0 60px 0;
  }
}

.main--hidden {
  display: none;
}

.main__logo {
  position: relative;
  width: 100%;
  max-width: 300px;
  z-index: 99;
}

@media (max-width: 500px) {
  .main__logo {
    width: 80vw;
  }
}

@media (max-width: 450px) {
  .main__logo {
    width: 70vw;
  }
}

.main__btn {
  z-index: 99;
  cursor: pointer;
  background: #CCA454;
  color: #111;
  width: 100%;
  max-width: 300px;
  height: 70px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  -webkit-box-shadow: 0 2px 0 #ff9900;
  box-shadow: 0 2px 0 #ff9900;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  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;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0 50px;
  position: relative;
  text-decoration: none;
}

.main__btn:active {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}



.main__btn--span {
  margin: 0 5px 5px;
}

@media (max-width: 370px) {
  .main__btn--span {
    margin: 0 5px 5px 5px;
  }
}

.main__btn--left {
  position: relative;
  height: 40%;
  margin: 4px 0 5px 0;
}

.main__btn--right {
  position: relative;
  height: 40%;
  margin: 4px 0 5px 0;
}

.main__btn:hover {
  background: #f3ff12;
}

.main__btn:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.main__gradient {
  display: none;
  z-index: 19;
  position: absolute;
  width: 100%;
  height: 20vh;
}

@media (max-width: 600px) {
  .main__gradient {
    display: block;
  }
}

@media (max-width: 400px) {
  .main__gradient {
    height: 35vh;
  }
}

.main__gradient--top {
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, #0f1841), to(rgba(15, 24, 65, 0)));
  background: linear-gradient(180deg, #0f1841 80%, rgba(15, 24, 65, 0) 100%);
}

.main__gradient--bot {
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(80%, #0f1841), to(rgba(15, 24, 65, 0)));
  background: linear-gradient(0deg, #0f1841 80%, rgba(15, 24, 65, 0) 100%);
}

.main__top {
  position: relative;
  margin: 10px auto;
  width: 100%;
}

.main__note {
  position: relative;
  margin: 15px auto;
  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;
  text-align: center;
}

.white {
  color: white;
}

.d-flex {
  display: flex;
  flex-direction: column;
}

.column-reverse {
  flex-direction: column-reverse;
}

.person__stars {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 1;
  padding: 0;
  position: relative;
  user-select: none;
  margin: 0 0 10px 0;
}

.person__stars--back {
  color: #ddd;
  position: relative;
  user-select: none; }

.person__stars--front {
  color: #ff0;
  position: absolute;
  overflow: hidden;
  top: 0;
  user-select: none; }

.person__stars--number {
  font-size: 16px;
  color: #ddd;
  user-select: none;
  text-align: right;
}

.feedback {
  position: absolute;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  background: #000000;
  top: 0;
  left: 0;
  padding: 1% 4%;
  box-sizing: border-box;
  overflow: scroll;
  display: none;
}
.feedback--show{
  display: block;
}
.feedback *{
  box-sizing: border-box;
}
.feedback__close{
    position: absolute;
    color: #fff;
    right: 10px;
    top: 10px;
    font-size: 230%;
    cursor: pointer;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}
.feedback__top{
  padding: 4% 0%;
  width: 100%;
  display: flex;
  align-items: center;
}
.feedback__logo{
  width: 150px;
  height: 150px;
  background: #fff;
  border-radius: 100px;
  overflow: hidden;
}
.feedback__logo img {
  width: 100%;
}
.feedback__info{
  margin: 0 0 0 30px;
}
.feedback__person{
  font-size: 22px;
  color: #fff;
  margin: 0 0 5px 0;
}
.feedback__work{
  font-size: 22px;
  color: #aaa;
}
.feedback__stars {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  font-size: 30px;
  letter-spacing: 2px;
  line-height: 1;
  position: relative;
  user-select: none; 
  margin: 20px 0 0 0;
}

.feedback__stars--back {
  color: #ddd;
  position: relative;
  user-select: none; }

.feedback__stars--front {
  color: #ff0;
  position: absolute;
  overflow: hidden;
  top: 0;
  user-select: none; }

.feedback__stars--number {
  font-size: 16px;
  color: #ddd;
  user-select: none; }

.feedback__list{
  width: 100%;
  position: relative;
  margin: 20px 0 0 0;
}
.feedback__item{
  width: 100%;
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
  padding: 2% 0;
  margin: 3% 0;
}
.feedback__flex{
  display: flex;
  justify-content: space-between;
}
.feedback__name{
  color: #fff;
  font-size: 18px;
}
.feedback__date{
  font-size: 18px;
  color: #777;
}
.feedback__rate{
  font-size: 30px;
  color: #fff;
  line-height: 1;
  margin: 5px 0;
}
.feedback__rate span{
  color: #ff0;
  
}
.feedback__text{
  font-size: 18px;
  color: #777;
}

.confirm-record{
  display: flex;
  flex-wrap: wrap;

  flex-direction: row;
}
.confirm-record_btn{
  display: inline-block;
  border-radius: 50px;
  padding: 10px;
  width: 100%;
  flex-grow: 2;
  background: transparent;
  border: 1px solid;
  margin-top: 10px;
  cursor: pointer;
  font-size: 15px;
}
.confirm-record input{
  margin-top: 5px;
    font-size: 16px;
    padding: 5px;
    border: none;
    flex-grow: 2;
    background: transparent;
    border-bottom: 1px solid;
}
.confirm-record input:focus-visible{
  outline: none;
}

.newdate {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto Condensed", sans-serif;
  position: relative;
  width: 100%;
  max-width: 576px;
  /*background: #000 url(https://speedmouse.ru/index/img/4.jpg);
  background-size: cover;*/
  margin: 0 auto 0 auto;
}
.newdate * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto Condensed", sans-serif;
  position: relative;
}
.newdate__header {
  font-size: 18px;
  text-align: center;
  margin: 50px auto 20px auto;
  text-transform: uppercase;
  color: #fff;
}
.newdate__today {
  font-size: 18px;
  text-align: center;
  margin: 10px auto 10px auto;
  text-transform: uppercase;
  color: #fff;
}
.newdate__block {
  background: rgba(51, 51, 51, 0.7333333333);
}
.newdate__pick {
  display: flex;
  justify-content: space-between;
  padding: 1%;
}
.newdate__radio {
  display: none;
}
.newdate__radio:checked + .newdate__label {
  background: #CCA454;
  color: #111;
}
.newdate__radio:checked + .newdate__day {
  background: #CCA454;
  color: #111;
}
.newdate__label {
  border-radius: 2px;
  width: 16.6%;
  padding: 1% 2%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
  text-transform: uppercase;
  transition-duration: 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.newdate__label--6 {
  font-size: 28px;
}
.newdate__month {
  display: flex;
  justify-content: space-around;
  padding: 2%;
  font-size: 18px;
  color: #fff;
}
.newdate__back, .newdate__next {
  width: 30px;
  text-align: center;
  transform: scaleX(0.8);
  font-size: 20px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.newdate__back--disable, .newdate__next--disable {
  color: #555;
}
.newdate__week {
  display: flex;
  justify-content: space-between;
}
.newdate__day-name {
  width: 13.26%;
  text-align: center;
  color: #fff;
  padding: 2% 0;
  margin: 0.5%;
}
.newdate__table {
  display: flex;
  flex-wrap: wrap;
}
.newdate__day {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: #555;
  width: 13.26%;
  text-align: center;
  color: #fff;
  font-size: 17px;
  padding: 2% 1%;
  margin: 0.5%;
  border-radius: 2px;
  border: 1px solid #333;
}
.newdate__day--past {
  color: #878787;
}
.newdate__day--today {
  color: #CCA454;
  font-weight: 600;
}
.newdate__day--allow {
  border: 1px solid #CCA454;
  background: rgba(0, 0, 0, 0.3333333333);
}
.newdate__day--new-month {
  color: #878787;
}