﻿/*
 * Note that this is toastr v2.1.3, the "latest" version in url has no more maintenance,
 * please go to https://cdnjs.com/libraries/toastr.js and pick a certain version you want to use,
 * make sure you copy the url from the website since the url may change between versions.
 * */
.toast-title {
    font-weight: 500 !important;
}

.toast-message a, .toast-message label {
    color: #FFF
}

.toast-message a:hover {
    color: #CCC;
    text-decoration: none
}

#toast-container {
    position: fixed;
    z-index: 999999;
    pointer-events: none;
}


#toast-container > div {
    padding: 25px 50px 25px 70px;
    width: 300px;
    background-position: 25px 30px;
    background-repeat: no-repeat;
    color: #333333 !important;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=80);
    font-family: IBM Plex Sans;
    font-weight: 500;
    font-size: 16px;
    box-shadow: 0px 16px 24px 0px rgba(0, 0, 0, 0.12);
}

#toast-container > div.rtl {
    direction: rtl;
    padding: 25px 70px 25px 50px;
    background-position: right 15px center
}

#toast-container > div:hover {
    box-shadow: 0px 16px 24px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;
}


#toast-container > .toast-error {
    background-image: url('../../assets/icons/icon-error-circle.svg') !important;
}

#toast-container > .toast-success {
    background-image: url('../../assets/icons/icon-check-circle.svg') !important;
}

.toast {
    background-color: #030303;
    border: none;
    border-radius: 8px !important;
    min-width: 400px;
}

@media (max-width: 480px){
    .toast {
        min-width: unset;
    }
}

.toast-success {
    background-color: #E4F6EC;
}

.toast-error {
    background-color: #fde7e6;
}

.toast-info {
    background-color: #A0DAE4;
}

.toast-warning {
    background-color: #FDD2A8;
}