.news-search .search-box {
    position: relative;
    justify-content: space-between;
}

.news-search .search-simple-result {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 100%;
    min-width: 40vw;
    z-index: 110;
    box-sizing: border-box;
    background-color: rgb(240, 241, 245);
    transition: padding 0.25s ease, height 0.25s ease;
}

.news-search .search-simple-result.active {
    padding: 24px 40px 40px;
}

.news-search .search-input-line__close {
    position: absolute;
    right: 50px;
}

.news-search .search-input-line__close:not(.active) {
    display: none;
}

.search-simple-result button{
    display: none;
}
.search-simple-result.active button{
    display: block;
}

@media screen and (max-width: 1024px) {
    .news-search .search-simple-result {
        min-width: 60vw;
    }
}