﻿.contenido_toast_modal{
            
            width: 30%;
            padding: 15px;
            min-width: 350px;
            height: auto;
            
            position: absolute;
            margin-left:auto;
            margin-right:auto;
            top: 0;
            left:0;
            right:0;
            display:none;
        }

    .contenido_toast_modal:has(div>div){
        display:block;
    }
    .lista_Toast {
        display: grid;
        grid-template-columns: 1fr;
        grid-row-gap: 10px;
    }
        .msj{
            background: white;
            border: 2px solid;
            border-radius: 3px;
            display: grid;
            grid-template-columns: 20px calc(100% - 40px) 20px;
            
        }
        
        .success{
            border: 2px solid #0ea336;
        }
        
        .error{
            border: 2px solid #ff4c4c;
        }
        
        .msj div:nth-child(1){
            background: #0ea336;
            display: flex;
            padding: 3px;
            
        }
        
        .success div:nth-child(1){
            background: #0ea336;
        }
        
        .error div:nth-child(1){
            background: #ff4c4c;
        }
        
        .msj div:nth-child(1)>img{
            width: 100%;
            max-height: 14px;
            
        }
        
        .msj div:nth-child(2){
            
            width: 100%;
            padding: 0px 10px 0px 10px;
            text-align: center;
            word-wrap: break-word;
            overflow: auto;
        }
        
        .msj>button:nth-child(3){
            height: 20px;
            border: none;
            background: transparent;
            color: #e2e2e2;
            cursor: pointer;
        }
        
        .msj>button:nth-child(3):hover{
            background: #b9b9b9;
            color: white;
        }