        body{
            position: relative;
        }
        #shadow{
            width: 100%;
            height: 100%;
            position: fixed;
            background: rgba(0, 0, 0, 0.7);
            z-index: 100;
            display: none;
            overflow: hidden;
        }
/*        #form-main{
            width: 100%;
            height: 100%;
            position: relative;
            background: transparent;
            overflow: hidden;
        }*/
        #book-now-section{
            left: 25%;
            right: 25%;
            width: calc(50% - 40px);
            opacity: 0;
            transition: 0.5s;
            position: fixed;            
            transform-style: preserve-3d;
            transform: rotateX(25deg);
            position: fixed;
            background: ghostwhite;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            padding: 10px 20px;
            overflow: hidden;
            z-index: -1;
        }
        @media (max-width: 600px){
            #book-now-section{
                left: 20px;
                right: 20px;
                width: calc(100% - 40px);
            }
        }
        #book-now-section #form{
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
            padding: 5px;
        }
        #book-now-section .input-cls, select{
            width: 100%;
            padding: 10px;
            border: 1px solid gray;
            outline: none;
            margin: 5px;
            overflow: hidden;
        }
        #book-now-section #submit{
            align-self: flex-start;
            background: darkcyan;
            border: none;
            color: ghostwhite;
            outline: none;
        }
        #book-now-section h4{
            text-align: center;
        }
        #lic-val{
            width: 100%;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
            overflow: hidden;
            padding: 5px;
        }
        .booking-btn{
            z-index: 50;
            padding: 10px 20px;
        }
        #cancel{
            width: 30px;
            height: 30px;
            top: 0%;
            left: calc(100% - 30px);
            position: absolute;
            cursor: pointer;
            overflow: hidden;
            z-index: 100;
        }
        #navbar-toggler{
            background: #1C1E32;
            border-radius: 5px;
            box-sizing: border-box;
            box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.5);
        }