* {
    margin: 0;
    padding: 0;
}

body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set padding to display errors that occur during databinding */
.padding-error {
    padding-top: 20px;
}

@media only screen and (max-width: 767px) {
    .nofloat {
        float: none;
        padding: 10px 15px;
    }
}

#loading {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 99;
}

#loading-image {
    z-index: 100;
}


.form-spacing {
    margin-top: 15px;
}

.form-step-button {
    margin: 7px 0 0 0;
}

.addParcelButton {
    margin: 2px 0 5px 0;
}

#progressbar {
    margin: 15px 0 15px 0;
    overflow: hidden;
    color: lightgrey;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

    #progressbar .active {
        color: #673AB7
    }

    #progressbar li {
        display: block;
        flex-grow: 1;
        list-style-type: none;
        font-size: 15px;
        float: left;
        position: relative;
        font-weight: 400;
        text-align: center;
    }

    #progressbar #deliveryInformation:before {
        content: "\f48b";
    }

    #progressbar #parcels:before {
        content: "\f466";
    }

    #progressbar #customs:before {
        content: "\f5ab";
    }

    #progressbar li:before {
        width: 50px;
        height: 50px;
        line-height: 45px;
        display: block;
        background: lightgray;
        border-radius: 50%;
        margin: 0 auto 10px auto;
        padding: 2px;
        text-align: center;
        color: #ffffff;
        font-family: "Font Awesome 5 Free";
        font-style: normal;
        font-weight: 900;
        font-size: 20px;
    }

    #progressbar li:after {
        content: '';
        width: 100%;
        height: 2px;
        background: lightgray;
        position: absolute;
        left: 0;
        top: 25px;
        z-index: -1
    }

    #progressbar li.active:before,
    #progressbar li.active:after {
        background: #0a066b
    }


#parcelsList {
    margin: 5px 0 0 0;
}

.parcelFieldSet {
    margin: 0 0 1.5rem 0;
    border: 1px black solid;
    border-radius: 7px 7px;
    padding: 0 1rem 1rem 1rem;
}

.parcelLegend {
    margin: 0.2rem 0 0 1rem;
    padding: 0.2em 0.8em;
    border: 1px black solid;
    border-radius: 3px 3px;
    width: unset;
    font-size: 1rem;
}

.printLabel {
    max-height: 1000px;
    max-width: 800px;
    margin: 10px 0 10px 0;
}

.parcelDelete {
    cursor: pointer;
}

.input-icon {
    position: relative;
}

    .input-icon > i {
        position: absolute;
        display: block;
        transform: translate(0, -50%);
        top: 50%;
        pointer-events: none;
        width: 25px;
        text-align: center;
        font-style: normal;
    }

    .input-icon input.is-invalid + i {
        position: absolute;
        display: block;
        transform: translate(0, -50%);
        top: 30%;
        pointer-events: none;
        width: 25px;
        text-align: center;
        font-style: normal;
    }

    .input-icon > input {
        padding-left: 25px;
        padding-right: 0;
    }

#APIErrorFixErrorsButton {
    margin: 5px 0 10px 0;
}

#articles {
    max-height: 450px;
    overflow-y: auto;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.article {
    border: 1px inset grey;
    padding: 10px;
    margin: 5px;
    list-style: none;
}

#fullCustomsInformationForm {
    max-height: 1000px;
    overflow-y: auto;
}

.redOutline {
    border: 1px solid red;
}

.articleDelete {
    cursor: pointer;
    display: inline-block;
}

.timeInputSpacing{
    margin: 0 0 0 5px;
}