* { box-sizing: border-box; }
body {
    font: 16px Arial;
}
.autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
    display: inline-block;
}
input {
    border: 1px solid transparent;
    background-color: #f1f1f1;
    padding: 10px;
    font-size: 12px;
}
input[type=text] {
    width: 100%;
}
input[type=submit] {
    background-color: DodgerBlue;
    color: #fff;
}
.autocomplete-items {
    position: absolute;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    max-height: 400px;
    overflow: auto;
    border: none;
    border-radius: 4px;
    left: 15px;
    right: 15px;
    margin-top: 5px;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.25);
}
.autocomplete-items .addressItem {
    font-size: 9pt;
    color: #555;
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}
.addressItem .top {
    font-size: 16px;
    font-weight: 700;
}
.autocomplete-items div:hover {
    /*when hovering an item:*/
    background-color: #e9e9e9;
}
.autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
}

.autocomplete-items .loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #ff631d; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    position: absolute;
    left: 40%;
    top: 10%;
}

.error {
    position: absolute;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    max-height: 400px;
    overflow: auto;
    border: none;
    border-radius: 4px;
    left: 15px;
    right: 15px;
    margin-top: 5px;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.25);
    background: #ddd;
    color: #000;
    padding: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

span.label.label-default.helpModal.congestion-charge-zone-warning {
    padding: 10px 10px;
    background-color: #f00;
}

#quick-edit-form .text-left
{
    position: relative;
}

#quick-edit-form #collection_capture_autocomplete-list, #quick-edit-form delivery_capture_autocomplete-list
{
    position: absolute;
    width: 100%;
    left: 0px;
}

#postcode_collection .form-check
{
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: 51px;
}

@media(max-width:762px) {
    #postcode_collection .form-check {
        top: 0px;
    }
}

@media(min-width:763px) and (max-width: 1200px) {
    #postcode_collection .form-check {
        top: 28px;
    }
}

button#start_new_enquiry {
    margin: 10px 0px 0px 0px;
}