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

.toastify {
    font-size: .8rem;
    line-height: 1.4;

    position: fixed;
    z-index: 2147483647;

    display: flex;
    align-items: center;

    width: 400px;
    max-width: calc(50% - 20px);
    padding: 1rem;

    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    text-decoration: none;

    opacity: 0;
    color: #989ea8 !important;
    border: 1px Solid rgba(33, 83, 130, 0.31);
    border-radius: .25rem;
    background: #282e3e;
    box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.12), 0 10px 36px -4px rgba(78, 174, 255, 0.3);
}

.toastify:hover {
    color: #989ea8 !important;
}

.toastify.on {
    opacity: 1;
}

.toast-close {
    font-family: inherit;
    font-size: 1em;

    padding: 0 5px;

    cursor: pointer;

    opacity: 0.4;
    color: white;
    border: 0;
    background: transparent;
}

.toastify-right {
    right: 15px;
}

.toastify-left {
    left: 15px;
}

.toastify-top {
    top: -150px;
}

.toastify-bottom {
    bottom: -150px;
}

.toastify-rounded {
    border-radius: 25px;
}

.toastify-avatar {
    width: 3rem;
    height: auto;
    margin: 0 .5rem 0 0;

    border-radius: .25rem;
}

.toastify-center {
    right: 0;
    left: 0;

    max-width: fit-content;
    max-width: -moz-fit-content;
    margin-right: auto;
    margin-left: auto;
}

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

        max-width: fit-content;
        margin-right: auto;
        margin-left: auto;
    }
}