.toast-container {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 270px;
    z-index: 1050;
}

.toast {
    font-size: 2rem;
    line-height: 1.2;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* border-radius: 0.25rem; */
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, 0.075);
    position: relative;
    overflow: hidden;
    transition: 0.3s opacity;
    background-color: #fff;
    color: #212529;
    opacity: 1;
}

.toast_showing {
    opacity: 1;
}

.toast_hiding {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.toast__close {
    display: none;           /*скрыл крестик Закрыть*/

    content: "";
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 0.875em;
    height: 0.875em;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.875em auto no-repeat;
    border: 0;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.1s ease-in-out;
}

.toast__close:hover {
    opacity: 1;
}

.toast__body {
    border: 2px solid #0fbbf8;
    text-align: center;
    padding: 1rem;
}