﻿#NewsNotification {
    height: auto;
    width: 82%;
    position: fixed;
    clear: both;
    background: #fffffffa;
    z-index: 99999;
    bottom: 138px;
    border-radius: 10px;
    margin: 0 auto;
    left: 0;
    right: 0;
    box-shadow: -1px 1px 3px 3px #0808085c;
    padding: 10px;
    color: #000;
    border: 1px solid #0000ff63;
 
}
.toast-container {
    /*position: fixed;
    top: 25px;
    right: 30px;*/
    /*   display: flex;
    flex-direction: column;*/
    /*gap: 10px;
    z-index: 1000;*/
    height: auto;
    width: 33%;
    position: fixed;
    clear: both;
    bottom: 10px;
    z-index: 99999999;
}

.toast {
    position: relative;
    width: 320px;
    background: #fffffffa;
    z-index: 99999;
    border-radius: 10px;
    box-shadow: -1px 1px 3px 3px #0808085c;
    padding: 10px;
    color: #000;
    border: 1px solid #0000ff63;
    /* display: flex;
    align-items: center;
    overflow-x: hidden;*/

    transform: translateX(calc(100% + 30px));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
}

    .toast.active {
        transform: translateX(0%);
    }

    .toast .toast-content {
       /* display: flex;
        align-items: center;*/
    }

.toast-content .icon {
   /* display: flex;
    align-items: center;
    justify-content: center;*/
    height: 35px;
    min-width: 35px;
    font-size: 35px;
    color: #fff;
}
.toast-content header {
    text-align: center;
    font-weight: bold;
    font-size: 17px;
    font-family: 'BTitrBold';
    color: orange;
}
.toast-content ul {

}
    .toast-content ul li {
        margin-bottom: 10px;
        display: block;
        border: 1px dashed #eee;
        padding: 5px;
        border-radius: 10px;
        background: #aaaaaa61;
    }
    .toast-content ul li a {
        color: blue;
        padding: 0 !important;
        margin: 0 !important;
    }

        .toast-content ul li img {
            max-width: 100%;
            width: 19%;
            height: 50px;
            border-radius: 10px;
            float: right;
            margin-left: 5px;
        }
.toast-content .message {
  /*  display: flex;
    flex-direction: column;*/
    margin-left: 15px;
}

.message .text {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    font-family: "Outfit", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

    .message .text.text-1 {
        font-weight: 600;
        color: #333;
    }

.toast .close {
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 5px;
    cursor: pointer;
    opacity: 0.7;
}

    .toast .close:hover {
        opacity: 1;
    }

.toast .progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
}

    .toast .progress:before {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        height: 100%;
        width: 100%;
        background-color: #4070f4;
    }
/* If you edit the timeout variable in the JS, be sure to edit this too */
.progress.active:before {
    animation: progress 5s linear forwards;
}

@keyframes progress {
    100% {
        right: 100%;
    }
}

/* Toast Type Colors */
.toast.success .icon {
    color: rgb(25 135 84);
}

.toast.error .icon {
    color: rgb(220 53 69);
}

.toast.warning .icon {
    color: rgb(255 193 7);
}

.toast.info .icon {
    color: rgb(13 202 240);
}

.toast.success .progress:before {
    background: rgb(25 135 84);
}

.toast.error .progress:before {
    background: rgb(220 53 69);
}

.toast.warning .progress:before {
    background: rgb(255 193 7);
}

.toast.info .progress:before {
    background: rgb(13 202 240);
}
