.search {
    display: none;
}

.header-content-search {
    --size: 13vmin;
    position: absolute;
    top: 50%;
    left: 0;
    width: var(--size);
    height: var(--size);
    transform: translateY(-50%);
}

.header-content-search {
    background: url(../../imgs/icon-search.png) no-repeat center center;
    background-size: 6vmin;
}

.header-content-search_input {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vmin;
    height: 10vmin;
    outline: none;
    border: none;
    box-sizing: border-box;
    border-radius: 9999px;
    padding: 0 4vmin;
    font-size: 4vmin;
}
.search .search-btn img{
    width: 20px;
    height: 20px;
}
@media screen and (min-width: 847px) {
    .search {
        display: flex;
        z-index: 2000;
    }

    .search input {
        width: 260px;
        height: 30px;
        padding: 5px 15px;
        font-size: 16px;
        border-radius: 999px 0 0 999px;
        outline: none;
        border: none;
        box-sizing: border-box;
    }

    .search .search-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 30px;
        border-radius: 0 999px 999px 0;
        border: 1px solid #fff;
        cursor: pointer;
    }

    .search .search-btn:active {
        box-shadow: inset 0px 0px 10px rgba(255, 255, 255, .5);
    }
}