﻿.toastnotification {
    display: none;
    color: #fff;
    z-index: 10051;
    position: fixed;
    width: 25rem;
    border-radius: 1rem;
    left: 10px;
    bottom: 20px;
}

.toastnotification-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10px;
    font-size: 25px;
}

.toastnotification-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 10px 10px;
}

    .toastnotification-body p {
        margin-bottom: 0;
    }

.toastnotification-visible {
    display: flex;
    flex-direction: row;
    animation: fadein 1.5s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
@media(max-width:767px){
    .toastnotification { 
        width: 90% !important; 
        left: 0 !important;
        bottom: 0 !important;
    }
    .toastnotification h5{
        font-size:16px !important;
    }
    .toastnotification p{
        font-size:14px !important;
    }
}
