.spec_search_wrap {
    display: -webkit-flex;
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.spec_search_block {
    position: relative;
    display: block;
    width: 100%;
}

.spec_search_input {
    width: 100%;
    height: auto;
    color: #fff;
    padding: 1rem 2rem 1rem 3rem;
    border: 2px solid var(--theme-color-dark);
    background: var(--theme-color-dark);
    border-radius: 100px;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.spec_search_input:focus {
    border-color: var(--theme-color-main);
}

.spec_search_icon {
    position: absolute;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    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: 1rem;
    width: 20px;
    height: 20px;
    color: #fff;
    background: transparent;
    -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;
}

.spec_search_block .spec_search_input::-webkit-input-placeholder {
    color: #fff !important;
    opacity: 0.5;
}

.spec_search_block .spec_search_input:-ms-input-placeholder {
    color: #fff !important;
    opacity: 0.5;
}

.spec_search_block .spec_search_input::-ms-input-placeholder {
    color: #fff !important;
    opacity: 0.5;
}

.spec_search_block .spec_search_input::placeholder {
    color: #fff !important;
    opacity: 0.5;
}

@media all and (max-width: 767px){
    .spec_search_wrap {
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}