popup-alert {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 500000;
}
popup-alert .center {
    display: flex;
    justify-content: center;
    align-items: center;
}
popup-alert .content {
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
        rgba(0, 0, 0, 0.23) 0px 6px 6px;
    position: relative;
    width: 400px;
    height: 170px;
    background-color: white;
    border-radius: 10px;
    animation: fade-in 0.25s;
}

popup-alert .header {
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px 5px 0 0;
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
}
popup-alert .header .title {
    font-size: 16px;
    margin: 5px;
}
popup-alert .body {
    height: 70px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 5px;
}
popup-alert .body .pupup-body-div {
    width: 100%;
    text-align: center;
}

popup-alert .footer {
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    border-radius: 0 0 5px 5px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    color: #aaa;
    border-top: 1px solid #dee2e6;
}

popup-alert .footer .btn-grp {
    width: 100%;
}
popup-alert .footer .btn-grp .btn {
    font-size: 16px;
    padding: 5px;
    border-radius: 5px;
    min-width: 70px;
    margin-left: 8px;
    margin-right: 8px;
    background-color: #f8f8f8f8;
    cursor: pointer;
    transition: 0.25s;
}
popup-alert .footer .btn-grp .btn-a {
    float: left;
    background-color: #79ac78;
    border: none;
    color: #f8f8f8f8;
}
popup-alert .footer .btn-grp .btn-c {
    float: right;
    background-color: #bb6464;
    border: none;
    color: #f8f8f8f8;
}

popup-alert .footer .btn-grp .btn-a:hover {
    background-color: #a5dd9b;
}
popup-alert .footer .btn-grp .btn-c:hover {
    background-color: #e97777;
}

popup-alert .footer .btn-grp .btn-c:active {
    background-color: #ff8787;
}
popup-alert .footer .btn-grp .btn-a:active {
    background-color: #c5ebaa;
}

popup-alert .footer .btn-grp .btn-a-disabled {
    cursor: not-allowed;
    background-color: #618264;
}
popup-alert .footer .btn-grp .btn-a-disabled:hover {
    background-color: #618264;
}
popup-alert .footer .btn-grp .btn-a-disabled:active {
    background-color: #618264;
}
popup-alert .footer .btn-grp .btn-c-disabled {
    cursor: not-allowed;
    background-color: #c84361;
    color: #aaa;
}
popup-alert .footer .btn-grp .btn-c-disabled:hover {
    background-color: #c84361;
}
popup-alert .footer .btn-grp .btn-c-disabled:active {
    background-color: #c84361;
}
