.toast-white {
    /* Estilos básicos para o toast */
    background-color: #fff;
    border-left: 3px solid #007bff; /* Borda azul à esquerda */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 13px;
    position: fixed;
    right: 20px;
    top: 100px;
    z-index: 1000;
    margin-bottom: 8px;
}
.toast-contrast {
    /* Estilos básicos para o toast */
    background-color: #393939;
    border-left: 3px solid #007bff; /* Borda azul à esquerda */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 13px;
    position: fixed;
    right: 20px;
    top: 75px;
    z-index: 99999!important;
    margin-bottom: 8px;
    color: #fff;
}
.toast-small {
    width: 330px;
}
.toast-medium {
    width: 530px;
}
.toast-largue {
    width: 100%;
}

.ev-toast-header {
    /* Estilos para o cabeçalho do toast */
    display: flex;
    margin-bottom: 10px;
}

.ev-toast-title {
    /* Estilos para o título do toast */
    font-size: 14px;
    font-weight: bold;
    margin-left: 16px;
}

.ev-toast-message {
    font-size: 14px;
    margin-left: 16px;
    padding-bottom: 23px;
}

.ev-toast-body {
    /* Estilos para o corpo do toast */
    font-size: 14px;
    display: grid;
}

.ev-toast-footer {
    /* Estilos para o rodapé do toast */
    display: flex;
    /*justify-content: space-between;*/
    flex-direction: row;
    margin-top: 10px;
    margin-left: 36px
}

.toast-small .toast-footer ev-btn-icon {
    width: 40%;
}
.toast-medium .toast-footer ev-btn-icon {
    width: 20%;
}
.toast-largue .toast-footer ev-btn-icon {
    width: 30%;
}

.close-toast ev-btn-icon {
    /* Estilos para o botão de fechar */
    position: absolute;
    right: 0;
    top: 0;
}

.toast-white .close-toast ev-btn-icon img {
    filter: invert(0);
}

.toast-contrast .close-toast ev-btn-icon img {
    filter: invert(1);
}


