#wqs-searchinput
{
    border: 1px solid #ddd;
    padding: 5px;
    width: 100%;
    border-radius: 4px;
}
#wqs-searchinput:focus{
    border:1px solid #f2f2f2;
    box-shadow: none;
    outline: 0 none;
    border-bottom: 2px solid #007ef4;
    transition: all 400ms ease-in;
}

#wqs-searchResult
{
    background-color: #f5f5f5;
    padding: 10px;
    max-height: 200px;
    overflow-y: scroll;
}

.wqs-searchList > div
{
    transition: all 400ms ease;
}

#wqs-searchBox
{
    position: relative;
}

#wqs-clear
{
    position: absolute;
    right: 1px;
    bottom: 0px;
    height: 32px;
    width: 30px;
    background: orange;
    color: #fff;
    cursor: pointer;

    -moz-border-top-right-radius: 4px;

    -moz-border-bottom-right-radius: 4px;

    text-align: center;
    font-size: 24px;

}

*
{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*angular animation*/
.animate-enter,
.animate-leave
{
    -webkit-transition: 400ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
    -moz-transition: 400ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
    -ms-transition: 400ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
    -o-transition: 400ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
    transition: 400ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
    position: relative;
    display: block;
}

.animate-enter.animate-enter-active,
.animate-leave
{
    opacity: 1;
    top: 0;
    height: 30px;
}

.animate-leave.animate-leave-active,
.animate-enter
{
    opacity: 0;
    top: -50px;
    height: 0px;
}