﻿.toast-box-wrap {
    display: flex;
    min-width: 400px;
    position: fixed;
    left: calc(50% - 200px);
    top: 20px;
    z-index: 999999999;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-radius:3px;
    box-shadow:0 0 5px #0003;
    overflow:hidden;
}
.toast-box-wrap label{
    cursor:pointer;
}
.toast-box-wrap-input {
    display: flex;
    position: fixed;
    top: 20%;
    z-index: 99999999;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 0 5px #0003;
}
.toast-background-band {
    z-index: 99999998;
    background-color:#0003;
    width:100%;
    height:100%;
    position:fixed;
    top:0;
    left:0;
}
.toast-box-buffer {
    min-width:370px;
    max-width: 80vw;
}
.toast-box-top {
    padding: 15px 10px 0px 15px;
}
.toast-box-top-title {
    font-weight: 600;
    height: 20px;
    display: flex;
    align-items: center;
}
.toast-box-center {
    padding: 20px 25px;
    overflow-wrap: anywhere;
    min-height: 100px;
}
.toast-box-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ddd;
    width:100%;
    height:40px;
}
.toast-box-button {
    width: 50%;
    cursor: pointer;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}
.toast-box-button-no {
    color: #aaa;
    border-right:1px solid #ddd;
}
.toast-box-button-sure {
    color: #ea1717;
    
}