/*
Theme Name:     Divi-child
Theme URI:      
Description:    Divi child theme.
Author:         Me
Author URI:     
Template:       Divi
Version:        1.0.0
*/


.fullscreen-loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fullscreen-loader::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.7);
	animation: fadeIn 0.5s ease-in-out; /* Aggiungi un'animazione di fade-in */
}

.fullscreen-loader div {
	width: 50px;
	height: 50px;
	border: 5px solid #3498db;
	border-top: 5px solid transparent;
	border-radius: 50%;
	animation: spin 1s linear infinite; /* Aggiungi un'animazione di rotazione */
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

#generate-pdf-link {
	display: inline-block !important;
}

.error-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10011;
}

.error-popup {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    max-width: 33vw;
    width: 100%;
    position: relative;
    animation: fadeIn 0.3s;
}

.error-message {
    font-size: 18px;
	font-weight: 600;
	line-height: 25px;
    color: #d9534f;
}

.error-close {
    position: absolute;
	top: 10px;
	right: 10px;
	font-size: 30px;
	cursor: pointer;
	line-height: 15px;
	color: grey;
	opacity: 0.5;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.d-none-child #forminator-field-radio-17-label-1 {
    display: none !important;
}

.d-none-second-child #forminator-field-radio-17-label-2 {
    display: none !important;
}
