/*
 * PrestaShop module created by VEKIA, VATUEU: PL9730945634
 *
 * @author    VEKIA https://mypresta.eu/
 * @copyright 2010-2023 VEKIA
 * @license   This program is not free software and you can't resell and redistribute it
 *
 * CONTACT WITH DEVELOPER http://mypresta.eu
 * support@mypresta.eu
 */

.cartcon_message {
    display: block;
    padding: 10px;
    text-align: center;
    color: #000;
    border: 1px solid;
    margin: 10px;
    background-repeat: no-repeat;
    background-position: 10px center;
    color: #9F6000;
    background-color: #FEEFB3;
}

.cartcon_message_single {
    display: block;
    padding: 10px;
    text-align: center;
    color: #000;
    border: 1px solid;
    margin: 10px;
    margin-top: 0px;
    background-repeat: no-repeat;
    background-position: 10px center;
    color: #9F6000;
    background-color: #FEEFB3;
}

.cartcon_message_single_colors {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bcdff1;
}

#cartcon_errors_pulsate {
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    opacity: 1.0
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(1.0, 1.0);
        opacity: 1.0;
        border-color: #ebcccc;
    }
    50% {
        opacity: 0.9;
        border-color: #bf7676;
    }
    100% {
        -webkit-transform: scale(, 1.0);
        opacity: 1.0;
        border-color: #ebcccc;
    }
}