/* --------------------------------------------------------------
SearchWP customizations
-------------------------------------------------------------- */

main.wpsearchpagemain {
    padding-top: 30px;
}

.search-side-column {
    border-right: 1px solid var(--wp--preset--color--blue);
}
.search-side-column .searchtype {
   /* border-bottom: 2px var(--wp--preset--color--blue) solid;*/
}
.search-result {
    margin-bottom: 40px;
}
.searchwpfield {
    background: transparent;
    border-bottom: 1px var(--wp--preset--color--blue) solid ;
    padding-bottom: 10px;
    /*margin-top: 30px;*/
}

svg#search-icon-searchwp {
    display: inline;
    position: relative;
    left: -50px;

    color: var(--wp--preset--color--blue);
}
svg#search-icon-searchwp path {
    fill: var(--wp--preset--color--blue);
}

.wpsearchpagination {

}
@media (max-width: 599px) {
    .search-box input[type=search] {
        font-size: var(--wp--preset--font-size--l);
    }
}
@media (min-width: 600px) and (max-width: 991px) {
    .search-box input[type=search] {
        font-size: var(--wp--preset--font-size--xl);
    }
}
@media (min-width: 992px) {
    .search-box input[type=search] {
        font-size: var(--wp--preset--font-size--xxl);
        line-height: 1.1;
    }
}

/* clears the ‘X’ from Internet Explorer */
.search-box input[type=search]::-ms-clear { display: none; width : 0; height: 0; }
.search-box input[type=search]::-ms-reveal { display: none; width : 0; height: 0; }/* clears the ‘X’ from Chrome */
.search-box input[type="search"]::-webkit-search-decoration,
.search-box input[type="search"]::-webkit-search-cancel-button,
.search-box input[type="search"]::-webkit-search-results-button,
.search-box input[type="search"]::-webkit-search-results-decoration { display: none;
}

/* clear white outline on search bar */
.search-box input[type="search"]
{
    outline: none;
}
/* clear outline navbar search */
.wp-block-search__inside-wrapper input[type="search"] {
    outline: none;
}
/* normalize safari search */

textarea,
input[type="text"],
input[type="button"],
input[type="submit"],
[type='search'] ,
input[type='search'] {
    -webkit-appearance: none;
    border-radius: 0;
}
