
.as-autocomplete-container-head {
    position: relative;
}

.as-autocomplete-main-head {
    max-height: calc(100vh - 215px);
    width: 100%;
    overflow-y: scroll;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,.1) !important;
    position: fixed;
    z-index: 1000;
}

.as-autocomplete-main-head::-webkit-scrollbar {
    display: none;
}

.as-autocomplete-ul-head {
    list-style: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.as-autocomplete-ul-head li {
    font-size: 16px !important;
    line-height: 1.5 !important;
    padding: 15px 19px !important;
    margin: 0 !important;
}

.as-autocomplete-ul-head li:before {
    display: none;
}

.as-autocomplete-ul-head li::marker {
    display: none;
}

.as-autocomplete-item-head {
    /*    border-bottom: 1px solid #c0c0c0;*/
}

.as-autocomplete-item-head:hover {
    cursor: pointer;
}

.as-autocompplete-active-item-head, .as-autocomplete-item-head:hover {
    background-color: #dc0023;
    color: #fff;
}


@keyframes as-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 1023px) {

    .as-autocomplete-main-head {
        max-height: calc(100vh - 188px);
    }
}

@media only screen and (max-width: 575px) {

    .as-autocomplete-main-head {
        max-height: calc(100vh - 150px);
    }
}

