.toast.toast-tEvent {
    position: fixed;
    top: auto;
    bottom: 40px;
    left: 20px;
    z-index: 60;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 120px 1fr;
    grid-template-columns: 120px 1fr;
    background-color: #fff;
    width: fit-content;
    min-width: 360px;
    max-width: 520px;
    display: none;
    padding: 0;
    @media screen and (max-width: 768px) {
        min-width: none;
        max-width: 100%;
    }
}
.toast.toast-tEvent.show {
    display: -ms-grid;
    display: grid;
}
.toast-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fe0000;
    svg {
        width: 40px;
        height: 40px;
    }
}
.toast-icon svg path {
    fill: #fff;
}
.toast-wrapper {
    padding: 16px 16px 16px 24px;
}
.toast-header {
    padding: 0;
    margin-bottom: 0;
    border-bottom: 0;
    position: relative;
    .btn-close {
        position: absolute;
        right: 0;
    }
}
.toast-header p {
    font-size: 16px;
    padding-right: 20px;
    font-weight: 700;
    margin-bottom: 0;
}
.toast-body {
    font-size: 14px;
    padding: 16px 0 20px;
    line-height: 1.3em;
}
.toast-body p:last-child {
    margin-bottom: 0;
}
.toast-body a {
    color: #fe0000;
    font-weight: 600;
}
.toast-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.toast-footer a {
    color: #fff;
    background-color: #fe0000;
    padding: 8px;
    text-decoration: none;
}


.toast-tEvent__red .toast-icon {
    background-color: #fe0000;
}
.toast-tEvent__green .toast-icon {
    background-color: #00c853;
}
.toast-tEvent__darkGreen .toast-icon {
    background-color: #008000;
}
.toast-tEvent__blue .toast-icon {
    background-color: #2196f3;
}
.toast-tEvent__badenBlue .toast-icon {
    background-color: #57a1d4;
}
.toast-tEvent__yellow .toast-icon {
    background-color: #ffc107;
}


.toast-tEvent__red .toast-body a {
    color: #fe0000;
}
.toast-tEvent__green .toast-body a {
    color: #00c853;
}
.toast-tEvent__darkGreen .toast-body a {
    color: #008000;
}
.toast-tEvent__blue .toast-body a {
    color: #2196f3;
}
.toast-tEvent__badenBlue .toast-body a {
    color: #57a1d4;
}
.toast-tEvent__yellow .toast-body a {
    color: #ffc107;
}

.toast-tEvent__red .toast-footer a {
    background-color: #fe0000;
}
.toast-tEvent__green .toast-footer a {
    background-color: #00c853;
}
.toast-tEvent__darkGreen .toast-footer a {
    background-color: #008000;
}
.toast-tEvent__blue .toast-footer a {
    background-color: #2196f3;
}
.toast-tEvent__badenBlue .toast-footer a {
    background-color: #57a1d4;
}
.toast-tEvent__yellow .toast-footer a {
    background-color: #ffc107;
}

@media (width <= 767px) {
    .toast.toast-tEvent {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        max-width: 280px;
    }
}