/**
* 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
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/



@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.lastproduct{
	position: fixed;
    top: 20%;
    left: 40px;
    border: 1px solid #593939;
    max-height: 82px;
    width: 215px;
    padding:10px;
    background: #fff;
    z-index: 100;
    overflow: hidden;
    opacity: 0;
}
.lastproduct img{
	max-height:65px;
}
.lastproduct a{
	max-height: -webkit-fill-available;
	font-size: 9px;
	display: inline-flex;
    justify-content: center;
}

.nextproduct{
	opacity: 0;
	position: fixed;
    top: 20%;
    right: 40px;
    border: 1px solid #593939;
    max-height: 82px;
    width: 215px;
    padding:10px;
    background: #fff;
    overflow: hidden;	
    z-index: 100;
}
.fade-in-snp {
	opacity: 1;
	transform: translateY(250px);
	transition-duration: 1s;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 1s;
}
.nextproduct img{
	max-height:65px;
}
.nextproduct a{
	max-height: -webkit-fill-available;
	font-size: 9px;
	display: inline-flex;
    justify-content: center;

}
@media(max-width:800px){
	.lastproduct {
		top:unset;
	    bottom: 0;
	    max-width: calc(100% / 2 );
	    left: 0;
	}
	.nextproduct {
		top: unset;
	    bottom: 0;
	    max-width: calc(100% / 2 );
	    right: 0;	
	}
}