.progress-bar-x {
	margin: 15px;
	top: 50%;
	margin-right: auto; 
	margin-left: auto;
	width: 60%;
	
    height: 16px;
    border: 2px #d4d4d4 solid;
    border-radius: 5px;
    box-shadow:
        inset 0 -10px 0 rgba(0,0,0,.1),
        inset 2px 1px 0 rgba(0,0,0,.3);
    background-image:
        -moz-linear-gradient(
            -45deg,
            #0165af 25%,
            transparent 25%,
            transparent 50%,
            #0165af 50%,
            #0165af 75%,
            transparent 75%,
            transparent
        );
    background-image:
        -webkit-linear-gradient(
            -45deg,
            #0165af 25%,
            transparent 25%,
            transparent 50%,
            #0165af 50%,
            #0165af 75%,
            transparent 75%,
            transparent
        );
    background-image:
        -o-linear-gradient(
            -45deg,
            #0165af 25%,
            transparent 25%,
            transparent 50%,
            #0165af 50%,
            #0165af 75%,
            transparent 75%,
            transparent
        );
    background-image:
        -ms-linear-gradient(
            -45deg,
            #0165af 25%,
            transparent 25%,
            transparent 50%,
            #0165af 50%,
            #0165af 75%,
            transparent 75%,
            transparent
        );
    background-size: 50px 50px;
    -moz-animation: move 2s linear infinite;
    -webkit-animation: move 2s linear infinite;
    -o-animation: move 2s linear infinite;
    -ms-animation: move 2s linear infinite;
	-webkit-box-sizing: content-box; 
	box-sizing: content-box;
}

@-moz-keyframes move {
    0%   { background-position: 0 0; }
    100% { background-position: 0 50px; }
}
@-webkit-keyframes move {
    0%   { background-position: 0 0; }
    100% { background-position: 0 50px; }
}
@-o-keyframes move {
    0%   { background-position: 0 0; }
    100% { background-position: 0 50px; }
}
@-ms-keyframes move {
    0%   { background-position: 0 0; }
    100% { background-position: 0 50px; }
}

.modal-header h3 {
	margin: 8px;
	text-align: center;
}

.modal-header-text {
    margin: 0.5em;
    text-align: center;
    color: rgb(1, 71, 125);
    font-size: 1.125em;
    line-height: 1.75rem;
    font-weight: 400;
}