.loader{
    width: 50px;
    height: 50px;
    border-radius: 100%;
    position: absolute;
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
    margin: 0 auto;
}
#loader-1:before, #loader-1:after{
    content: "";
    position: absolute;
    top: -6px;
    left: -6px;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 5px solid transparent;
    border-top-color: #1d0c24;
}

#loader-1:before{
    z-index: 100;
    animation: spin 1s infinite;
}

#loader-1:after{
    border: 6px solid #ccc;
}

.login-error{
    background-color: rgb(255, 56, 89);
    padding: 0.5em;
    border-radius: 50vw;
    color : white;
}
.autoComplete_wrapper ul{
    padding: 0;
    list-style: none;
    background-color: white;
    border-left: 1px solid gray;
    border-right: 1px solid gray;
}
.autoComplete_wrapper li{
    min-height: 30px;
    padding-top: 5px;
    border-bottom: 1px solid gray ;
}
.autoComplete_wrapper li[aria-selected=true]{
    background-color: #181818;
    color: white;
}
.autoComplete_wrapper li[aria-selected=true] mark{
    color: inherit;
}
.autoComplete_wrapper li mark{
    font-weight: bold;
    background-color: transparent;
}