@charset "UTF-8";
html,
body {
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #313131;
}

html.lock {
  overflow: hidden;
}

html.lock body {
  overflow: hidden;
}

body {
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  min-height: 100vh;
}

body:not(.auth-page) {
  padding-top: 45px;
  background-color: #f5f6f8;
}

body.hide-overflow {
  position: fixed;
  width: 100%;
}

body .footer {
  margin-top: auto;
}

body * {
  margin: 0;
  padding: 0;
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input,
select,
button,
label {
  font: inherit;
}

textarea {
    font: inherit;
    min-height:100px;
    resize: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button {
  cursor: pointer;
}

button[disabled] {
  cursor: initial;
}

input,
button,
textarea,
select,
textarea:focus,
textarea:active,
input:active,
input:focus,
button:active,
button:focus,
select:active,
select:focus {
  outline: 0;
}

.visually-hidden {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  font-size: 1px;
  overflow: hidden;
}

a {
  color: #313131;
}

@media (hover) {
  a:hover {
    color: #313131;
  }
}

.copy-textarea {
  position: absolute;
  top: -9999px;
  left: -9999px;
  width: 1px;
  height: 1px;
  visibility: hidden;
  opacity: 0;
}

.button {
  display: inline-block;
  border: none;
  text-align: center;
  text-decoration: none;
  -webkit-transition: background-color .2s linear, color .2s linear, border-color .2s linear;
  transition: background-color .2s linear, color .2s linear, border-color .2s linear;
}

.button[disabled], .button.disabled {
  opacity: 0.4;
}

.button.btn-small {
  padding: 2px 11px;
}

.button.btn-regular {
  padding: 8px;
  font-size: 1.3rem;
  line-height: 1.8rem;
  font-weight: 600;
}

.button.btn-green-main {
  color: #ffffff;
  border-color: #7b9170;
  background-color: #7b9170;
  border-radius: 5px;
}

.button.btn-green-main.active {
  color: #7b9170;
  border-color: #7b9170;
  background-color: #ffffff;
}

@media (hover) {
  .button.btn-green-main:not(.active):not([disabled]):not(.disabled):hover {
    background-color: #647d56;
  }
}

.button.btn-green-secondary {
  color: #313131;
  border-color: #ccd5c8;
  background-color: #ccd5c8;
  border-radius: 5px;
}

@media (hover) {
  .button.btn-green-secondary:not(.active):not([disabled]):not(.disabled):hover {
    background-color: #a1b29b;
  }
}

.button.btn-brown {
  font-weight: 400;
}

.button.btn-brown.btn-brown_hollow {
  background-color: #ffffff;
  border-color: #978c80;
  border-radius: 5px;
}

@media (hover) {
  .button.btn-brown.btn-brown_hollow:not(.active):not([disabled]):not(.disabled):hover {
    background-color: #978c80;
    color: #ffffff;
  }
}

.button.btn-brown.btn-brown_hollow.active {
  background-color: #978c80;
  color: #ffffff;
}

.button.btn-icon {
  background: #a1b29b no-repeat center/20px;
}

@media (hover) {
  .button.btn-icon:not(.active):not([disabled]):not(.disabled):hover {
    background-color: #647d56;
  }
}

.button.btn-icon-text {
  padding: 5px 22px 5px 40px;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #ffffff;
  border-radius: 5px;
  background: #7b9170 no-repeat 12px center/24px;
}

@media (hover) {
  .button.btn-icon-text:not(.active):not([disabled]):not(.disabled):hover {
    background-color: #647d56;
  }
}

.button.btn-action {
  width: 34px;
  height: 34px;
  border: 1px solid #a1b29b;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  -webkit-transition: background-color .2s linear;
  transition: background-color .2s linear;
}

.button.btn-action.btn-action-edit {
  background-color: #a1b29b;
  background-image: url(../img/icons/edit-icon-white.svg);
}

@media (hover) {
  .button.btn-action.btn-action-edit:not([disabled]):not(.disabled):hover {
    background-color: #ffffff;
    background-image: url(../img/icons/edit-icon-pale-green.svg);
  }
}

.button.btn-action.btn-action-delete {
  background-color: #ffffff;
  background-image: url(../img/icons/delete-icon-green.svg);
}

@media (hover) {
  .button.btn-action.btn-action-delete:not([disabled]):not(.disabled):hover {
    background-color: #a1b29b;
    background-image: url(../img/icons/delete-icon-white.svg);
  }
}

.auth-page {
  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;
}

.auth-page::after {
  position: fixed;
  display: block;
  z-index: -1;
  content: "";
  left: 0;
  top: 50%;
  width: 100%;
  height: 47vh;
  min-height: 400px;
  background: url(../img/icons/pattern.svg) no-repeat center/cover;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.auth-page .page-container {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  min-height: 100vh;
  max-width: 740px;
  width: 100%;
  background-color: #ffffff;
}

.auth-page .logo-block {
  margin-bottom: 40px;
}

.auth-page .logo-block .logo {
  width: 147px;
  height: 122px;
}

.auth-page .logo-block img {
  max-width: 100%;
  max-height: 100%;
}

.auth-page .title-block {
  text-align: center;
  margin-bottom: 30px;
}

.auth-page .title-block h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 55px;
}

.auth-page .title-block .subtitle {
  margin-top: 20px;
  font-size: 22px;
  line-height: 30px;
}

.auth-page .registration-card {
  margin-bottom: 20px;
  width: 400px;
  overflow: hidden;
}

.auth-page .registration-card .reg-steps {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto 40px;
  width: 360px;
}

.auth-page .registration-card .reg-steps::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  z-index: 0;
  background-color: #313131;
  opacity: 0.2;
}

.auth-page .registration-card .reg-steps .step-wrap {
  border-radius: 50%;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}

.auth-page .registration-card .reg-steps .step {
  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;
  width: 59px;
  height: 59px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 41px;
  border: 1px solid transparent;
  -webkit-transition: opacity .2s linear, background-color .2s linear, border-color .2s linear;
  transition: opacity .2s linear, background-color .2s linear, border-color .2s linear;
}

.auth-page .registration-card .reg-steps .step-1 {
  border-color: #CCD8C3;
  background-color: #CCD8C3;
}

.auth-page .registration-card .reg-steps .step-2,
.auth-page .registration-card .reg-steps .step-3 {
  border-color: #313131;
  background-color: #ffffff;
  opacity: 0.2;
}

.auth-page .registration-card #tabs {
  position: relative;
  width: 1200px;
  overflow: hidden;
  height: 442px;
  -webkit-transition: height .2s linear, margin 0.3s ease-out;
  transition: height .2s linear, margin 0.3s ease-out;
}

.auth-page .registration-card #tabs .tab {
  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: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  float: left;
  width: 400px;
  padding: 0 15px;
}

.auth-page .registration-card #tabs .tab-title-row {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 27px 1fr 27px;
      grid-template-columns: 27px 1fr 27px;
  margin-bottom: 40px;
}

.auth-page .registration-card #tabs .tab-title-row .change-tab-button {
  width: 27px;
  height: 27px;
  border: none;
  background: transparent no-repeat center / 27px;
}

.auth-page .registration-card #tabs .tab-title-row .prev-tab {
  background-image: url(../img/icons/arrow-left-black.svg);
}

.auth-page .registration-card #tabs .tab-title-row .next-tab {
  background-image: url(../img/icons/arrow-right-black.svg);
}

.auth-page .registration-card #tabs .tab-title {
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / 3;
}

.auth-page .registration-card.active-tab-2 .step-1 {
  border-color: #D3D8DD;
  background-color: #D3D8DD;
  opacity: 0.5;
}

.auth-page .registration-card.active-tab-2 .step-2 {
  border-color: #CCD8C3;
  background-color: #CCD8C3;
  opacity: 1;
}

.auth-page .registration-card.active-tab-2 #tabs {
  margin: 0 0 0 -400px;
}

.auth-page .registration-card.active-tab-3 .step-1,
.auth-page .registration-card.active-tab-3 .step-2 {
  border-color: #D3D8DD;
  background-color: #D3D8DD;
  opacity: 0.5;
}

.auth-page .registration-card.active-tab-3 .step-3 {
  border-color: #CCD8C3;
  background-color: #CCD8C3;
  opacity: 1;
}

.auth-page .registration-card.active-tab-3 #tabs {
  margin: 0 0 0 -800px;
}

.auth-page .submit-block {
  margin-top: 25px;
  margin-bottom: 20px;
}

.auth-page .submit-block .button {
  width: 100%;
  padding: 11px;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  color: #f5f6f8;
}

.auth-page .copy-block p {
  font-size: 13px;
  line-height: 18px;
}

.auth-page .alternative-actions {
  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;
  grid-gap: 5px 0;
  padding-top: 15px;
  border-top: 1px solid #E5E5E5;
  width: 370px;
}

.auth-page .alternative-actions p {
  font-size: 13px;
  line-height: 18px;
}

.auth-page .alternative-actions .login-link {
  font-size: 13px;
  line-height: 18px;
  color: #313131;
  text-decoration: none;
  -webkit-transition: color .2s linear;
  transition: color .2s linear;
}

@media (hover) {
  .auth-page .alternative-actions .login-link:hover {
    color: #7B9170;
  }
}

.auth-page .alternative-actions .login-link-button {
  padding: 7px;
  width: 170px;
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
  color: #313131;
  text-decoration: none;
  background-color: #CCD5C8;
  border-radius: 5px;
  -webkit-transition: background-color .2s linear;
  transition: background-color .2s linear;
}

@media (hover) {
  .auth-page .alternative-actions .login-link-button:hover {
    background-color: #a1b29b;
  }
}

.auth-page .auth-card {
  width: 360px;
}

.auth-page .input-group {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.auth-page .input-group .input-title {
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  margin-bottom: 2px;
}

.auth-page .input-group .form-input {
  padding: 10px;
  width: 100%;
  height: 34px;
  font-size: 13px;
  line-height: 18px;
  border: 1px solid rgba(49, 49, 49, 0.2);
  border-radius: 5px;
}

.auth-page .input-group .form-input:focus {
  border-color: rgba(49, 49, 49, 0.6);
}

.auth-page .input-group.input-error input {
  border-color: rgba(249, 50, 50, 0.2);
}

.auth-page .input-group.input-error .error-message {
  display: block;
}

.auth-page .input-group.input-ok input {
  border-color: rgba(67, 159, 110, 0.6);
}

.auth-page .input-group .error-message {
  margin-top: 2px;
  color: #f93232;
  font-size: 1rem;
}

.auth-page .input-group .show-password {
  position: absolute;
  top: 25px;
  right: 10px;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent url(../img/icons/eye-closed.svg) no-repeat center/24px;
  opacity: 0.2;
}

.auth-page .input-group.password-shown .show-password {
  background-image: url(../img/icons/eye-opened.svg);
}

/* ----------------------------------------------------- */
.register-success {
  padding:0 0 20px 0;
  text-align: center;
  font-size: 12px;
  color: #00b44e;
}

.auth-error {
  color: #fff;
  background-color: #ff2e2e;
  margin: 25px 0 0 0;
  padding: 5px;
  text-align: center;
}

/* календарь */
.calendar {
  width: 100%;
  margin: 10px auto 50px auto;
}

.calendar .cell {
  width: 14.286%;
  text-align: center;
  padding: 10px 0;
  border-bottom: 1px solid #d0d0d0;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  cursor: pointer;
}

a.no-decoration {
  text-decoration: none;
}

.calendar .today {
  background-color: #e5e5e5;
  color: #000;
}

.calendar .past-days {
  color: #858585;
}

.calendar .past-days:hover {
  background-color: #fee700;
}

.calendar .future-days:hover {
  background-color: #fee700;
}

#next-M {
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-image: url(../img/arrow-next.svg);
}

#prev-M {
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-image: url(../img/arrow-prev.svg);
}

/* для расписания на год */
.calendar .selected-date {
  -webkit-box-shadow: 0 0 0 100px #fee700 inset;
          box-shadow: 0 0 0 100px #fee700 inset;
}

.calendar .working {
  background-color: #e5e5e5;
  color: #000;
}

.calendar .one-month-calendar {
  margin: 30px 0 0 0;
  width: 30%;
  min-width: 200px;
}
/*# sourceMappingURL=auth-page.css.map */
