/*
SteelJJ Webshop V5.6
Search clear button fix
*/

.search-wrap {
    position: relative;
    width: 100%;
}

.search-wrap .searchbox,
.search-wrap #search {
    width: 100%;
    padding-right: 46px;
}

#clear-search {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);

    width: 26px;
    height: 26px;

    display: none;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 999px;
    background: transparent;

    color: #888;
    font-size: 22px;
    font-weight: bold;
    line-height: 1;

    cursor: pointer;
    z-index: 5;
}

#clear-search.is-visible {
    display: flex;
}

#clear-search:hover {
    color: #d6a84f;
    background: rgba(214, 168, 79, 0.12);
}
