.l-content__searchform {
    border: 2px solid #ccc;
    border-left: 0;
    border-right: 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0 0 35px;
    padding: 15px 25px;
    position: relative;
}
.l-content__searchform::after {
    background: #ccc;
    content: "";
    display: block;
    height: 80%;
    margin: auto;
    position: absolute;
    left: 60%;
    top: 0;
    bottom: 0;
    width: 2px;
}
.l-searchform__left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: calc(60% - 20px);
}
.l-searchform__right {
    width: calc(40% - 20px);
}
.searchform-tags {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.searchform-tags .tag a {
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    padding: 0 15px;
    width: 100%;
    max-width: max-content;
}
.searchform-tags .tag.active a {
    background: #6fbff5;
    border: 2px solid #6fbff5;
    color: #fff;
    pointer-events: none;
}
.l-searchform__right form {
    display: flex;
    align-items: center;
}
.l-searchform__right form input {
    height: 45px;
    padding: 5px 10px;
    width: 100%;
}
.l-searchform__right form button {
    background: none;
}
.l-searchform__right form button:hover {
    border: 0;
}
@media screen and (max-width: 700px) {
    .l-content__searchform {
        padding: 15px;
    }
    .l-content__searchform::after {
        display: none;
    }
    .l-searchform__left {
        border-bottom: 2px solid #ccc;
        margin: 0 0 15px;
        padding: 0 0 15px;
        width: 100%;
    }
    .l-searchform__right {
        width: 100%;
    }
}