input[type='checkbox']{ height: 0; width: 0;     display: none;}

input[type='checkbox'] + label{
  position: relative;
  
}
input[type='checkbox'] + label > ins{
  position: absolute;
  display: block;
  bottom: 0;
  left: 2em;
  height: 0;
  width: 100%;
  overflow: hidden;
  text-decoration: none;
  transition: height 300ms cubic-bezier(.4,.0,.23,1);
}
input[type='checkbox'] + label > ins > i{
  position: absolute;
  bottom: 0;
  font-style: normal;
  color: #4FC3F7;
}
input[type='checkbox'] + label > span{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1em;
  width: 30px;
  height: 30px;
  background: transparent;
  border: 2px solid #9E9E9E;
  border-radius: 50%;
  cursor: pointer;  
  transition: all 250ms cubic-bezier(.4,.0,.23,1);
}

input[type='checkbox'] + label:hover > span, input[type='checkbox']:focus + label > span{
  background: rgba(255,255,255,.1);
}
input[type='checkbox']:checked + label > ins{ height: 100%; }

input[type='checkbox']:checked + label > span{
  border: 15px solid var(--main-accent-color-lighter);
  animation: shrink-bounce 200ms cubic-bezier(.4,.0,.23,1);
}
input[type='checkbox']:checked + label > span:before{
  content: "";
  font: 33px / 1.4 "RobotoDraft", sans-serif;
    position: absolute;
    top: 17px;
    left: 7px;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transform: rotate(45deg);
  transform-origin: 0% 100%;
  animation: checkbox-check 125ms 250ms cubic-bezier(.4,.0,.23,1) forwards;
}

@keyframes shrink-bounce{
  0%{
    transform: scale(1);
  }
  33%{    
    transform: scale(.85);
  }
  100%{
    transform: scale(1);    
  }
}
@keyframes checkbox-check{
  0%{
    width: 0;
    height: 0;
    border-color: #212121;
    transform: translate3d(0,0,0) rotate(45deg);
  }
  33%{
    width: .2em;
    height: 0;
    transform: translate3d(0,0,0) rotate(45deg);
  }
  100%{    
    width: .2em;
    height: .5em;    
    border-color: #212121;
    transform: translate3d(0,-.5em,0) rotate(45deg);
  }

}
.group-label {
    cursor: pointer;
    display: flex;
    padding: 0;
    align-items: center;
}
.book-app-heading{
    background: linear-gradient(332deg, var(--main-accent-color), #ffbd3f);
    color: var(--bg-color);
    border-radius: 15px;
}
.form-step {
        display: none;
    }
    .form-step-active {
        display: block;
    }
    
    .form-step {
        opacity: 0;
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
        height: 0;
        overflow: hidden;
        position: absolute;
        width: 100%;
    }
    .form-step-active {
        padding: 10px 0px;
        opacity: 1;
        height: auto;
        position: relative;
        width: 100%;
    }
    .form-step-hidden {
        display: none;
    }
    .animate-in {
        animation: slideIn 0.5s forwards;
    }
    .animate-out {
        animation: slideOut 0.5s forwards;
    }
    .animate-in-reverse {
        animation: slideInReverse 0.5s forwards;
    }
    .animate-out-reverse {
        animation: slideOutReverse 0.5s forwards;
    }
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(100%);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    @keyframes slideOut {
        from {
            opacity: 1;
            transform: translateX(0);
        }
        to {
            opacity: 0;
            transform: translateX(-100%);
        }
    }
    @keyframes slideInReverse {
        from {
            opacity: 0;
            transform: translateX(-100%);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    @keyframes slideOutReverse {
        from {
            opacity: 1;
            transform: translateX(0);
        }
        to {
            opacity: 0;
            transform: translateX(100%);
        }
    }
    .step-indicators {
        display: flex;
        justify-content: center;
        
    }
    .step-dot {
        height: 35px;
        width: 35px;
        font-size: 20px;
        padding: 2px;
        color: white;
        margin: 0 5px;
        background-color: #bbb;
        border-radius: 40px;
        display: inline-block;
        transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
        text-decoration: none;
    }
    .step-dot:hover{
        
        background-color: var(--main-color) !important;
    }
    .step-dot.active {
        background-color: var(--main-accent-color);
    color: var(--bg-color);
    }
    
    .label-error {
        color: #b91212 !important;
    }
    #dob {
        min-width: -webkit-fill-available !important;
        height: 50px;
    }
    #bookingForm {
        overflow-x: hidden;
    }
    