/*!
 * Based on Toastify js 1.12.0
 * https://github.com/apvarun/toastify-js
 * @license MIT licensed
 *
 * Copyright (C) 2018 Varun A P
 */

.toastify {
    padding: 16px 0;
    color: rgb( var(--color-white) );
    box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.12), 0 10px 36px -4px rgba(77, 96, 232, 0.3);
    position: fixed;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    border-radius: 6px;
    text-decoration: none;
    max-width: calc(50% - 20px);
    z-index: 2147483647;
    box-sizing: border-box;
    filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.3));
    display: flex;
    justify-content: space-between;
}

.toastify-mobile
{
    width: 95vw !important;
    max-width: unset;
    left: 2.5vw !important;
}

.toastify.on {
    opacity: 1;
}

.toastify-close {
    width: 10px;
    height: 10px;
    margin: 6px 12px;
    cursor: pointer;
}

.toastify-left {
    left: -450px;
}

.toastify-center {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

.toastify-right {
    right: -450px;
}

.toastify-top {
    top: 15px;
}

.toastify-bottom {
    bottom: 15px;
}

.toastify-image {
    width: 20px;
    height: 20px;
    margin: 6px 12px;
}

@media only screen and (max-width: 360px) {
    .toastify-right, .toastify-left {
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        max-width: fit-content;
    }
}

.toastify-body {
    flex-grow: 1;
    color: rgb( var(--color-gray650) );
}

.toastify-title {
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 15px;
}

.toastify-description {
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
}

.toastify-actions {
    display: flex;
    gap: 12px;
}

.toastify-action {
    font-style: normal;
    font-weight: 700;
    font-size: 11px;
    line-height: 13px;
    color: rgb( var(--color-suite) );
    cursor: pointer;
}
