input.autocomplete + .clear-input {
    display: block;
    width: 40px;
    height: 17px;
    cursor: text;
    position: absolute;
    top: 11px;
    right: 10px;
    filter: alpha(opacity=30);
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -ms-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    /* background: url(https://st.bsn.ru/img/layout/typewatch-close-icon.png) no-repeat center #fff; */
    z-index: 500;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+50,ffffff+50,ffffff+100&0.01+0,1+50,1+100 */
    background: -moz-linear-gradient(left, rgba(255,255,255,0.01) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(255,255,255,0.01) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(255,255,255,0.01) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#03ffffff', endColorstr='#ffffff',GradientType=1 );
    /* IE6-9 */
}

input.autocomplete + .clear-input:hover {
    opacity: 1;
    filter: alpha(opacity=100);
}

input.autocomplete + .clear-input.hidden {
    display: none;
}

input.autocomplete + .clear-input:before {
    display: block;
    background: #fff;
    z-index: 2;
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 18px;
    float: right;
    position: relative;
    cursor: pointer;
    color:#ccc;
}
input.autocomplete + .clear-input:hover:before {
    color:#000;
}