.search_catalog.search-form {
    position: relative;
    width: 100%;
    color: var(--theme-color-violet);
}

.search_catalog.search-form .form-control {
    width: 100%;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: inherit;
    color: inherit;
    padding: 0.5em 1em 0.5em 2.5em !important;
    border-color: var(--theme-color-grey-light);
    background: var(--theme-color-grey-light);
    border-radius: 1.2rem;
}

.search_catalog.search-form .form-control:hover,
.search_catalog.search-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--theme-skit-color) !important;
}

.search_catalog.search-form .search-submit {
    display: -webkit-flex;
    display: 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%);
    left: 10px;
    width: 18px;
    height: 18px;
    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_catalog.search-form .search-submit svg {
    width: 100%;
    height: auto;
    -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;
}

.search_catalog.search-form .search-submit:hover {
    opacity: 1;
}

.search_catalog.search-form .search-submit input {
    display: none;
}

.search_catalog.search-form .form-control::-webkit-input-placeholder {
    color: inherit !important;
    font-weight: inherit;
}

.search_catalog.search-form .form-control:-ms-input-placeholder {
    color: inherit !important;
    font-weight: inherit;
}

.search_catalog.search-form .form-control::-ms-input-placeholder {
    color: inherit !important;
    font-weight: inherit;
}

.search_catalog.search-form .form-control::placeholder {
    color: inherit !important;
    font-weight: inherit;
}

/* ********************************* */
div.search-popup {
    z-index: 99999 !important;
}