
.autocomplete-container {
    position: relative;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 11;
    max-height: 200px;
    overflow-y: auto;
    left: 0;
    right: 0;
    margin-top: 2px;
}

    .autocomplete-items div {
        padding: 8px 12px;
        cursor: pointer;
        background-color: #fff;
        border-bottom: 1px solid #d4d4d4;
    }

        .autocomplete-items div:hover {
            background-color: #e9e9e9;
        }

.autocomplete-active {
    background-color: #007bff !important;
    color: white;
}

.load {
    position: fixed;
    top: 25%;
    left: 47%;
}

    .load > div {
        width: 18px;
        height: 18px;
        background: #1abc9c;
        border-radius: 100%;
        display: inline-block;
        animation: move 1.4s infinite ease-in-out both;
    }

    .load .b1 {
        animation-delay: 0.16s;
    }

    .load .b2 {
        animation-delay: 0.32s;
    }

    .load .b3 {
        animation-delay: 0.48s;
    }

@keyframes move {
    0% {
        transform: scale(0)
    }

    40% {
        transform: scale(1.0)
    }

    100% {
        transform: scale(0)
    }
}

.loadmask {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 999999999;
    position: fixed;
    top: 0;
    left: 0;
}