/**
* 2007-2026 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2026 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

#toast {
      width: 250px;
    top: 90%;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: fixed;
    z-index: 1;
    display: none;
    right: 0%;
    border: 1px solid #c00;
    background: white;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-content: flex-end;
    justify-content: center;
    flex-wrap: wrap;

    /* animation: slideIn 0.3s ease; */
}

.toast__content {
    flex: 1;
}

.toast__text {
    font-size: 14px;
    line-height: 1.4;
}

.toast__close {
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    opacity: 0.8;
    padding: 0;
}

.toast__close:hover {
    opacity: 1;
}
.toast__button {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;

    background: #c00;
    color: white;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;
    transition: .2s;
}

.toast__button:hover {
    background: #f3f3f3;
    transform: translateY(-1px);
}
@keyframes slideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    /* to {
        transform: translateX(0);
        opacity: 1;
    } */
}