.searchbox {position: relative;font-size: 14px;margin: 15px 0px;box-sizing: border-box;background: #2d2d2d;border: 1px solid #333333;display: flex;align-items: center;border-radius: 50px;width: 220px;}

.searchbox .inputPlaceholder {
    position: absolute;
    top: 0;
    left: 15px;
    height: 100%;
    align-items: center;
    pointer-events: none;
    display: flex;
    z-index: 1;
    transition: all .3s;
    color: #99999963;
}

.searchbox input {
    width: 100%;
    height: 100%;
    padding: 9px;
    outline: none;
    border-radius: 4px;
    font-family: 'Nunito', sans-serif;
    box-sizing: border-box;
    border: none;
    background: none;
    margin-left: 5px;
    color: #bbbbbb;
}

.searchbox .inputPlaceholder:before {content: '';width: 100%;position: absolute;left: 0;height: 18px;top: 0;bottom: 0;margin: auto;/* background: white; */z-index: 0;}

.searchbox input:focus+.inputPlaceholder, .searchbox input.hasText+.inputPlaceholder {
    top: -7px;
    left: 20px;
    font-size: 10px;
    height: 14px;
    background: white;
    padding: 0px 2px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 41%, rgb(29 29 29) 43%, rgb(29 29 29) 50%, rgb(29 29 29) 57%, rgba(255,255,255,0) 57%);
    color: #999;
}

.searchbox i {
    margin-right: 10px;
    color: #abacaf;
}

.searchbox.full {
    width: 100%;
}