div#nottyfication-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    max-width: calc(100% - 80px);
}
div#nottyfication-container .notification {
    position: relative;
    right: -100%; /* Inicialmente, fuera de la pantalla */
    top: 0; /* Puedes ajustar la posición vertical según tus necesidades */
    padding: 10px;
    margin-bottom: -6px;
    border: 1px solid #f6f6f6;
    border-radius: 12px;
    box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease, right 0.5s ease;
    cursor: pointer;
}
div#nottyfication-container .notification:hover {
    border-color: #ffffff;
}
div#nottyfication-container .notification.show {
    opacity: 1;
    right: 20px; /* Aparece desde el lado derecho */
}
div#nottyfication-container .notification.hide {
    opacity: 0;
    right: -100%; /* Desaparece hacia el lado derecho */
}
div#nottyfication-container .notification.success {
    background-color: #d0d0d0;
    border-color: #9d9d9c;
    color: #010101;
}
div#nottyfication-container .notification.success::before {
    font-family: 'Font Awesome 6 Free';
    content: "\f058";
    margin-right: 10px;
}
div#nottyfication-container .notification.error {
    background-color: #9d9d9c;
    border-color: #010101;
    color: #010101;
}
div#nottyfication-container .notification.error::before {
    font-family: 'Font Awesome 6 Free';
    content: "\f071";
    margin-right: 10px;
}
div#nottyfication-container .notification.confirm {
    background-color: #f6f6f6;
    border-color: #9d9d9c;
    color: #010101;
}
div#nottyfication-container .notification.confirm .question_text {
    margin-bottom: 8px;
}
div#nottyfication-container .notification.confirm .question_text+div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
div#nottyfication-container .notification.confirm .question_text+div button {
    border: 1px solid #9d9d9c;
    border-radius: 10px;
    padding: 4px 10px;
    font-weight: 600;
    background-color: #d0d0d0;
}
div#nottyfication-container .notification.confirm .question_text+div button:hover {
    background-color: #010101;
    color: #d0d0d0;
}