.footer_search.search-form {
    position: relative;
    width: 100%;
}

.footer_search.search-form .form-control {
    width: 100%;
    height: 45px;
    font-size: 0.8rem;
    color: inherit;
    padding: 5px 0.5rem 5px 2rem;
    border-radius: 5px;
    border-color: #f3f3f3;
    background: #f3f3f3;
}

.search-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--theme-skit-color);
}

.footer_search .search-submit {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: 8px;
    width: 27px;
    height: 27px;
    background: transparent;
    border: none;
    opacity: 0.5;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    cursor: pointer;
}

.search-submit:hover {
    opacity: 1;
}

.search-submit input {
    display: none;
}

/* ********************************* */
div.search-popup {
    z-index: 99999 !important;
}