.lava-booking-switcher {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.lava-booking-switcher input{
    opacity: 0;
    width: 0;
    height: 0;
}
.lava-booking-switcher .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}
.lava-booking-switcher .slider:before{
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}
.lava-booking-switcher .slider.round{
    border-radius: 34px;
}
.lava-booking-switcher .slider.round:before{
    border-radius: 50%;
}
.lava-booking-switcher input:checked + .slider {
    background-color: #2196F3;
}
.lava-booking-switcher input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}
.lava-booking-switcher input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}
.lava-booking-switcher.small{
    width: 30px;
    height:18px;
}
.lava-booking-switcher.small .slider:before{
    width:10px;
    height:10px;
}
.lava-booking-switcher input:checked + .slider:before {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
}

.lava-bookings-wrap .float-label > label {
    line-height: 1;
    color: #aaa;
    padding: 1em 1.2em;
    font-size:0.9em;
}
.lava-bookings-wrap .float-label input:not(:placeholder-shown)~label,
.lava-bookings-wrap .float-label textarea:not(:placeholder-shown)~label {
    font-size: 10px;
    color: #aaa;
    padding: 7px 0 0 17px;
}
.lava-bookings-wrap .float-label .form-control:focus{
    border-color: #000;
}