/***********************
 * search-popup
***********************/
.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    opacity: 0;
    z-index: 99999;
    visibility: hidden;
    transform: scale(0.5, 0.5);
    background-color: rgba(0, 0, 0, 0.70);
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
 }
 .search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    transform: scale(1, 1);
 }
 .close-search {
    position: absolute;
    left: 0;
    right: 0;
    border: transparent;
    top: 20%;
    margin: 0 auto;
    border-radius: 50%;
    text-align: center;
    background-color: #ffffff;
    width: 50px;
    height: 50px;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
 }
 .search-active .close-search {
    visibility: visible;
    opacity: 1;
 }
 .close-search:before,
 .close-search:after {
    content: '';
    position: absolute;
    height: 2px;
    background-color: #0F1011;
    width: 25px;
    top: 24px;
    right: 13px;
    transform: rotate(45deg);
 }
 .close-search:after {
    transform: rotate(-45deg);
 }
 .search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: 0 auto 0;
    transform-origin: center;
    background-color: #ffffff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
 }

 .search-popup .cus-div {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: 0 auto 0;
    transform-origin: center;
    background-color: #ffffff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
 }
 .search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
 }
 .search-popup .form-group input[type="search"], .search-popup .form-group input[type="select"],
 .search-popup .form-group input[type="number"],.search-popup .form-group input[type="text"] {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 50px;
    color: #0F1011;
    height: 70px;
    width: 100%;
    padding: 10px 30px;
    background-color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    text-transform: capitalize;
    border: none;
 }
 .search-popup .form-group input[type="submit"],
 .search-popup .form-group button {
    position: absolute;
    right: 30px;
    top: 3px;
    height: 70px;
    line-height: 30px;
    background: transparent;
    text-align: center;
    font-size: 30px;
    color: var(--loanlift-text-black);
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
 }