.autocomplete-result {
    color: #0019A5;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 164.706% */
}

.autocomplete-result ul {
    border: 1px solid #BEBEBE;
    background: #FFF;
    padding: 4px 0;
    max-height: 180px;
    overflow-y: auto;
}

.autocomplete-result ul li {
    list-style: none;
    cursor: pointer;
    padding: 4px 16px;
}


.autocomplete-result ul li:hover {
    background-color: #C0D9ED;
}

.liLoader {
    display: flex;
    align-items: center;
}

.loaderIcon {
    width: 20px;
    height: 20px;
    border: 2px solid #0019A5;
    border-bottom-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin-right: 6px;
}

.address-input-container {
    position: relative;
}

.clear-input-btn {
    display: block;
    position: absolute;
    background: no-repeat center url("../../../styles/img/close_o2.a64103c76ae3.svg");
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    cursor: pointer;
}

.modify-address {
    vertical-align: top;
    font-size: 16px;
    color: #41B6E6 !important;
    cursor: pointer;
    line-height: 16px;
    display: block;
    position: relative;
    width: fit-content;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

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