.toast_container {
   display: flex;
   flex-direction: column;
   position: fixed;
   z-index: 10000000;
   bottom: 8px;
   margin: 0 auto;
   width: 288px;
   left: 0;  
    
}
.toast_section {
    padding: 14px 24px;
    font-size: 14px;
    line-height: 20px;
    position: relative;
    /* height: 48px; */
    height: auto;
    box-sizing: border-box;
    max-width: 568px;
    min-width: 288px;
    background-color: #323232;
    border-radius: 2px;
    color: #ffffff;
    margin-bottom: 8px;
     /*new add*/
    bottom: -80px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
                       
}

.prompt_section{
    width: 100%;
    color: rgba(0,0,0,0.54);
    font-size: 16px;
    font-weight: 500px;
    text-align: center;
}
.confirm-container{
    background-color: rgba(0, 0, 0, 0.12);
    z-index: 115;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}
.confirm-box{
    position: absolute;
    bottom: -180px;
    transition: all 250ms;
    display: flex;
    flex-direction: column;
    width: 280px;
    height:160px;
    background-color: #fff;
    border: 1px solid #ccc;
    justify-content: space-around;
    border-radius: 6px;
    text-align: center;
}
.confirm-box_title{
    color: #333;
    font-size: 18px;
    /* font-weight: bold; */
    margin:0px auto;
    margin-top: 15px;
    padding: 0 8px;
    word-wrap:break-word ;
    text-align: center;
    padding: 0 8px;
}
.confirm-box_footer{
    display:flex;
    justify-content: flex-end;
    padding-right: 24px;
}
.confirm-box_footer-cancle {
    color: #333333;
    min-width: 36px;
    width: auto;
    text-align: center;
    height: 24px;
    line-height: 24px;
    cursor: pointer;
    font-size: 14px;
    padding: 0 4px;
    min-width: 42px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #f4f4f4;
}
.confirm-box_footer-cancle:hover{
   border:1px solid #2882d8 ;
   color:#2882d8 ;
   background:#fff ;
}
.confirm-box_footer-confirm {
    padding: 0 8px;
    border: 1px solid #fff;
    background-color: #fff;
    color: #288aed;
    font-size: 14px;
    min-width: 48px;
    width: auto;
    text-align: center;
    height: 24px;
    line-height: 24px;
    margin-left: 24px;
    cursor: pointer;
    border-radius: 3px;
    padding: 0 4px;
    min-width: 42px;
    border: 1px solid #2882d8;
    background: #2882d8;
    color: #fff;
}
.confirm-box_footer-confirm:hover{
   background: #288aed;
   color: #fff;
   border: 1px solid #288aed;
}