/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 05 2026 | 14:09:18 */
/* Hide default WooCommerce terms accordion */
.woocommerce-terms-and-conditions-wrapper .woocommerce-terms-and-conditions{
display:none !important;
}

/* Popup overlay background */
#termsPopupOverlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
z-index:9999;
display:none;
}

/* Popup container centered */
#termsPopupBox{
position:fixed;
width:80%;
max-width:900px;
height:80%;
background:#fff;
border-radius:8px;
overflow:hidden;

top:50%;
left:50%;
transform:translate(-50%, -50%);
}

/* iframe inside popup */
#termsPopupBox iframe{
width:100%;
height:100%;
border:none;
}

/* Close button */
#termsPopupClose{
position:absolute;
top:12px;
right:18px;
font-size:28px;
font-weight:bold;
cursor:pointer;
color:#333;
z-index:10;
}

#termsPopupClose:hover{
color:#000;
}

/* Mobile responsive */
@media (max-width:768px){

#termsPopupBox{
width:95%;
height:90%;
}

}