.modal-popup-holder{
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    position: fixed;
}

.modal-popup{
    z-index: 999;
    transition: all 0.3s ease;
    position: fixed;
    top: 30%;
    left: 41%;
    background-color: #373737;
    color: #fff;
    padding: 20px;
    border: 1px solid #1A181C;
}

.modal-popup .body{
    margin-bottom: 20px;
}

.modal-popup .buttons{
    text-align: right;
}

/* Alert modal */

.modal-content {
    position: relative;
    background-color: #373737;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    outline: 0;
    color: #1F93FF;
}

.modal-content .close {
    color: #1F93FF;
}

.modal-header,
.modal-footer {
    border: 0px !important;
}

/* Alert modal end */