.alert-background {
    background: rgba(0, 0, 0, .5);
    display: inline-block;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 20;
}

.alert-dialog {
    display: flex;
    justify-content: center;
    text-align: left;
    overflow: auto;
    width: 100%;
    color: var(--text-dark);
    margin-bottom: 20px;
    height: 100%;
}

.alert-dialog-outer {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.alert-dialog-content {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 30px 30px;
    max-width: 500px;
    min-width: 500px;
    font-size: 12px;
}

.alert-dialog-content p {
    font-size: 14px;
    margin: 3px;
}

.alert-dialog-content h3 {
    margin: 0px 0px 7px;
    font-size: 18px;
    font-weight: 500;
}

.alert-description {
    font-size: 14px;
}

.alert-dialog button {
    width:100%;
    height: 41px;
    margin: 0px 16px 0px 0px;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    text-align: right;
    line-height: 1.2;
    font-size: 14px;
    font-weight: bold;
    color: var(--link-color);
    cursor: pointer;
}
