.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 40%;
    overflow: auto;
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s
}

.modal-content {
    position: fixed;
    top: 40%;
    background-color: #fefefe;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
    width: 27%;
    border-radius: 5px;
}

.close {
    float: right;
}

.modal-header {
    padding: 2px;
    /*background-color: #001a4e;*/
    color: white;
    border-radius: 5px 5px 0 0;
    background-image: url(../../images/PopupBP.png);
    /*background-repeat:no-repeat;*/
}

.modal-header h2{
    padding: 4px !important;
}

.modal-body {
    padding: 22px 16px;
}

.modal-footer {
    padding: 2px 16px;
    padding-bottom: 5px;
    background-color: white;
    color: white;
    min-height: 15px;
    border-radius: 0 0 5px 5px;
}

@-webkit-keyframes fadeIn {
    from {opacity: 0}
    to {opacity: 1}
}

@keyframes fadeIn {
    from {opacity: 0}
    to {opacity: 1}
}

@-webkit-keyframes fadeOut {
    from {opacity: 1}
    to {opacity: 0}
}

@keyframes fadeOut {
    from {opacity: 1}
    to {opacity: 0}
}