<style>

    @keyframes select-preload{
            0% {
              transform: rotate(0deg);
            }

            25% {
              transform: rotate(90deg);
            }

            50%{
             transform: rotate(180deg);
            }

            75% {
              transform: rotate(270deg);
            }

            100%{
              transform: rotate(360deg);
            }
        }



    .suggestion-list, .suggestion-message{
        width: 86%;
        max-height: 200px;
        overflow-y: auto;
        background: white;
        position: absolute;
        left:15px;
        top: 60px;
        padding: 0;
        z-index: 10;
        /*display: none;*/
        border: solid thin lightgray;
       /* -webkit-appearance: none;
        -moz-appearance: none;
        text-indent: 1px;
        text-overflow: '';*/
    }

    .suggestion-list option{
        /*padding: 2px 5px;*/
        font-weight: bold;
        font-size: 14px;
        background: #F9F9F9;
       
    }

    .suggestion-list option:first-child{
        background: #CECECE !important
    }

    .suggestion-message{
        /*height: 20px;*/
        padding: 2px;
        font-weight: bold !important;
        font-size: 12px !important;
       
        
    }

    
    

    .text-enter{
        color:green !important;
    }

    .text-no-results{
        color:red !important;
    }

    

    /*.suggestion-list option:hover{
        cursor: pointer;
        background: lightgray
    }*/

    .searching, .show-list{
        color: black;
        position: absolute;
        top:32px;
        right: 25px;
        z-index: 10;
        font-size: 18px;
    }

    .show-list{
        font-weight: bold;
        color: black !important;
        cursor: pointer;
    }

    .searching{
        color: gray;
        font-size: 20px;
        opacity: .8;
        animation-name: search;
        animation-iteration-count: infinite;
        animation-direction: normal;
        animation-duration: 1s;
        display: none
    }


</style>