.searchBar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 0vh;
    z-index: -1;
    opacity: 0;
    .closebtn{
        position: absolute;
        right: 50px;
        top: 40px;
        z-index: 11;
        cursor: pointer;
        i{
            height: 50px;
            width: 50px;
            background-color: green;
            font-size: 35px;
            color: $white;
            text-align: center;
            line-height: 50px;
        }
    }
    .searchOverly{
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: $primaryColor;
        opacity: .83;
        cursor: pointer;
    }
    .searchContent{
        width: 600px;
        height: 60px;
        position: absolute;
        background-color: #fff;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        z-index: 12;
        border-radius: 10px;    
        overflow: hidden;
       form{
        position: relative;
        .form_control{
            display: block; 
            margin-bottom: 10px;
            width: 100%;
            height: 60px;
            padding:23px;
            background-color:#fff;
            background-clip: padding-box;
            border: 1px solid #dededf;
            border-radius: 5px;
            transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
            -webkit-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
            -moz-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
            -ms-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
            -o-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
            &:focus{
               outline: 0;
           } 
            &::placeholder{
                font-size: 16px;
                color: #4c4c4c;
                font-weight: 400;
            }
        }
        .saerch_icon{
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            i{
                height: 60px;
                width: 70px;
                background-color: green;
                text-align: center;
                line-height: 60px;
                font-size: 30px;
                color: white;
            }
         }
       }
    }
}


.serachNewClass{
    opacity: 1;
    height: 100vh;
    transition: all linear .6s;
    z-index: 11;
}
.serachNewClass2{
    opacity: 0;
    height: 0vh;
    transition: all linear .6s;
    z-index: -1;
}