﻿

.ToastWrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    display: flex;
    justify-content: end;
    z-index: 1000000;
}

.ToastWrapperUl {
    position: fixed;
    right: 0;
    top: 0;
    margin-right: 10px;
}

.ToastWrapperli {
    margin-bottom: 10px;
    width: 0;
    overflow: hidden;
    transition: width 0.5s ease;
}

.ToastWrapperli-in {
    width: 300px;
}

.toastCard {
    position: relative;
    background-color: rgba(9, 9, 9, 0.68);
    color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    padding: 0 5px 10px 5px;
    z-index: 20000;
    max-width: 300px;
    min-width: 300px;
    opacity: 0.7;
}

.toastCard-head {
    display: flex;
    height: 30px;
    justify-content: space-between;
    font-size: 10px;
}

    .toastCard-head div {
        padding: 5px 0 0 5px;
    }

.toastCard-body {
    display: block;
    overflow-wrap: break-word;
}

.toastCard-head button {
    color: #fff;
    border: none;
    font-size: 10px;
    background: none;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
}
