/* .appointmentScheduler header {
  font-weight: 600;
  margin: 0 0 30px 0;
  background: linear-gradient(180deg, #60AB55 0%, #60AB55 100%);
  color: rgba(255, 255, 255, 1);
  text-align: center;
  padding: 15px;
  font-size: 20px;
  margin-top: 50px;
}.appointmentScheduler .progress-bar {
  display: flex;
  margin: 40px 15px 20px 15px;
  user-select: none;
  width: 100%;
  background: transparent;
}.appointmentScheduler .progress-bar .step {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}.appointmentScheduler .progress-bar .step:not(:first-child), .appointmentScheduler .progress-bar .step:not(:last-child) {
  justify-content: center;
  align-items: center;
}.progress-bar .step .bullet {
  height: 35px;
  width: 35px;
  color: #FFFFFF;
  background: #629650;
  border: 3px solid #699C58;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  transition: 0.2s;
  font-weight: 900;
  font-size: 18px;
  line-height: 25px;
}.progress-bar .step .check {
  position: absolute;
  left: 50%;
  top: 70%;
  font-size: 15px;
  transform: translate(-50%, -50%);
  display: none;
}.appointmentScheduler .progress-bar .step p {
  font-weight: 900;
  font-size: 18px;
  line-height: 22px;
  color: #000;
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
}.progress-bar .step .bullet:before, .progress-bar .step .bullet:after {
  position: absolute;
  content: '';
  bottom: 16px;
  left: 25px;
  height: 3px;
  width: 275px;
  background: #649854;
}.appointmentScheduler .form-outer {
  width: 100%;
  overflow: hidden;
}.appointmentScheduler .form-outer form {
  display: flex;
  width: 400%;
}.form-outer form .page {
  width: 25%;
  transition: margin-left 0.3s ease-in-out;
}.form-outer form .page .title {
  text-align: left;
  font-size: 25px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}form .page .title input {
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  box-shadow: 4px 4px 10px rgb(0 0 0 / 20%);
  border-radius: 4px;
  width: 95%;
  height: 30px;
  margin-bottom: 15px;
  padding: 10px;
  color: rgba(33, 87, 37, 0.6);
}form .page .line {
  border: 1px solid #C4C4C4;
  transform: rotate(-0.09deg);
  width: 100%;
  margin: 10px 0px 10px 0px;
}.quiz-radio-blocks {
  width: 98%;
  max-width: 1260px;
  margin: auto;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-flow: wrap;
  margin-top: 20px;
  margin-bottom: 20px;
} */


body {
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  padding: 100px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
/* jquery validation */
label.error {
    color: #e7505a;
    margin-left: 10px;
    padding: 7px;
}
input.error {
    border: 2px solid #e7505a;
}
.responseError{
    text-align: center;
    width: 100%;
    color: red;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
.loader {
  display: none;
  margin-top: 10px;
  overflow: hidden;
  font-size: 3px;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #31c5d2;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


.step-app > .step-steps {
  margin: 0;
  padding: 0;
  display: flex;
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}
.step-app > .step-steps > li {
  list-style: none;
  flex: 1;
  cursor: pointer;
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
	pointer-events:none;
}
.step-app > .step-steps > li:last-child a {
  border: none;
}.step-app > .step-steps > li:first-child::after {
  right: -50%;
}.step-app > .step-steps > li:last-child::after {
  left: -60%;
}
.step-app > .step-steps > li.active > .number{
  background: #41AD49 !important;
  color: #fff !important;

}.step-app > .step-steps > li > .number {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 100% !important;
  font-weight: 900;
}.step-app > .step-steps > li {
  justify-content: center;
  align-items: center;
  position: relative;
}.step-app > .step-steps > li > span {
  z-index: 9;
}.step-app > .step-steps > li::after {
  content: '';
  display: block;
  width: 110%;
  height: 3px;
  background: #c4c4c4;
  position: absolute;
  z-index: 0;
  top: 35%;
}.step-app > .step-steps > li.done > .number, .step-app > .step-steps > li.active > .number{
  background: #41AD49;
  color: #fff;
}
.step-app > .step-steps > li.done::after, .step-app > .step-steps > li.active::after{
  background: #41AD49;
} 
.step-app > .step-steps > li.error::after, .step-app > .step-steps > li.error > .number{
  background: #e7505a !important;
}
.step-app > .step-steps > li {
  display: flex;
  flex-direction: column;
}
.step-app > .step-steps > li > .number {
  background: #C4C4C4;
  padding: 0 8px;
  display: inline-block;
  text-align: center;
  margin-right: 15px;
  border-radius: 3px;
  color: #333;
}
.step-app > .step-content > .step-tab-panel {
  display: none;
}
.step-app > .step-content > .step-tab-panel.active {
  display: block;
}
.step-app > .step-footer {
  margin-top: 15px;
  margin-bottom: 15px;
}
.step-app > .step-footer > .step-btn {
  padding: 4px 16px;
  color: #333;
  text-decoration: none;
  background: #e5e5e5;
  border-radius: 3px;
  border: none;
  outline: none;
  cursor: pointer;
}
/*# sourceMappingURL=jquery-steps.css.map */

a.backButton::before {
    content: "\f053";
    font-family: "Font Awesome 6 Free";
    padding-right: 5px;
}
h1.headerText {
  background: #41AD49;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: center;
  padding: 25px;
  margin: 50px auto 30px;
}.step-content fieldset {
  display: flex;
  column-gap: 4%;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 20px;
}fieldset#locationsContainer {
  display: grid;
  column-gap: 4%;
  row-gap: 20px;
  grid-template-columns: 1fr 1fr;
}.fl-content fieldset input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  margin: 0;
  z-index: 1;
}.fl-content label.active, .fl-content label:hover {
  background-color: #62ac56;
  color: #fff;
}.fl-content label {
  position: relative;
  width: auto;
  box-shadow: 5px 5px 15px 0px #c4c4c4;
  padding: 20px 40px;
  border-radius: 10px;
  flex: 48%;
}.address-next {
  display: flex;
}.address-next span.address {
  width: 75%;
}.full-address {
  display: flex;
  flex-direction: column;
  flex: 1;
}.address-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}input#searchLocations {
  padding: 15px;
  margin: 25px auto;
}form#frmInfo hr {
  margin: 30px auto 30px auto;
  border-top: 2px solid #c4c4c4;
}.serviceSelcetor {
    display: grid;
    flex-wrap: wrap;
    column-gap: 2%;
    row-gap: 20px;
    margin-top: 30px;
    grid-template-columns: 1fr 1fr;
}.fl-content .serviceSelcetor label {
  padding: 30px 40px;
}span.labelHolder {
  display: flex;
  flex-direction: column;
}.serviceSelcetor input[type="radio"] {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}a.backButton {
  font-size: 18px;
  font-weight: 900;
}.calendar-box {
  border: 1px solid #d2d2d2;
  padding: 15px;
}



.buttons-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.buttons-container .label-container {
  display: inline-block;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}

.year-dropdown {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  padding: 5px 20px;
}

.prev-button,
.next-button {
  background: transparent;
  border: none;
  padding: 10px;
}

.week {
  margin: 10px 0;
}

.week.highlight {
  border-radius: 5px;
}

.weeks-wrapper.header {
  border-bottom: 1px solid #eee;
}

.week .day.header {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 120%;
}

.day span {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  vertical-align: middle;
}

.day.today span {
  position: relative;
  display: inline-block;
  font-size: 110%;
}

/* sunday */
.week:not(.start-on-monday) .day:first-child {
  color: red;
}


/* start on monday - sunday */
.week.start-on-monday .day:last-child {
  color: red;
}

.day.today span::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 2px solid orange;
  width: 10px;
  height: 1px;
}

.day.sunday span {
  color: #ff8a80;
}

.week .day.selected span {
  background: #1565c0;
  color: white;
}

.week .day[disabled="disabled"] span {
  color: #aaa;
  cursor: not-allowed;
}

.months-wrapper .month span {
  display: inline-block;
  padding: 10px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.special-buttons {
  display: none;
}

.today-button {
  margin: 0 auto;
  background: transparent;
  border: none;
  padding: 5px;
}

.calendar-box {

}

.buttons-container {
  cursor: pointer;
}

.week {
  overflow: hidden;
}


/* weekend */
.week .day:first-child, .week .day:last-child {
  /*color: orange;*/
}

/* sunday */
.week .day:first-child {
  /*color: red;*/
}

.day {
  display: inline-block;
  float: left;
  width: 14.28%;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}

.day.disabled span {
  color: #AAA;
}

/* vertical highlight */
.week .day.highlight span {
  /*color: blue;*/
}

.day.selected span {
  /*background: orange;*/
}

.day.today span {
  font-weight: bold;
}

.months-container.hidden, .weeks-container.hidden {
  display: none;
}

.months-wrapper {
  overflow: hidden;
}

.months-wrapper .month {
  display: inline-block;
  float: left;
  width: 25%;
  text-align: center;
  cursor: pointer;
}
.months-wrapper .month.one-third {
  width: 33.33%;
}.fl-content label.error {
  flex: none;
  width: 100%;
  padding: 0px !important;
  box-shadow: none;
  font-weight: 400;
  margin-top: 10px;
}
.calendarHolder {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  align-items: baseline;
	margin-top: 50px;
}div#calendar-wrapper {
  flex: 50%;
}.slotHolder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}.slot {
  position: relative;
}.slot input[type="radio"] {
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.slotHolder.gridDisplay {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 15px;
}.slotHolder label {
  display: flex;
  flex-direction: initial;
  align-items: center;
  justify-content: center;
  position: relative;
  flex:30%;
  padding: 10px;
}.slotHolder label input[type="radio"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}.fl-content label.error {
  background-color: transparent !important;
  flex: none;
  width: 100%;
  padding: 0px !important;
  box-shadow: none;
  font-weight: 400;
  margin-top: 10px;
  color: #e7505a !important;
  position: absolute;
  left: 0;
  bottom: -35px;
}.calendarTextHolder {
  margin-top: 50px;
  text-align: center;
}
form#frmLogin {
  display: flex;
  flex-wrap: wrap;
  row-gap: 25px;
  column-gap: 2%;
  margin-top: 50px;
}form#frmLogin .inputcontainer {
  flex: 48%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 20px;
}form#frmLogin .inputcontainer input, form#frmLogin .inputcontainer textarea {
  padding: 15px;
}form#frmLogin .inputcontainer.bookNow {
  align-items: flex-start;
  justify-content: end;
}form#frmLogin .inputcontainer.bookNow input[type="submit"] {
  width: 50%;
  border: none;
  border-radius: 0px !important;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}.step-app > .step-steps > li > span:not(.number) {
  font-weight: 900;
  margin-top: 10px !important;
}.imageHolder::after {
    content: '';
    display: block;
    width: 5px;
    height: 75%;
    position: absolute;
    background-color: #649854;
    left: calc(50% - 2.5px);
    bottom: 0;
    z-index: 0;
}.appointementSuccessMessage {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    max-width: 75%;
    margin: 0px auto;
}.appointementSuccessMessage {
    margin-top: 50px;
}.imageHolder {
    position: relative;
}.sucessTextContent table {
    margin: 20px 0px;
}.sucessTextContent table tr td:first-child {
    font-weight: 600;
    padding-right: 15px;
}