body {
    background-color: #F1F1F1;
    font-family: Arial, sans-serif;
}

.navbar-dhl {
    background-color: #FECB2F;
}

/* Modify brand and text color */

.navbar-dhl .navbar-brand,
.navbar-dhl .nav-link,
.navbar-dhl .navbar-text {
    color: #333333;
}

.navbar-toggler {
    line-height: unset !important;
}

.breadcrumb-item {
    color: #a1a1a1;
    background: #f1f1f1;
    font-size: 14px;
    font-weight: normal;
}

.active {
    color: #333 !important;
    font-weight: bold;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "––––";
    letter-spacing: -2px;
}

.synopsis {
    color: #a1a1a1;
    background: #fff;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x));
}

.overlay-grey {
    background-color: #f1f1f1;
}

.btn-continue {
    background-color: #ffcd00;
    color: #fff;
    border-color: #ffcd00;
}

.unmarked-list {
    list-style-type: none;
    padding-left: 0 !important;
}

.dhl-text {
    color: #949494;
    font-size: 11.9px;
    font-weight: 700;
    line-height: 1.375;
    margin-bottom: 7px;
}

h3 {
    font-size: 18px;
    font-weight: bold;
}

ol.unmarked-list {
    font-size: small;
}
ul.unmarked-list {
    font-size: small;
}

span.float-end{
    font-size: small;
}

.synopsis-title{
    padding-left: .3rem!important;
    padding-right: .3rem!important;
}

.form-label {
    margin-bottom: unset !important;
    margin-top: .8rem !important;
}


@media (max-width: 768px) {
    .boxed-view {
        width: 85% !important;
        max-width: unset !important;
    }
}

@media (min-width: 768px) {
    .boxed-view {
        width: 75% !important;
    }
}

.form-control:focus {
    border-color: #FECB2F;
    box-shadow: 0 0 0 0.1rem rgba(254, 203, 47, 0.6);
}

.input-group-text-cc {
    width: 2.5rem !important;
    padding: .375rem 0.1rem !important;
    display: unset !important;
}


/** Loading **/

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.9);
    color: #666666;
    display: none
}

#loading .loading-inner {
    width: 64px;
    margin: 20% auto 0;
    position: relative
}

#loading .loading-inner i {
    margin: 20% auto 0 auto;
    font-size: 64px
}

#loading .loading-text {
    opacity: 100;
    width: 350px;
    margin: 1rem auto 0 auto;
    padding: 10px;
    text-align: center;
    background-color: #ffffff;
    color: #666666
}

#loading .loading-text.fadeIn {
    opacity: 1
}

#loading .busy-spinner-text {
    width: 300px;
    margin: 100px auto 0 auto;
    padding: 10px;
    text-align: center;
    background-color: #ffffff
}

/**** SPINNER */
.lds-spinner {
    color: official;
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: #fff;
}
.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}
@keyframes lds-spinner {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

