#vanillatoasts-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    font-family: 'Helvetica';
    z-index: 1000;
    margin-top: 200px;
}

.vanillatoasts-toast {
    position: relative;
    padding: 20px 17px;
    margin: 20px;
    border-radius: 10px;
    background: #F5F5F5;
    cursor: pointer;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    animation-duration: .3s;
    animation-name: VanillaToasts;
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    margin-top: 10px;
}

.vanillatoasts-fadeOut {
    animation-name: VanillaToastsFadeOut;
    animation-duration: .3s;
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-fill-mode: forwards;
}

#vanillatoasts-container p,
#vanillatoasts-container h4 {
    margin: 3px 0 !important;
    color: white;
}

.vanillatoasts-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 10px;
}

.vanillatoasts-text {
    font-size: 14px;
    color: white;
}

.vanillatoasts-icon {
    position: absolute;
    top: 5px;
    left: -40px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    background: #FFF;
}

.vanillatoasts-toast a, .vanillatoasts-toast a:hover {
    color: #549EDB !important;
    text-decoration: none !important;
}

/** toast types */
.vanillatoasts-success {
    border-bottom: 2px solid #0ec557;
    background-image: linear-gradient(336deg, #681976 10%, #5c32b8 89%) !important;
    /*    background-image: linear-gradient(315deg, #7beaef 0%, #1b4652 74%);*/
    color: white;
}

.vanillatoasts-warning {
    border-bottom: 2px solid #DB9215;
    background-color: #fcf8e3;
}

.vanillatoasts-error {
    border-bottom: 2px solid #DB2B1D;
    background-image: linear-gradient(315deg, #3f0d12 0%, #a71d31 74%);
    color: white;
}

.vanillatoasts-info {
    border-bottom: 2px solid #27ABDB;
}

@keyframes VanillaToasts {
    from {
        transform: translate3d(400px, 0, 0);
        ;
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes VanillaToastsFadeOut {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }

    to {
        transform: translate3d(400px, 0, 0);
        opacity: 0;
    }
}
