.custom-alert {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    background-color: #fff;
    padding: 18px;
    border-bottom: 1px solid #c3c3c3;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    margin: -30px -15px 0;
    animation: showAlert 0.3s;
}

.custom-alert>.title {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    background-color: #fff;
    padding: 18px;
    border-bottom: 1px solid #c3c3c3;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    margin: -30px -18px 0;
}

.custom-alert.notification>.title>.close-btn {
    height: 20px;
    width: 20px;
    margin: auto 0;
    background-size: cover;
    font-size: 34px;
    font-weight: initial;
    margin-top: -4px;
    cursor: pointer;
}

.custom-alert>#popupMessage {
    text-align: center;
    padding: 16px 16px 16px 0px;
    color: #6e6e6e;
}

.custom-alert>.buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px 15px 0px;
    font-family: Arial;
    color: #484848;
}

.custom-alert>.buttons>.confirm {
    padding: 8px 10px;
    background-color: #6e6e6e;
    color: #fff;
    flex: 1;
    text-align: center;
    margin: 0 5px;
    max-width: 90px;
    cursor: pointer;
}
.custom-alert>.buttons>.cancel {
    padding: 8px 10px;
    background-color: #191919;
    color: #fff;
    flex: 1;
    text-align: center;
    margin: 0 5px;
    max-width: 90px;
    cursor: pointer;
}

.custom-alert>.buttons>span {
    font-size: 15px;
    border-radius: 5px;
    border: #fff;
    display: inline-block;
    white-space: pre-wrap;
    word-break: break-all;
    font-weight: 700;
}

@keyframes showAlert {
    0% {
        transform: scale(0.7)
    }

    45% {
        transform: scale(1.05)
    }

    80% {
        transform: scale(0.95)
    }

    100% {
        transform: scale(1)
    }
}