.custom-alert {
    display: none;
    text-align: center;
    position: fixed;
    width: 350px;            
    top: 50%;
    margin-top: -150px;
    left: 50%;
    margin-left: -160px;
    background-color: white;
    z-index: 999999;
    border-radius: 15px;
    box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, 0.5);
    transition: none;
}

.custom-alert .btn-ok {            
    margin: 5px;
    /* width: 100px; */
    /* background-color: #08304C; */
    /* color: #fff; */
    background-color: #08304C;
    color: #FFF;
    height: 40px;
    width: 115px;
    cursor: pointer;
    border-radius: 7px;
    font-size: 20px;
    /* margin-top: -30px; */
    border: none;
    outline: none;
}

.custom-alert-title {
    text-align: center;
    color: #003067;
    font-weight: bold;
    /* font-weight: 500; */
    font-size: 25px;
    padding-top: 10px;
    border-bottom: 1px solid #cfd2d7;
    line-height: 40px;
}   
.custom-alert-message {
    width: 300px;
    height: auto;
    padding: 30px 25px;            
    vertical-align: middle;
    text-align: center;            
    color: #003067;
    font-size: 20px;
    font-weight: 100;
    overflow: auto;
    border-bottom: 1px solid #cfd2d7;
}


@media(min-width:320px) and (max-width: 479px){ 
    .custom-alert {
        margin-left: -180px;
    }
}
