#shopify-section-search-drawer {
    position: fixed;
    left: 100%;
    top: 0;
    width: 100%;
    max-width: 450px;
    margin-left: 1.25rem;
    height: 100vh;
    background-color: white;
    z-index: 9999999999;
    overflow-y: auto;
    transition: all .3s;
    &.active {
        transform: translateX(-100%);
    }
    .search-drawer--header {
        padding: 1.5rem;
        text-align: center;
        margin: 0;
        border-bottom: 1px solid var(--col-parchment);
        .search-drawer-header--title {
            font-size: 22px;
            margin: 0;
        }
    .search-drawer--close {
        position: absolute;
        cursor: pointer;
        left: 1.5rem;
    }
}
.field {
    width: calc(100% - 3rem);
    margin: auto;
    .field__label {
        line-height: 2.5;
        font-size: 14px;
        color: var(--col-black);
    }
    &::after {
        box-shadow: unset;
        border-bottom: 2px solid var(--col-ink);
    }
    .search__input-search--icon {
    display: flex;
    height: 22px;
    position: absolute;
    left: 0;
    bottom: 6px;
    z-index: 99;
    svg {
        height: 20px;
    }
    path {
        fill: var(--col-black);
    }
    }
    .search__input {
        padding: 2.5rem;
        padding-bottom: 1.5rem;
        position: relative;
        &::placeholder {
            color: black;
            font-size: 14px;
            opacity: .7 !important;
        }
        &:focus {
            padding: 2.5rem;
            padding-bottom: 1.5rem;
        }
    }
}
.search-drawer--no-results {
    font-size: 14px;
    text-align: center;
    padding: 2rem 0;
}
#predictive-search-products,
.predictive-search__heading {
    font-size: 15px;
    text-transform: uppercase;
    border-bottom: 0;
}
.predictive-search__item {
    font-size: 14px;
    line-height: 1.2;
}
.search-results--inactive {
    padding: 1.5rem;
    margin-top: 2rem;
    .search-results-inactive--header {
        font-size: 13px;
        text-transform: uppercase;
    }
    .search-results-inactive--body {
        margin-top: .75rem;
    .search-results-inactive--list {
        margin: 0;
        padding-left: 0;
        .search-results-inactive--item {
            list-style: none;
        }
        .search-results-inactive--item {
            font-size: 16px;

        }
    }
}
}
}
.search-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--col-ink);
    opacity: 0;
    display: block !important;
    pointer-events: none;
    z-index: -1;
    transition: all .3s;
    &.active {
        pointer-events: all;
        z-index: 98;
        opacity: .7;
    }
}