*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.e4toast-container {
    position: fixed;
    position: 0;
    pointer-events: none;
    font-family: Poppins;
    z-index: 99999999999999999999999999999999999999999;
}

.e4toast-content {
    top: -100%;
    left: 50%;
    width: 420px;
    max-width: 96%;
    position: fixed;
    display: flex;
    align-items: flex-start;
    padding: 1.15rem 2rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 6px 35px rgba(0, 0, 0, .05);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 99999999999999999999999999999999999999999;
    transition: box-shadow .25s ease-in-out, -webkit-transform .25s ease-in-out;
    transition: box-shadow .25s ease-in-out, transform .25s ease-in-out;
    transition: box-shadow .25s ease-in-out, transform .25s ease-in-out, -webkit-transform .25s ease-in-out;
    color: #fff;
}

.e4toast-container.Information .e4toast-content {
    background-color: #6C66CF;
}

.e4toast-container.Warning .e4toast-content {
    background-color: #F89220;
}

.e4toast-container.Error .e4toast-content {
    background-color: #F72670;
}

.e4toast-container.Success .e4toast-content {
    background-color: #51a351;
}

.e4toast-container.active {
    opacity: 1;
    pointer-events: all;
}

.e4toast-container.active .e4toast-content {
    -webkit-animation: push-down .35s cubic-bezier(0.4, 1, 0.17, 1) forwards;
    animation: push-down .35s cubic-bezier(0.4, 1, 0.17, 1) forwards;
}

@-webkit-keyframes push-down {
    to {
        top: 10px;
    }
}

@keyframes push-down {
    to {
        top: 10px;
    }
}

.e4toast-content:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
    -webkit-transform: translateY(4px) translateX(-50%);
    transform: translateY(4px) translateX(-50%);
}

.e4toast-icon {
    width: 45px;
    height: 45px;
    aspect-ratio: 1 / 1;
    display: flex;
    position: absolute;
    right: 1rem;
    align-items: flex-start;
    justify-content: center;
}

.e4toast-icon>* {
    width: 25px;
    height: 25px;
}

.e4toast-title {
    font-weight: 800;
    font-size: .975rem;
    font-family: Poppins;
}

.e4toast-body p {
    display: block;
    margin-top: 0.65rem;
}
