
body.page-id-208 .u-fade-top,
body.page-id-222 .u-fade-top{
	transform:none;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9000;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.popup {
    background: #faf8f3;
    padding: 20px;
    width: 600px;
	max-height:700px;
	overflow:auto;
    border-radius: 10px;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.popup.c-form p{
	font-size:16px;
}

.popup .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 30px;
}
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}
.popup-overlay.active .popup {
    transform: scale(1);
}

.popup.c-form textarea{
    height:125px;
}

.popup.c-form input[type=submit]{
	margin:0 auto;
}

.popup .wpcf7 form .wpcf7-response-output{
	margin:0em 0.5em 1em;
	font-size:16px;
}

.popup .wpcf7-form.sent .o-layout{
	display:none;
}


@media (max-width: 768px) {
    .popup { width:90%; height:100%; /*max-height:90vh;*/ overflow:scroll; margin-top:0; }
    .popup .o-layout_item{ padding:0 6px; }
}