/* custom-popup.css */

.custom-popup {
    display: none; /* Nascondi il popup inizialmente */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Sfondo semi-trasparente */
}
.overlay{
	background: rgb(0 0 0 / 60%);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.custom-popup-content {
    margin: 8% auto;
    padding: 90px 20px 90px 20px;
    background: #CC9944;
    border: 5px solid #2F211E;
    max-width: 45%;
    text-align: center;
    color: white;
    position: relative;
	
	overflow-y: auto;
	max-height: 70vh;
}
.custom-popup-text{
	z-index:9;
	position:relative;
	width: 70%;
    margin: auto;
}
.custom-popup-text h2{
    font-family: 'Prata';
    font-weight: 700;
    font-size: 40px;
	color: #2F211E;
}
.custom-popup-text p{
	font-family: 'Poppins';
	color: #2F211E;
}
.custom-popup-text p{
font-weight: 500;
}
.custom-popup-close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #2F211E;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
	z-index:9;
}

.custom-popup-trigger {
      position: fixed;
    bottom: 0px;
    left: 20px;
    background-color: #2f211e;
    color: #c94;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
    font-weight: 700;
    font-family: 'Prata';
}
#scopri_discount {
            cursor: pointer;
            text-align: center;
         border:none;
	font-size: 20px;
    font-weight: 500;
    letter-spacing: 0px;
    word-spacing: 0em;
    color: #cc9944;
    background-color: #2f211e;
    padding: 12px 24px;
    border-radius: 9px 9px 9px 9px;
    display: inline-block;
    margin-top: 30px;
        }

.copy-text {
            cursor: pointer;
	display:none;
            margin-left: 10px;
	margin-right:10px;
	font-size: 14px;
	font-weight: 700;
	color:#2f211e !important;
    text-decoration: underline;
            vertical-align: middle;
        }

        .copied-message {
            color:#2f211e !important;
            color: green;
			display:none;
			font-weight: 700;
            font-size: 12px;
        }
