

#heading {
    text-transform: uppercase;
    color: #673AB7;
    font-weight: normal
}

#msform {
    text-align: center;
    position: relative;
    margin-top: 0px
}

#msform fieldset {
    background: none;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative;
    
   
}

.form-card {
    text-align: left
}

#msform fieldset:not(:first-of-type) {
    display: none
}


#msform .action-button {
    width: 100px;
    background: #b84d30;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
    float: right;
    border-radius: 25px;
}

#msform .action-button:hover,
#msform .action-button:focus {
    background-color: #912f14
}

#msform .action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px 10px 0px;
    float: right;
    border-radius: 25px;

}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    background-color: #000000
}

.card {
    z-index: 0;
    border: none;
    position: relative
}

.fs-title {
    font-size: 75px;
    color: #B84D30;
    margin-bottom: 0;
    font-weight: 400;
    text-align: left;
    font-weight: bold;
}
.fs-title.small{font-size: 60px;}

.subheadings{font-size: 20px; font-weight: 700; margin: 0;}

.purple-text {
    color: #b84d30;
    font-weight: normal
}

.steps {
    font-size: 25px;
    color: gray;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: right
}

.fieldlabels {
    color: gray;
    text-align: left
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
    display: flex;
    justify-content: space-around;
}

#progressbar .active {
    color: #b84d30
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
   width: 100%;
    position: relative;
    font-weight: 400
}

#progressbar #account:before {
    font-family: FontAwesome;
    content: "\f13e"
}

#progressbar #personal:before {
    font-family: FontAwesome;
    content: "\f007"
}

#progressbar #payment:before {
    font-family: FontAwesome;
    content: "\f030"
}

#progressbar #payment2:before {
    font-family: FontAwesome;
    content: "\f030"
}

#progressbar #payment3:before {
    font-family: FontAwesome;
    content: "\f030"
}

#progressbar #confirm:before {
    font-family: FontAwesome;
    content: "\f00c"
}

#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px
}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: #b84d30;
}

.progress {
    height: 20px
}

.progress-bar {
    background-color: #b84d30;
}

.fit-image {
    width: 100%;
    object-fit: cover
}

.step_content{ padding: 25px 0 0 0; background: none;  margin: 10px 0 30px;}

.fc .fc-button-primary {
	background-color: #b84d30;
	border-color: #912f14;
	color: var(--fc-button-text-color);
}
.fc .fc-button-primary:focus {
	box-shadow:none !important; 
}

.fc .fc-button-primary:disabled {
	background-color: #b84d30;
	border-color: #912f14;
	color: var(--fc-button-text-color);
}

.fc-theme-standard th {
	background: #fff5f5;
}

.fc .fc-daygrid-day.fc-day-today {
	background-color: #fff5f5;
}


.fc .fc-col-header-cell-cushion {
	display: inline-block;
	padding: 12px 4px;
}
.fc .fc-daygrid-day-number {
	padding: 0px;
	position: relative;
	z-index: 4;
  font-size: 22px!important;
  font-weight: bold;
  width: 100%;
  text-align: center;
  padding-top: 14px;
}

label.timeslot{width: 100%; border: 1px #e09898 solid;  background-color: #ffffff; padding: 15px 20px 15px 60px; border-radius: 8px; font-weight: bold; font-size: 18px;}

.timeslot {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.timeslot input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 19px;
  left: 24px;
  height: 25px;
  width: 25px;
  background-color: #eee; border-radius: 6px;
}

/* On mouse-over, add a grey background color */
.timeslot:hover input ~ .checkmark {
  background-color: #b84d30;
}

/* When the checkbox is checked, add a blue background */
.timeslot input:checked ~ .checkmark {
  background-color: #0ac424;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.timeslot input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.timeslot .checkmark:after {
  left: 9px;
  top: 4px;
  width: 8px;
  height: 14px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}



.fc .fc-view-harness {
	flex-grow: 1;
	position: relative;
	background: #fff;
}

.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events {
	min-height: 2em;
	position: relative;
    display: none!important;
}

.fc .fc-toolbar-title{font-family: "Inria Sans", sans-serif; font-size: 20px; color: #000000;}
.fc .fc-button{font-size: 12px;}

.fc .fc-toolbar.fc-header-toolbar {
	margin-bottom: 12px;
	background: #fff5f5;
	padding: 10px 14px;
    border: 1px solid #f9bcac;
}






.step_content.nextappoint{background: #fff; border-radius: 60px; padding: 40px; margin-top: 40px; box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2)}
.step_content.nextappoint .form-input{background: #FFF5F5; border-radius: 30px; border: none; min-height: 57px; font-size: 18px; font-weight: 700; color: #000000;}
.step_content.nextappoint .form-input::placeholder{color: #000000;}
.step_content.nextappoint .form-label{color: #B84D30; font-size: 17px; font-weight: 700; padding-left: 22px;} 

@media (max-width: 1400px) {
    .fs-title{font-size: 60px;}
    }

@media (max-width: 1200px) {
.fs-title{font-size: 48px;}
.FreeConsult{display: none;}
}

@media (max-width: 768px) {

    .fs-title , .fs-title.small{font-size: 50px; line-height: 1.1;}
    .FreeConsult{display: none;}
    
    .fc .fc-daygrid-day-number {
        font-size: 16px !important;
        padding-top: 0px;
    }
    
    label.timeslot {
        padding: 8px 20px 8px 60px;
    }
    .checkmark {
        
        top: 12px;
        
    }
    .step_content.nextappoint{padding: 40px 20px;}
    
    
    }



    @media (max-width: 550px) {
      
        .subheadings{font-size: 15px; line-height: 1.4;}
        
    }