#im-booking-form{
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 99999;
  width: 400px;
  height: 100%;
  background: #fff;
  padding: 0; 
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -o-transition: 0.8s;
  -ms-transition: 0.8s;
  transition: 0.8s;
}
#im-booking-form.active{
  right: 0;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -o-transition: 0.8s;
  -ms-transition: 0.8s;
  transition: 0.8s;
}
.im-booking-search-holder{
  position: relative;
}
#im-booking-search {
  width: 100%;
  font-size: 16px;
  padding: 12px 40px 12px 20px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
}
.im-booking-search-holder i{
    position: absolute;
    top: 14px;
    right: 15px;
    font-size: 24px;
}
#im-booking-table {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #ddd;
  font-size: 18px;
}
#im-booking-table th, #im-booking-table td {
  text-align: left;
  padding: 12px;
}
#im-booking-table tr {
  border-bottom: 1px solid #ddd;
}
#im-booking-table tr.header, #im-booking-table tr:hover {
  background-color: #f1f1f1;
}
.im-custom-checkbox{
  position: relative;
}
.im-custom-checkbox input[type=checkbox]{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}
.im-custom-checkbox i{
  position: absolute;
  top: 20px;
  left: 15px;
  z-index: 1;
}
.im-custom-checkbox input[type=checkbox] + i + i{
  display: none;
}
.im-custom-checkbox input[type=checkbox]:checked + i{
  display: none;
}
.im-custom-checkbox input[type=checkbox]:checked + i + i{
  display: inline-block;
}
.im-custom-checkbox span{
  padding: 30px;
  font-size: 14px;
}
.im-custom-checkbox span small{
  max-width: 75%;
  display: inline-block;
  line-height: normal;
}
.im-custom-checkbox span.service-right{
  float: right;
  width: 15%;
  padding: 0 !important;
}
.im-booking-form-header{
  position: relative;
}
.im-booking-form-header h2{
  text-align: center;
  margin: 0 0 0;
  padding: 10px;
}
.im-booking-form-header i{
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  font-size: 22px;
}
.im-footer-holder{
  align-items: center;
  display: flex;
  justify-content: center;
}
.im-footer-holder span,
.im-footer-holder button{
  display: inline-block;
  flex: 1 1 0;
  font-size: 16px;
  height: 44px;
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  line-height: 44px;
  padding-top: 0;
  padding-bottom: 0;
}
.im-footer-holder span:hover,
.im-footer-holder button:hover{
  opacity: .8;
}
.im-footer-holder .im-prev-button,
.im-footer-holder .im-next-button,
.im-footer-holder .im-confirm-button{
  background: #231F20;
  color: #fff;
}
.im-footer-holder .total-price{
  background: #fbeef5;
  color: #fff;
}
.im-footer-holder .prev-button-1,
.im-footer-holder .prev-button-2,
.im-footer-holder .next-button-2,
.im-footer-holder .im-confirm-button{
  display: none;
}
.im-step{
  display: none;
  height: 600px;
  padding: 0 20px 40px;
  overflow-y: scroll;
}
.im-step.active{
  display: block;
}
.im-step-4{
  padding-top: 100px;
  text-align: center;
}
.error-message-holder p{
  background: #F9D7DA;
  color: #721c24;
  padding: 10px;
  text-align: center;
  margin: 0;
}
.im-field-holder{
  width: 100%;
  margin-bottom: 10px;
  float: left;
  width: 100%;
}
.im-field-holder input,
.im-field-holder textarea,
.im-field-holder select{
  width: 100%;
  height: 42px;
  border: 1ox solid #888;
}  
.im-field-holder textarea{
  height: 120px;
  resize: none;
}
.im-field-holder .error{
  border-color: #721c24;
  background-color: #F9D7DA;
}
.im-booking-form-footer{
  position: fixed;
  bottom: 0;
  z-index: 999;
  width: inherit;
  height: auto;
}
.order-summary-holder h3{
  text-align: center;
}
.order-summary-holder table{
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  width: calc(100% - 40px);
  margin: 0 auto;
  max-height: 500px;
  overflow-y: scroll;
}
.order-summary-holder table th,
.order-summary-holder table td{
  text-align: left;
}
.add-more-services{
  cursor: pointer;
  display: block;
  text-align: center;
  margin-top: 20px;
}
.im-clr{
  clear: both;
}
.im-sticky-button{
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 15px 30px;
  font-size: 22px;
  border-radius: 40px;
  background: #fbeef5;
  color: #000 !important;
  z-index: 999;
}
.im-sticky-button:hover{
  opacity: .8;
}
@media only screen and (max-width: 400px){
  #im-booking-form{
    width: 98%;
  }
}