:root {
    --primary-theme-color: #013DA3;
    --secondary-theme-color: #1A237E;
    --body-bg-color: #FEFFE9;
    --light: #FFF;
    --dark: #010000;
    --danger: #D5202B;
    --dangerer: #f02849;
    --warning: #FCD045;
    --success: #04aa6d;
}

.toast-notification {
    position: fixed;
    top:-300px;
    left:0;
    width: 100%;
    margin-top: -0.8rem;
    display: flex;
    justify-content: center;
    align-content: center;
    z-index: 5000;
    opacity: 0;
    transition: top 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.toast-notification.show {
    opacity: 1;
    top:16px;
}

.toast-notification p {
    position: relative;
    width: 95%;
    margin-top: 0.5rem;
    border-radius: 0.3rem;
    padding: 10px 16px;
    font-size: 1rem;
    box-sizing: border-box;
    vertical-align: middle;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.toast-notification p {
    color: rgba(255,255,255,1);
    background-color: rgba(0,0,0,0.8);
}

/*.toast-notification.info p .icon::before {
    background-color: #fff;
    border-radius: 50%;
}*/

/*.toast-notification.warning p {
    color: rgba(255,255,255,1);
    background-color: var(--danger);
}*/

.toast-notification p span {
    width: 80%;
}

.toast-notification p .icon {
    font-size: 1.5rem;
}

.toast-notification.info p .icon {
    color: var(--success);
}

.toast-notification.warning p i.icon {
    color: var(--danger);
    /*color: rgba(255,255,255,1);*/
}

.toast-notification p i.hide {
    font-size: 1rem;
    color: rgba(255,255,255,1);
    cursor: pointer;
}
