.background_search {
    width: 100%;
    height: 100%;
    background-color: #000000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    opacity: 0.8;
    display: none;
}
.background_search svg{
    cursor: pointer;
}
.box_search {
    width: 100%;
    max-width: 80rem;
    padding: 0rem 2rem;
    position: fixed;
    z-index: 1001;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}
.clear {
    clear: both;
    display: block;
}
.box_search_close{
    display: block;
    position: relative;
    padding-bottom: 3rem;
    z-index: 1004;
    text-align: end;
}
.box_search_close svg{
    position: relative;
    top: 2rem;
    right: 2rem;
    width: 2.5rem;
    height: 2.5rem;
    fill: #ffffff;
}
.box_search .form_search {
    border-bottom: 0.1rem solid #ffffff;
    padding-bottom: 2rem;
    display: flex;
    justify-content: space-between;
}
.box_search .form_search form{
    display: flex;
    align-items: center;
    width: 100%;
}
.box_search .form_search form input{
    width: 100%;
    font-weight: normal;
    font-size: 3rem;
    line-height: 3rem;
    text-align: left;
    color: #ffffff;
}
.box_search .form_search form input::placeholder{
    color: #ffffff;
}
.box_search .form_search svg{
    width: 5rem;
    height: 5rem;
    fill: #ffffff;
    margin-left: 1rem;
    cursor: pointer;
}
.box_search .form_search svg *{
    stroke: #ffffff;
}
@media screen and (max-width: 500px) {
    .box_search .form_search svg{
        width: 4rem;
        height: 4rem;
    }
    .box_search .form_search form input{
        font-size: 2rem;
        line-height: 2rem;
    }
    .box_search .form_search{
        padding-bottom: 1rem;
    }
}