/**
 * PrestaShop module created by VEKIA, a guy from official PrestaShop community ;-)
 *
 * @author    VEKIA https://www.prestashop.com/forums/user/132608-vekia/
 * @copyright 2010-2020 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
 */

.mobc_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;
}

.mobc_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;
}

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

#mobc_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, 1.0); opacity: 1.0; border-color: #ebcccc; }
}