.navbar {
    top: 0;
    width: 100%;
}

.container {
    margin-top: 20px;
}

.container-i {
    margin-top: 0px;
}

#hrline {
    align-items: center;
    margin: auto;
    width: 35%;
    color: black;
}

#submitBtn {
    margin-bottom: 5px;
}

#containerID {
    width: 50%;
}

#app {
    width: 100%;
    max-width: 850px;
    margin: auto;
    background-color: #ffb142;
    border-radius: 0.5em;
    padding-top: 1em;
    padding-left: 2em;
    padding-right: 2em;
}

.result {
    background-color: green;
    color: #fff;
    padding: 5px;
}

.row {
    display: flex;
}

.form-signin {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    background-color: #ffb142;
    border-radius: 0.5em;
    padding-right: 2em;

}

.form-data {
    width: 100%;
    max-width: 350px;
    margin: auto;
    background-color: #ffb142;
    border-radius: 0.5em;
    padding-left: 2em;
    padding-right: 2em;

}

.form-signin .checkbox {
    font-weight: 400;
}

/* ------------------------------SCAN/TYPE DATA INPUT------------------------------*/

.autocomplete {
    position: relative;
}

input {
    border: 1px solid transparent;
    background-color: #f1f1f1;
    padding: 10px;
    font-size: 12px;
}

input[type=text] {
    background-color: #f1f1f1;
    width: 100%;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}

/*when hovering an item:*/
.autocomplete-items div:hover {
    background-color: DodgerBlue !important;
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
    background-color: DodgerBlue !important;
    color: #ffffff;
}