.ase-wrapper {
    position: relative;
    display: inline-block;
}

.ase-icon {
    cursor: pointer;
    font-size: 20px;
}

.ase-box {
    position: absolute;
    top: 35px;
    right: 0;
    width: 0;
    opacity: 0;
    transition: 0.3s;
}

.ase-box.active {
    width: 260px;
    opacity: 1;
}

.ase-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.ase-results-wrap {
    background: #fff;
    border: 1px solid #ddd;
    margin-top: 5px;
    max-height: 200px;
    overflow-y: auto;
}

.ase-results li {
    list-style: none;
    padding: 10px;
}

.ase-results li:hover {
    background: #f5f5f5;
}

.ase-empty {
    padding: 10px;
    color: #999;
}
