button.search-popup-toggle {
    align-items: center;
    background-color: transparent;
    border: none;
    color: currentColor;
    text-transform: uppercase;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-family: var(--wp--preset--font-family--body);
    gap: .5rem;
    position: relative;
    
}
button.search-popup-toggle span {
    line-height: 0;
    display: block;
}
.search-popup-toggle svg {
    height: auto;
    min-width: 14px;
}
.search-popup-toggle>* {
    pointer-events: none;
}
.search-popup-toggle.open svg {
    display: none;
}
.search-popup-toggle.open:before {
    mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 fill=%27none%27%3E%3Cpath stroke=%27%23fff%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%271.5%27 d=%27m7 7 10 10M7 17 17 7%27/%3E%3C/svg%3E");
    mask-position: center;
    mask-repeat: no-repeat;
    background-color: currentColor;
    content: "";
    display: block;
    height: 14px;
    width: 14px;
}
#search-popup {
    max-height: 1000px;
    position: absolute;
    top: -300%;
    z-index: -10;
    opacity: 0;
    visibility: hidden;
    transition: max-height .3s ease, opacity .3s ease, visibility .3s ease, top 0.3s ease;
}
#search-popup.open {
    opacity: 1;
    position: relative;
    visibility: visible;
    border-bottom: none;
}
@media screen and (max-width: 899px) {
    button.search-popup-toggle {
        gap: 0;
        padding-left: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        &.open {
            z-index: 30;
            position: absolute;
            right:var(--wp--style--root--padding-right);
        }
    }
    .search-popup-toggle span {
        font-size: 0px;
        opacity: 0;
        width: 0px;
    }
    #search-popup.open {
        z-index: 20;
        &:before {
            content: "";
            background-color: white;
            top: 0;
            position: absolute;
            width: 100%;
            height: var(--header-height);
            display: block;
            top: calc(var(--header-height)* -1);
            left: 0;
            border-bottom: 1px solid var(--wp--preset--color--default-border);
        }
    }
}
/* FiboSearch customisations */
.dgwt-wcas-open-pirx .dgwt-wcas-open .dgwt-wcas-suggestions-wrapp {
    top: calc(var(--search-header-height, 100%) + var(--wp-admin--admin-bar--height, 0px) - 0.06rem)!important;
    border-radius: 0px !important;

    width: 100% !important;
    max-width: unset !important;
    border: none !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    position: fixed !important;
    border-bottom: 1px solid var(--wp--preset--color--default-border) !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem 10vw;
    & > *:not(.dgwt-wcas-suggestion-more) {
        max-width: 200px;
        flex-basis: 33%;
        flex-grow: 1;
    }
    & .dgwt-wcas-suggestion-more {
        width: 100%;
        position: unset;
        text-decoration: underline;
        text-underline-offset: 6px;
        text-decoration-color: currentColor;
        color: var(--wp--preset--color--contrast) !important;
        margin-top: 1.5rem;
        & * {
            color: var(--wp--preset--color--contrast) !important;
        }
        &:hover, &.dgwt-wcas-suggestion-selected {
            background-color: transparent !important;
            color: var(--wp--preset--color--deep-gold) !important;
            text-decoration-color: var(--wp--preset--color--contrast);
            & * {
                color: var(--wp--preset--color--deep-gold) !important;
            }
        }
    }
    & .dgwt-wcas-suggestion-product {
        display: block;
        text-align: center;
        border: 0.06rem solid var(--wp--preset--color--default-border);
        &:hover, &.dgwt-wcas-suggestion-selected {
            background-color: transparent !important;
            border-color: var(--wp--preset--color--deep-gold) !important;
        }
        & .dgwt-wcas-si {
            width: 100%;
            max-width: 100%;
            height: auto;
            & img {
                border:none;
            }
        }
        & .dgwt-wcas-content-wrapp {
            height: unset;
            display: block;
            padding: 1rem 0 0 0;
        }
    }
}
.dgwt-wcas-search-wrapp .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
    box-shadow: none !important;
    border: 1px solid var(--wp--preset--color--contrast) !important;
    &:focus {
        border-color: var(--wp--preset--color--deep-gold) !important;
    }
}
@media screen and (max-width: 600px) {
   .dgwt-wcas-suggestions-wrapp > a:nth-child(4n + 3) {
        display: none !important;
    }
}