* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  padding: 10px;
}

div#datepicker {
  padding-bottom: 10px;
}

.scheduler-block {
  max-width: 420px;
}
.scheduler-block .progress-nav {
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: relative;
  padding: 0 10px;
  overflow: hidden;
}
.scheduler-block .progress-nav::before {
  content: "";
  position: absolute;
  border-top: 2px solid #efefef;
  width: 94%;
  margin-top: 18px;
}
.scheduler-block .progress-nav span {
  font: 600 18px/18px "Montserrat", sans-serif;
  width: 38px;
  height: 38px;
  background: #cfcfcf;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
}
.scheduler-block .progress-nav span.active {
  background: #fdb714;
}
.scheduler-block .step-items {
  width: 100%;
}
.scheduler-block .step-items .step-item {
  width: 100%;
  background: #fff;
}
.scheduler-block .step-items .step-item .step-container {
  padding: 0 10px;
}
.scheduler-block .step-items .step-item p {
  font: 400 14px/22px "Montserrat", sans-serif;
  color: #878787;
  margin-bottom: 30px;
}
.scheduler-block .step-items .step-item .text-center {
  text-align: center;
}
.scheduler-block .step-items .step-item .info-fields .form-field {
  margin-bottom: 13px;
}
.scheduler-block .step-items .step-item .form-field-col {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.scheduler-block .step-items .step-item .form-field-col .form-field {
  flex: 0 0 auto;
  width: 48%;
}
.scheduler-block .step-items .step-item .form-field {
  margin-bottom: 35px;
}
.scheduler-block .step-items .step-item .form-field:last-child {
  margin-bottom: 0;
}
.scheduler-block .step-items .step-item .form-field label {
  display: block;
  font: 600 18px/30px "Montserrat", sans-serif;
  color: #1f3e5f;
}
.scheduler-block .step-items .step-item .form-field input[type=text],
.scheduler-block .step-items .step-item .form-field input[type=email],
.scheduler-block .step-items .step-item .form-field input[type=tel] {
  background: #fff;
  font: 500 16px/16px "Montserrat", sans-serif;
  width: 100%;
  height: 40px;
  border: 2px solid #cfcfcf;
  color: #878787;
  border-radius: 0;
}
.scheduler-block .step-items .step-item .form-field textarea {
  background: #fff;
  font: 500 16px/16px "Montserrat", sans-serif;
  width: 100%;
  height: 110px;
  border: 2px solid #cfcfcf;
  color: #878787;
  padding-top: 10px;
  border-radius: 0;
}
.scheduler-block .step-items .step-item .form-field input[type=text]::-webkit-input-placeholder,
.scheduler-block .step-items .step-item .form-field input[type=email]::-webkit-input-placeholder,
.scheduler-block .step-items .step-item .form-field input[type=tel]::-webkit-input-placeholder,
.scheduler-block .step-items .step-item .form-field textarea::-webkit-input-placeholder {
  opacity: 1 !important;
  color: #878787;
}
.scheduler-block .step-items .step-item .form-field input[type=text]::placeholder,
.scheduler-block .step-items .step-item .form-field input[type=email]::placeholder,
.scheduler-block .step-items .step-item .form-field input[type=tel]::placeholder,
.scheduler-block .step-items .step-item .form-field textarea::placeholder {
  opacity: 1 !important;
  color: #878787;
}
.scheduler-block .step-items .step-item .form-field .error {
  border: 2px solid #f39d9d !important;
}
.scheduler-block .step-items .step-item .form-field .selectwrap {
  position: relative;
}
.scheduler-block .step-items .step-item .form-field .selectwrap:after {
  content: url("../images/arrow-down.png");
  position: absolute;
  right: 4px;
  top: 3px;
  pointer-events: none;
  width: 30px;
  height: 35px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scheduler-block .step-items .step-item .form-field select {
  font: 500 16px/16px "Montserrat", sans-serif;
  width: 100%;
  height: 40px;
  border: 2px solid #cfcfcf;
  color: #878787;
  text-indent: 5px;
  background: #fff;
}
.scheduler-block .step-items .step-item .form-field.field-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 10px;
  grid-row-gap: 20px;
  padding-bottom: 20px;
}
.scheduler-block .step-items .step-item .form-field.field-grid:after {
  display: block;
  height: 30px;
  content: "";
  width: 100%;
}
.scheduler-block .step-items .step-item .form-field .time-slot {
  background: #1f3e5f;
  border: 0;
  font: 600 16px/16px "Montserrat", sans-serif;
  color: #fff;
  padding: 12px 12px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
}
.scheduler-block .step-items .step-item .form-field .time-slot span {
  width: 15px;
  height: 15px;
  background: #fff;
  display: block;
  margin-right: 8px;
  border: 1px solid #0f263f;
}
.scheduler-block .step-items .step-item .form-field .time-slot.not-available {
  background: #cfcfcf;
  pointer-events: none;
  color: #b8b8b8;
}
.scheduler-block .step-items .step-item .form-field .time-slot.not-available span {
  background: #cfcfcf;
  border: 1px solid #b8b8b8;
}
.scheduler-block .step-items .step-item .form-field .time-slot.selected {
  color: #fdb714;
}
.scheduler-block .step-items .step-item .form-field .time-slot.selected span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.scheduler-block .step-items .step-item .form-field .time-slot.selected span:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fdb714;
  display: block;
}
.scheduler-block .step-items .step-item.step-1 {
  margin-top: 70px;
}
.scheduler-block .step-items .step-item.step-2 {
  margin-top: 40px;
}
.scheduler-block .step-items .step-item.step-3 {
  margin-top: 50px;
}
.scheduler-block .step-items .step-item.step-4 {
  margin-top: 40px;
}
.scheduler-block .step-items .step-item.step-5 {
  margin-top: 50px;
}
.scheduler-block .step-items .step-item .scheduler-confirmation {
  min-height: 360px;
}
.scheduler-block .step-items .step-item .scheduler-confirmation p {
  font: 600 18px/18px "Montserrat", sans-serif;
  color: #1f3e5f;
}
.scheduler-block .step-items .step-item .scheduler-confirmation h3 {
  color: #fdb714;
  font: 600 30px/40px "Montserrat", sans-serif;
  margin: 0 0 50px;
}
.scheduler-block .step-items .step-item .scheduler-confirmation .expert-block {
  display: flex;
}
.scheduler-block .step-items .step-item .scheduler-confirmation .expert-block .exper-info {
  padding: 0 20px;
}
.scheduler-block .step-items .step-item .scheduler-confirmation .expert-block .exper-info p {
  margin-bottom: 15px;
}
.scheduler-block .step-items .step-item .scheduler-confirmation .expert-block .exper-info h3 {
  font: 600 24px/24px "Montserrat", sans-serif;
  color: #1f3e5f;
}
.scheduler-block .step-items .step-item .scheduler-confirmation .expert-block .expert-image img {
  max-width: 166px;
  height: auto;
}
.scheduler-block .warning-block {
  display: none;
}
.scheduler-block .warning-block h3 {
  color: #1f3e5f;
  font: 600 18px/18px "Montserrat", sans-serif;
  margin: 0 0 20px;
}
.scheduler-block .back-btn {
  background: #cfcfcf;
  color: #fff;
  border: 0;
  height: 37px;
  width: 120px;
  font: 400 15px/15px "Montserrat", sans-serif;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  padding-left: 27px;
  text-align: left;
}
.scheduler-block .back-btn:before {
  content: url(../images/arrow-left.png);
  margin-right: 10px;
}
.scheduler-block .next-step-button {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.scheduler-block .next-step-button .back-btn {
  display: none;
}
.scheduler-block .next-step-button.with-back-btn {
  justify-content: space-between;
}
.scheduler-block .next-step-button.with-back-btn .back-btn {
  display: block;
  margin-left: 10px;
}
.scheduler-block .next-step-button .next {
  background: #fdb714;
  color: #fff;
  border: 0;
  height: 37px;
  min-width: 120px;
  font: 400 15px/15px "Montserrat", sans-serif;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  margin-right: 10px;
}
.scheduler-block .next-step-button .next:after {
  content: url(../images/arrow-right.png);
  margin-left: 15px;
}
.scheduler-block .next-step-button .next .loader {
  display: none;
}

.time-slot-error {
  border: 1px solid #fcb713;
  padding: 9px;
  border-radius: 5px;
  background: #fbe7b9;
  color: #000;
  margin: 10px 0 0;
  text-align: center;
  display: none;
  margin-left: 10px;
  margin-right: 10px;
}
.time-slot-error p {
  margin: 0 !important;
  color: #000 !important;
}

/* Datepicker */
.ui-datepicker {
  width: 100%;
  height: auto;
  font: 400 16px/16px "Montserrat", sans-serif;
  -webkit-box-shadow: 0px 0px 9px 0px rgba(206, 206, 206, 0.5);
  -moz-box-shadow: 0px 0px 9px 0px rgba(206, 206, 206, 0.5);
  box-shadow: 0px 0px 9px 0px rgba(206, 206, 206, 0.5);
}
.ui-datepicker a {
  text-decoration: none;
}
.ui-datepicker table {
  width: 100%;
  border: 0;
  padding: 0;
  border-collapse: collapse;
  border-spacing: 0;
}
.ui-datepicker table thead {
  background-color: #e7e9ed;
  height: 38px;
}
.ui-datepicker table th {
  text-transform: uppercase;
  font-size: 13px;
  padding: 5px 0;
  color: #000;
  text-align: center;
}
.ui-datepicker table td {
  padding: 15px;
  font: 400 15px/15px "Montserrat", sans-serif;
  text-align: center;
}
.ui-datepicker table td.ui-datepicker-other-month, .ui-datepicker table td.ui-datepicker-unselectable, .ui-datepicker table td.ui-datepicker-week-end {
  background: #fafafa;
  pointer-events: none;
}
.ui-datepicker table td.ui-datepicker-other-month span, .ui-datepicker table td.ui-datepicker-unselectable span, .ui-datepicker table td.ui-datepicker-week-end span {
  /*display: none; */
}
.ui-datepicker table td.ui-datepicker-current-day {
  background: #fdb714;
  border-radius: 5px;
}
.ui-datepicker table td.ui-datepicker-current-day a {
  color: #fff !important;
}
.ui-datepicker table td a {
  color: #000 !important;
}
.ui-datepicker .ui-datepicker-header {
  background: #fff;
  color: #000;
  height: 48px;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-title {
  text-align: center;
  font: 600 16px/16px "Montserrat", sans-serif;
  position: relative;
  top: 16px;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev, .ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  display: inline-block;
  width: 15px;
  height: 16px;
  text-align: center;
  cursor: pointer;
  font-size: 0;
  position: relative;
  z-index: 1;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
  float: left;
  content: url("../images/icon-prev.png");
  top: 15px;
  left: 15px;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  float: right;
  content: url("../images/icon-next.png");
  top: 15px;
  right: 15px;
}

/*# sourceMappingURL=style.css.map */
