/*** WordPress WP Default Search Page ***/
body.search .search-page-sidebar {
    padding: 60px;
    padding-top: 160px;
    background-color: #FFE69A;
    background-image: url('assets/pattern.svg');
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: top right;
    margin-bottom: 50px;
}
body.search article {
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--mid-grey);
}
body.search article,
body.search article * {
    text-decoration: none;
    color: var(--dark);
}
body.search article h4 {
    margin-bottom: 15px;
}
body.search article p {
    margin-bottom: 20px;
}
@media(max-width: 1599.98px) {
    body.search .search-page-sidebar {
        padding: 40px;
        padding-top: 130px;
    }
}
@media(max-width: 575.98px) {
    body.search .search-page-sidebar {
        padding: 25px;
        padding-top: 100px;
    }
}



/*** Search Bar ***/
.wp-search-bar {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 40px;
}
.wp-search-bar input[type='search'],
.wp-search-bar button[type='submit'] {
    height: 50px;
    border-radius: 6px;
}
.wp-search-bar input[type='search'] {
    width: 100%;
    margin-top: 5px;
    border: 1px solid #C8C7C6;
    background-color: #FAF9F7;
    font-size: 18px;
    padding: 14px 30px;
    padding-left: 40px;
    background-image: url('assets/search-eyeglass.svg');
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: 14px 50%;
}
.wp-search-bar button[type='submit'] {
    position: relative;
    right: 0;
    top: 0;
    width: 100%;
    background-color: var(--dark);
    background-image: url('assets/search-arrow.svg');
    color: white;
    background-size: 15px;
    background-repeat: no-repeat;
    background-position-x: calc(100% - 15px);
    background-position-y: center;
    box-shadow: none;
    border: none;
    transition: ease all .3s;
    margin-top: 10px;
}
.wp-search-bar button[type='submit']:hover {
    opacity: 0.8;
    background-size: 13px;
}