/**
 Progress Bar ------------------------------------
 */
.progress-shipping {
    position: relative;
    display: flex;
}

.general-background-white{
    margin-top: 150px;
    background: #ffffff;
    padding: 30px 20px 90px 20px;
}
/**
 Background Track
 */
.progress-shipping .progress-track {
    position: absolute;
    top: 5px;
    width: 100%;
    height: 5px;
    background-color: #dfe3e4;
    /*z-index: -1;*/
}
.message-provider{
    text-align:center;
    font-size: 13px;
}
.message-provider a{
    color: #cd0000;
}
.message-provider a:active, .message-provider a:hover{
    color: #ff7900;
}
/**
 Each Step on the Progress Bar
 */
.progress-shipping .progress-step {
    position: relative;
    width: 100%;
    font-size: 12px;
    text-align: center;
}

/**
 Hide the final step's progress bar
 */
.progress-shipping .progress-step:last-child:after {
    display: none;
}

/**
 Step's circle in default state
 */
.progress-shipping .progress-step:before {
    content: "\f00c";
    display: flex;
    margin: 3px auto;
    margin-bottom: 10px;
    width: 13px;
    height: 13px;
    background: #fff;
    border: 4px solid #dfe3e4;
    border-radius: 100%;
    color: transparent;
}

/**
 Step's progress bar in default state
 */
.progress-shipping .progress-step:after {
    content: "";
    position: absolute;
    top: 6px;
    left: 54%;
    width: 0%;
    transition: width 1s ease-in;
    height: 5px;
    background: #dfe3e4;
    /*z-index: -1;*/
}

/**
 Step's active state
 */
.progress-shipping .progress-step.is-active {
    color: #ff7900;
}

.progress-shipping .progress-step.is-active:before {
    border: 4px solid #777;
    animation: pulse 2s infinite;
}

/**
 Step's complete state
 */
.progress-shipping .progress-step.is-complete {
    color: #cd0000;
}

/**
 Step's circle in complete state
 */
.progress-shipping .progress-step.is-complete:before {
    font-size: 10px;
    color: transparent;
    background: #cd0000;
    border: 4px solid transparent;
}

/**
 Step's progress bar in complete state
 */
.progress-shipping .progress-step.is-complete:after {
    background: #ff7900;
    animation: nextStep 1s;
    animation-fill-mode: forwards;
    /*z-index:2*/
}

/**
 Animations --------------------------------------
 Pulse animation for Step's circle in active state
 */

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(205, 0, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(205, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(205, 0, 0, 0);
    }
}

/**
 Progressing to next step animation for Step's progress bar
 */
@keyframes nextStep {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.container-progress {
    margin: 50px 0px;
}

.general-title {
    font-size: 24px;
    font-family: "OpenSans",sans-serif;
    color: #000;
    margin: 20px 20px;
    border-bottom: 1px solid #e6e6e4;
    padding-bottom: 20px;
}
.shipping-text{
    font-size: 18px;
    font-family: "OpenSans", sans-serif;
    color: #000;
    margin: 20px 20px;
}
.shipping-description{
    font-size: 16px;
    font-family: "OpenSans",sans-serif;
    color: #000;
    padding-bottom: 20px;
    line-height: 30px;
    border-bottom: 1px solid #e6e6e4;
}
.shipping-description-line{
    font-size: 18px;
    font-family: "OpenSans", sans-serif;
    color: #000;
    padding-bottom: 20px;
    border-bottom: 1px solid #e6e6e4;
}
.message-display {
    font-size: 15px !important;
    line-height: 25px !important;
    
}
.message-display-top{
    color: #000;
    font-weight: 700;
    font-size: 15px;
    line-height: 25px;
    padding-top: 20px;
    padding-bottom: 20px;
}

#form_awb .btn-default {
    background-color: #ff7900;
    border-color: #ff7900;
    color: #fff;
}

#form_awb .btn-default:hover, #form_awb .btn-default:active {
    color: #fff;
    background: #c1001b
}


.message-provider-top{
    text-align:left;
    font-size: 15px;
}
.message-provider-top a{
    color: #cd0000;
}
.message-provider-top a:active, .message-provider-top a:hover{
    color: #ff7900;
}

#form_awb .btn {
    background: #f60;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    color: #fff;
    font-family: OpenSans-Bold, sans-serif;
    padding: 10px 25px;
    width: 200px;
    height: 40px;
    display: block;
    text-align: center;
    text-transform: lowercase;
}

.status-title {
	height:35px;
    line-height: 15px;
}
@media (min-width: 768px) and (max-width: 950px) {
	.status-title {
		height:55px;
	}
}
@media (max-width: 767px) {
    .general-background-white {
        margin-top: 90px;
    }
    .wrapper {
        font-family: 'Helvetica';
        font-size: 14px;
    }
    .StepProgress {
        position: relative;
        padding-left: 45px;
        margin: 20px;
        list-style: none;
    }
    .StepProgress::before {
        display: inline-block;
        content: '';
        position: absolute;
        top: 0;
        left: 12px;
        width: 10px;
        height: calc(100% - 10px);
        border-left: 4px solid #dfe3e4;
    }
    .StepProgress-item:not(:last-child) {
        padding-bottom: 20px;
    }
    .StepProgress-item {
        position: relative;
        counter-increment: list;
    }
    .StepProgress-item.is-done {
        color: #cd0000;

    }
    .StepProgress-item.is-done::before {
        border-left: 4px solid #ff7900;

    }
    .StepProgress-item.is-done::after {

        font-size: 10px;
        color: #FFF;
        text-align: center;
        border: 2px solid #cd0000;
        background-color: #cd0000;
    }
    .StepProgress-item::after {
        content: '';
        display: inline-block;
        position: absolute;
        top: 0;
        left: -37px;
        width: 12px;
        height: 12px;
        border: 2px solid #dfe3e4;
        border-radius: 50%;
        background-color: #FFF;
    }
    .StepProgress-item.current::before {
        border-left: 4px solid #dfe3e4;

    }
    .StepProgress-item::before {
        display: inline-block;
        content: '';
        position: absolute;
        left: -33px;
        height: 100%;
        width: 6px;
    }
    .StepProgress-item.current {
        color: #ff7900;

    }
    .StepProgress-item.current::after {
        animation: pulse 2s infinite;
        padding-top: 1px;
        font-size: 14px;
        text-align: center;
        color: #cd0000;
        border: 4px solid #777;
        background-color: white;
    }
    .StepProgress-item::after {
        content: '';
        display: inline-block;
        position: absolute;
        top: 0;
        left: -37px;
        width: 12px;
        height: 12px;
        border: 4px solid #dfe3e4;
        border-radius: 50%;
        background-color: #FFF;
    }
}