.ajax-loader {
    display: none;
    background-color: rgba(255,255,255,0.7);
    position: absolute;
    z-index: 10000;
    width: 100%;
    height:100%;
}

.ajax-loader img {
    position: relative;
    top:35%;
    left: 45%;
}

.container {
    display: flex;
    font-size: 1.2em;
    margin: 50px;
    flex-direction: column;
    background-color: aliceblue;
    height: 80vh;
}

.search{
    display: flex;
    flex-direction: column;
    align-self: center;
}

input#search_customer {
    padding: 1em;
    font-size: 1em;
    border-radius: 5px;
    border: 1px solid #56919e;
    outline: none;
}

input#search_customer:focus {
    border-radius: 5px;
    border-radius: 5px;
    border: 2px solid #477985;
    outline: none;
}
.results {
    display: flex;
    flex-direction: column;
    align-self: center;
    padding: 2em 0;
}

.rowinfo {
    display: inline-flex;
    padding-top: 2em;
}

.rowinfo span{
    font-weight: bold;
}

.alert {
    padding-top: 3em;
    color: red;
    font-weight: bold;
}

.rowname {
    padding-left: 3em;
    text-align: right;
    flex: 1;
}