/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 20 2026 | 11:09:16 */
.banner {
    color: white;
    text-align: center;
    position: fixed;
    bottom: 0px;
    left: 0;
    width: 100%;
    z-index: 1111;
    display: none;
    background: linear-gradient(90deg, rgba(62, 199, 188, 1) 0%, rgba(47, 125, 192, 1) 100%);
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85vh;
}

.popup iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: none;
}

.popup-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

/* Styles pour le bouton de fermeture */
.close-button {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background-color: #000;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Styles pour le bouton de fermeture lorsque survolé */
.close-button:hover { background-color: #555; }

.banner .open-popup-button {
    padding: 10px; 
    line-height: 1.5; 
}

/* Bannière Responsive */
@media (max-width: 1024px) { 
	.banner { 
		display: block;
		transition: opacity 0.5s ease, transform 0.5s ease;
		opacity: 1;
		transform: translateY(0);
	} 
	#mobile_banner.hide {
	  opacity: 0;
	  transform: translateY(100%);
	  pointer-events: none;
	}
}