.toast {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(50, 50, 50, .6);
    z-index: 999;
}

.toast>div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
    max-width: 280px;
    border-radius: 4px;
    background: white;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .06), 0 2px 32px rgba(0, 0, 0, .16);
    overflow: hidden;
}

.toast>div>div {
    text-align: center;
}

.toast>div>div:nth-child(1) {
    padding: 16px;
}

.toast>div>div:nth-child(1)>div>span {
    display: block;
    font-size: 16px;
    font-weight: 500;
}

.toast>div>div:nth-child(1)>div>p {
    display: inline-block;
    font-size: 14px;
    text-align: justify;
}

.toast>div>div:nth-child(2) {
    border-top: 1px solid darkgray;
}

.toast>div>div:nth-child(2)>div {
    padding: 10px 0;
}

.toast>div>div:nth-child(2)>div:not(:nth-child(1)) {
    border-left: 1px solid darkgray;
}

.toast>div>div:nth-child(2)>div>a {
    display: inline-block;
    font-size: 14px;
    color: #157afb;
}

