body {
    font-family: Arial, Helvetica, sans-serif;
}

/* The Modal (background) */
.modal {
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    padding-top: 10px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
    margin: auto;
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 60%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding-top: 12px;
    opacity: 1;
}

.barcode-image {
    margin-top: -10px;
    margin-bottom: -12px;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 2px 16px;
    color: white;
    line-height: 30px;
}
.header-mit{
    background-color: #eb2a31;
}

.header-nr-dmz{
    background-color: #C6191F;
}
.modal-body {
    padding: 2px 16px;
    max-height: 100%;
}

.modal-success-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    border: 1px solid #888;
    width: 30%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 1s;
    animation-name: animatetop;
    animation-duration: 1s;
}

#submitMfa{
    color: white !important;
    border-radius: 5px !important;
    width: 30% !important;
    height: 35px !important;
    font-size: 14px !important;
    margin-top:0 !important;
    background-image: none;
}

#submitMfa:hover,
#submitMfa:focus {
    background-color: #c5181f !important;
}

#submitMfa.button-disabled{
    background-color: lightgrey !important;
    cursor: wait !important;
}

#submitMfa.button-disabled:hover,
#submitMfa.button-disabled:focus {
    background-color: lightgrey !important;
}

.mfa-code-text-box{
    padding: 5px;
    font-size: medium;
}

.para-content{
    font-size: 12px;
    margin-top: 10px;
}

h3 {
    font-size: 14px;
    line-height: 1.4em;
}

@media (max-width: 767px) {

    .modal {
        padding-left:0px !important;
    }

    .modal-content {
        width:auto !important;
    }

    .close{
        padding:10px !important;
        margin:0px !important;
    }

}