.catalog_search.search-form {
    position: relative;
    width: 100%;
}

.catalog_search.search-form .form-control {
    width: 250px;
    max-width: calc(100vw - 4rem);
    padding: 5px 2rem 5px 0.5rem;
    border-color: var(--theme-color-grey);
    background: transparent;
}

.catalog_search.search-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--theme-skit-color);
}

.catalog_search .search-submit {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    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%);
    right: 4px;
    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;
}

.catalog_search .search-submit:hover {
    opacity: 1;
}

.catalog_search .search-submit input {
    display: none;
}

/* ********************************* */
div.search-popup {
    z-index: 99999 !important;
}