.search-box-header {
    position: relative;
    width: 100%;
    height: 50px;
    line-height: 50px;
}
.search-box-input {
    height: 50px;

    width: 100%;
    background: #F7F7F7;
    border: solid 1px #F7F7F7;
    color: #757575;
    padding: 0 30px;
    padding-left: 60px;
    font-weight: 300;
    border-radius: 25px;
}
.btn-search {
    position: absolute;
    left: 15px;
    top: 5px;
    background: none;
    border: none;
    height: calc(100% - 10px);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
}
.btn-search svg circle {
    stroke: #757575;
}
.btn-search svg path {
    fill: #757575;
}

.search-error {
    position: absolute;
    top: 100%;
    left: 0;
    white-space: nowrap;
    color: #ff0000;
    margin-top: -10px;
    pointer-events: none;
}