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

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

.appointment {
  display: none;
}

.appointment._active {
  display: block;
}

.appointment-wrapper {
  display: grid;
  grid-template-columns: 500px 1fr;
  grid-template-areas: "appointment-left appointment-right" "appointment-left appointment-btn";
  grid-gap: 32px;
  padding: 25px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  margin-top: 40px;
}

.appointment-left {
  grid-area: appointment-left;
}

.appointment-left__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding-bottom: 25px;
  margin-bottom: 12px;
  border-bottom: 1px solid #e6e6e6;
}

.appointment-left__wrap._disabled {
  display: none;
}

.appointment-left__calendar {
  position: relative;
  width: 46px;
  height: 44px;
  padding: 10px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  cursor: pointer;
}

.appointment-left__calendar:hover {
  border: 1px solid #222222;
}

.appointment-left__calendar._disabled {
  pointer-events: none;
  padding: 0;
  border: none;
}

.appointment-left__calendar._disabled > svg {
  display: none;
}

.appointment-left__calendar._disabled .appointment-left__calendar-skeleton {
  display: block;
}

.appointment-left__calendar > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 20px;
  height: 20px;
}

.appointment-left__calendar-skeleton {
  display: none;
  height: 44px;
}

.appointment-left__calendar._active {
  background: #ff5c00;
  color: #fff;
  border: 1px solid #ff5c00;
}

.appointment-left__calendar._active > svg > path {
  stroke: #fff;
}

.appointment-left__calendar._active .air-datepicker.-inline- {
  z-index: 3;
}

.appointment-left__chose {
  display: none;
  margin-top: 8px;
}

.appointment-left__chose._active {
  display: block;
}

.appointment-left__date {
  width: 100%;
}

.appointment-left__date-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 6px;
}

.appointment-left__date-list._disabled {
  display: none;
}

.appointment-left__date-skeleton {
  display: none;
}

.appointment-left__date-skeleton._active {
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}

.appointment-left__date-item {
  border: 1px solid #C4C4C4;
  border-radius: 10px;
  padding: 12px 5px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  text-align: center;
  color: #463B3F;
  cursor: pointer;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 44px;
}

.appointment-left__date-item:hover {
  border: 1px solid #222222;
}

.appointment-left__date-item._active {
  background: #ff5c00;
  color: #fff;
  border: 1px solid #ff5c00;
}

.appointment-left__date-item._empty {
  background: #C8C2D1;
  color: #fff;
}

.appointment-left__time {
  margin-top: 25px;
}

.appointment-left__time._disabled {
  display: none;
}

.appointment-left__time-list {
  display: grid;
  grid-template-columns: repeat(5, 93px);
  grid-gap: 8px;
  max-height: 182px;
  overflow-x: hidden;
  overflow-y: auto;
  padding-bottom: 5px;
}

.appointment-left__time-list._disabled {
  display: none;
}

.appointment-left__time-skeleton {
  display: none;
}

.appointment-left__time-skeleton._active {
  height: 182px;
  display: block;
}

.appointment-left__time-empty {
  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;
  grid-column-start: 1;
  grid-column-end: 6;
  border-radius: 10px;
  height: 162px;
}

.appointment-left__time-slot {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  max-width: 93px;
  width: 100%;
  padding: 8px 0;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  -ms-flex-item-align: baseline;
      align-self: baseline;
  cursor: pointer;
  text-align: center;
}

.appointment-left__time-slot:hover {
  border: 1px solid #222222;
}

.appointment-left__time-slot._active {
  background: #ff5c00;
  color: #fff;
  border: 1px solid #ff5c00;
}

.appointment-left__nearest-empty {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #C4C4C4;
  border-radius: 10px;
  height: 112px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 5px;
}

.appointment-left__nearest-empty._active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.appointment-right {
  position: relative;
  grid-area: appointment-right;
}

.appointment-right__block-select {
  width: 100%;
}

.appointment-right__block-select__clinic._disabled {
  display: none;
}

.appointment-right__block-select__services._disabled {
  display: none;
}

.appointment-right__select-title {
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px 54px 20px 20px;
  margin-bottom: 15px;
}

.appointment-right__select-content {
  border-radius: 10px;
}

.appointment-right__select-list input:checked + label {
  border-radius: 10px;
}

.appointment-right__select-list label {
  border-radius: 10px;
}

.appointment-right__select-list label:hover {
  border-radius: 10px;
}

.appointment-right__clinic-skeleton._active {
  height: 60px;
  display: block;
  margin-bottom: 15px;
}

.appointment-right__services-skeleton._active {
  height: 60px;
  display: block;
}

.appointment-right__btn {
  grid-area: appointment-btn;
}

.appointment-right__btn-signup {
  font-size: 13px;
  line-height: 24px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  display: block;
  max-width: 270px;
  width: 100%;
  margin-top: 80px;
  margin-left: auto;
  padding: 12px 25px;
  background: #ff5c00;
  color: #fff;
  border: 1px solid #ff5c00;
  border-radius: 10px;
  cursor: pointer;
}

.appointment-right__btn-signup.disabled {
  pointer-events: none;
  background: #ccc;
  border: 1px solid #ccc;
}

.appointment-right__btn-signup._disabled {
  display: none;
}

.appointment-right__btn-signup-skeleton {
  display: none;
}

.appointment-right__btn-signup-skeleton._active {
  display: block;
  max-width: 270px;
  width: 100%;
  height: 50px;
  margin-top: 74px;
  margin-left: auto;
}

.appointment .air-datepicker-nav--title {
  pointer-events: none;
}

.skeleton {
  position: relative;
  background: #f4f4f4;
  overflow: hidden;
  border-radius: 10px;
}

.skeleton:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0)), color-stop(20%, rgba(255, 255, 255, 0.2)), color-stop(60%, rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
  -webkit-animation: skeleton-loading 2s infinite;
          animation: skeleton-loading 2s infinite;
}

.skeleton-block {
  display: none;
  margin-top: 44px;
}

.skeleton-block._active {
  display: block;
}

.skeleton-date {
  height: 44px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@-webkit-keyframes skeleton-loading {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes skeleton-loading {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@media screen and (max-width: 1199px) {
  .appointment-wrapper {
    grid-template-columns: 100%;
    grid-template-areas: "appointment-right" "appointment-left" "appointment-btn";
    grid-gap: 20px;
  }

  .appointment-left__time-list {
    grid-template-columns: repeat(5, auto);
  }

  .appointment-left__time-slot {
    max-width: 100%;
  }

  .appointment-right__btn-signup {
    margin-top: 30px;
    margin-left: 0;
  }

  .appointment-right__btn-signup-skeleton._active {
    margin-top: 30px;
    margin-left: 0;
  }
}

@media screen and (max-width: 833px) {
  .appointment-wrapper {
    margin-top: 20px;
    padding: 0;
    border: none;
    grid-gap: 10px;
  }

  .appointment-left__calendar {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .appointment-left__date-list {
    overflow-x: auto;
  }

  .appointment-left__date-item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .appointment-right__select-title {
    padding: 17px 54px 17px 20px;
  }

  .appointment-right__select-title.js-select__title:before {
    right: 20px;
  }

  .appointment-right__select-title.js-select__title:after {
    right: 20px;
  }

  .appointment-right__btn-signup {
    max-width: 100%;
  }

  .appointment-right__btn-signup-skeleton._active {
    max-width: 100%;
  }
}
@supports (appearance:none){

}

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

@supports (appearance:none){

}

}

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

@supports (appearance:none){

}

}
