/**
* 2007-2018 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-2018 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.
*/


.flash_actu_ctn{
	position: fixed;
	bottom: 50px;
	right: 50px;
	background: #FFF;
	box-shadow: 0 0 10px 5px rgba(0, 0, 0, .1);
	border: 1px solid #cdcdcd;
	z-index: 9999999;
	width: 400px;
	padding: 0 20px;
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -ms-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    -o-transform: scale(.8);
    transform: scale(.8);
    visibility: hidden;
    display: none;
}
.flash_actu_ctn.visible{
	opacity: 1;
	-webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    visibility: visible;
}
.flash_actu_ctn .flash_actu_header{
	display: flex;
	padding: 15px 0;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #c5c5c5;
}
.flash_actu_ctn .flash_actu_header h5{
	color: #0c8fc6;
	text-transform: uppercase;
	font-size: 16px;
	margin: 0;
	font-weight: 700;
}
.flash_actu_ctn .flash_actu_header .close_actu_flash{
	display: block;
	width: 20px;
	height: 20px;
	position: relative;
}
.flash_actu_ctn .flash_actu_header .close_actu_flash:before,
.flash_actu_ctn .flash_actu_header .close_actu_flash:after{
	content: "";
    display: block;
    width: 1px;
    height: 15px;
    background: #0c8fc6;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.flash_actu_ctn .flash_actu_header .close_actu_flash:before{
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    -o-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}
.flash_actu_ctn .flash_actu_header .close_actu_flash:after{
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    -o-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.flash_actu_ctn .flash_actu_body{
	padding: 20px 0;
}
.flash_actu_ctn .flash_actu_body article{
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	margin-bottom: 10px;
}
.flash_actu_ctn .flash_actu_body article .thumb{
	width: 30%;
	margin-right: 20px;
}
.flash_actu_ctn .flash_actu_body article .ctn{
	width: 65%;
}
.flash_actu_ctn .flash_actu_body article h6{
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 0px;
}
.flash_actu_ctn .flash_actu_body article h6 a{
	color: #323232;
}
.flash_actu_ctn .flash_actu_body article p{
	margin-bottom: 12px;
	position: relative;
  height: 168px; /* exactly three lines */
	overflow: hidden;
}

.flash_actu_ctn .flash_actu_body article p:after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 50%);
}

@media (min-width: 769px) {
	.flash_actu_ctn{
		display: block;
	}
}