.toast {
    position: absolute;
    z-index: 9203;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
}
.toast .shade {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
}
.toast .content-wp {
    width: 100%;
    height: 100%;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.toast .content {
    width: 84%;
    padding: 1.8rem 2.3rem;
    background: #ffffff;
    box-sizing: border-box;
    z-index: 9308;
}
.toast .content .msg {
    font-weight: bold;
    font-size: 1.4rem;
    color: #484848;
    text-align: center;
}
.toast .content .opt {
    margin-top: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.toast .content .opt .cancel {
    padding: 0.8rem 5rem;
    border: 1px solid #56A9F9;
    border-radius: 2rem;
    flex-grow: 1;
    color: #56A9F9;
    font-weight: bold;
}
.toast .content .opt .ok {
    padding: 0.8rem 5rem;
    border-radius: 2rem;
    flex-grow: 1;
    margin-left: 1.2rem;
    color: #FFFFFF;
    font-weight: bold;
    background: linear-gradient(93deg, #82C2FF 0%, #56A9F9 100%);
}
