﻿/* Стиль для уведомления */
.custom-toast {
    z-index: 21474836 !important;
    width: 100% !important;
    min-height: 40px;
    max-width: 600px;
    box-sizing: border-box;
    font-size: 13px;
}

@media (min-width: 200px) {
    .custom-toast {
        bottom: 0 !important;
        font-size: 13px;
        padding: 10px;
    }
}

@media (min-width: 768px) {
    .custom-toast {
        bottom: 15px !important;
        font-size: 14px;
        padding: 15px;
    }
}

@media (min-width: 1280px) {
    .custom-toast {
        max-width: 281px;
        right: 20px !important;
        left: unset;
    }
}

@media (min-width: 1600px) {
    .custom-toast {
        max-width: 205px;
        right: unset !important;
        position: fixed;
        bottom: 20px !important;
    }
}

.toastify {
    box-shadow: none !important; 
}

/* Стили для всех ссылок внутри уведомления */
.custom-toast a {
    color: white !important; 
    text-decoration: underline;
}

.toastify .toast-close {
    background-color: transparent;
    color: white;
    font-size: 16px;
}




