
.gf_stylespro .validation_error {
    color: #f15555;
    padding: 1em;
    border: 1px solid;
    margin-bottom: 2em;
    margin-right: 2%;
}
/* Popup validation */
.gfsp_popup .validation_error {
    margin: 0;
    position: fixed;
    top: 30%;
    left: 50%;
    margin-left: -20%;
    width: 40%;
    background: #ffffff;
    background-color: var(--gfsp--warning-bg-color, #fff);
    padding: 1em 1em;
    box-sizing: border-box;
    box-shadow: 0 11px 17px -15px;
    z-index: 1;
    border: 1px solid;
    border-radius: 5px;
}
.gfsp_popup {
    position: fixed;
    background: rgba(255, 255, 255, 0.75);
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}


/* RESPONSIVE */
@media (max-width:768px) {
	.gfsp_popup .validation_error {
		margin-left: -35%;
		width: 70%;
    }
}



@media (max-width:480px) {
	/* Popup validation */
	.gfsp_popup .validation_error {
		left: 50%;
		margin-left: -40%;
		width: 80%;
    }   
}