:root {

}

input.custom-search-input {
    width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    height: auto;
    background-color: #fff;
    border-color: #ccc;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    font-size: .7rem;
    color: #000;

    &.open {
        padding: .25em .5em;
        width: 15em;
    }

    transition: width 0.2s ease-in-out;
}

.custom-search-control {
    display: flex;
}

.custom-search-container {
    position: relative;
}

.custom-search-result-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #fff;
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
    list-style: "none";

    li {
        margin: 0;
        padding: .5rem .5rem;
        border-bottom: .05rem solid #ccc;
        color: #333;
    }
}

.custom-search-btn {
    width: 1.7rem;
    height: 1.5rem;
    line-height: 1em;
    padding: 0 .35rem;
    background-color: #fff;
    border: 2px solid rgba(0,0,0,0.2);
    color: #000;
}
