/**
* 2007-2020 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-2020 PrestaShop SA
*  @license    http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*/
.wisernotify-block-content{
	background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 15px;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 160;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}
.wisernotify-block{
	color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    padding: 9px 0;
}
.wisernotify-block a{
	color: #ffffff;
	text-decoration: underline;
}
.wisernotify-inner{
	font-size: 14px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 1px;
}
.wisernotify-inner a{
	font-size: 14px;
	padding-left: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    letter-spacing: 2px;
    text-decoration: underline;
}
.wisernotify-close{
	background-color: #888888;
	font-size: 14px;
    color: #ffffff;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 3px;
    padding: 10px 30px;
    letter-spacing: 1px;
    display: inline-block;
    vertical-align: middle;
}
.wisernotify-close:hover{
	background-color: #111111;
	color: #ffffff;
}
.wisernotify-close{
	margin-left: 10px;
}
@media(max-width: 991px){
	.wisernotify-inner{
		width: 80%;
	}
	.wisernotify-block-content{
		text-align: center;
	}
	.wisernotify-close{
		font-size: 12px;
		padding: 8px 15px;
	}
	.wisernotify-block{
		font-size: 12px;
        line-height: 20px;
	}
}
