.promoPopUp
	        	{
	        		
				    
				    
				    position: fixed;
				    right: 0;
				    z-index: 900;
				    top: 190px;
				    width: 400px;
				    border-top-left-radius:8px;
				    border-bottom-left-radius:8px;
				    transform: none;
				    
				   background: rgb(32,71,132);
                   background: linear-gradient(90deg, rgba(32,71,132,1) 57%, rgba(169,32,33,1) 100%);
				    transition: 0.2s ease right;
				    box-shadow: 2px 2px 2px 3px #999999;
				    
				    
	        	}

	        	.promoPopUp.close
	        	{
	        		right: -400px;
	        		transition: 0.2s ease right;
	        	}

	        	.promoPopUp .imagePop
	        	{
	        		position: relative;
	        	}

	        	.promoPopUp .imagePop .img
	        	{
	        		width: 400px;
	        	}

				.promoPopUp .imagePop .btnOpen
	        	{
	        		top: 0;
				    position: absolute;
				    left: -93px;
				    cursor: pointer;
	        	}

	        	.promoPopUp .contenuPop
	        	{
	        	
	        		padding: 25px 20px;
	        		color:#fff;
	        		font-size: 34px;
	        	}
				
				.promoPopUp .contenuPop p
	        	{
					font-family: "custom";
				    color: #fff;
				    font-size: 30px;
				    line-height: 36px;
				}

				.promoPopUp .contenuPop p strong
				{
					color: #c31e23;
				}
				

				.promoPopUp .see
				{
					font-family: "custom";
    				background-color: #c31e23;
    				border: 1px solid #c31e23;
    				font-size: 14px;
    				line-height: 26px;
    				color: white;
   					font-weight: bold;
   				 	margin-top: 10px;
   				 	display: table;
    				padding: 4px 8px;
    				text-decoration: none;
    				transition: 0.1s ease background-color, 0.1s ease color;
				}

				.promoPopUp .see:hover
				{
    				background-color: transparent;
    				border: 1px solid #c31e23;
    				color: #c31e23;
    				transition: 0.1s ease background-color, 0.1s ease color;
				}

				@media screen and (max-width: 1281px)
				{
					.promoPopUp,
					.promoPopUp .imagePop .img 
					{
    					width: 300px;
					}
					
					.promoPopUp.close
					{
	        		right: -300px;
	        		transition: 0.2s ease right;
	        	}

					.promoPopUp .imagePop .btnOpen 
					{
					    left: -55px;
					    width: 55px;
					}

					.promoPopUp .contenuPop p 
					{
					    font-size: 14px;
					    line-height: 24px;
					}

					.promoPopUp .see 
					{
					    font-size: 12px;
					    line-height: 24px;
					    padding: 2px 6px;
					}
				}

				@media screen and (max-width: 1000px)
				{
					.promoPopUp
					{
						display: none;
					}
				}