/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

/* Add your custom styles here... */ 

/*== CUSTOM Theme Settings (A:pcmkfarochilen) ==*/

/*GRAVITY FORM GLOBAL SETTINGS*/

/* Gravity form updated API outlines
* See change log: https://docs.gravityforms.com/gravityforms-change-log/
* Remove outline, use :focus (only input fields not button) */
.gform-theme--framework input:focus{outline: unset !important;}

/*HIDE GRAVITY FORM WIDGET TITLE AND FORM TITLE - added by karaf (02.12.25)*/
.gform_widget {
/* hide WordPress gravity form 
widget title */
.widgettitle  {
    display: none;
}

.gform_heading {
  display: none;  
}
}

/*== GRAVITY FORM ==*/ 
/* form body */
.gform-left {
	.gform_body {
		display: flex;
		justify-content: start;
		.gform_page {
		    width: 100%;
		}
	}
}
.gform-center {
	.gform_body {
		display: flex;
		justify-content: center;
		.gform_page {
		    width: 100%;
		}
	}
}
.gform-right {
	.gform_body {
		display: flex;
		justify-content: end;
	    .gform_page {
		    width: 100%;
		}
	}
}
/* form page button */
.gform-page-footer-center {
	.gform_page_footer {
		display: flex;
		justify-content: center;
	}
}
.gform-page-footer-right {
	.gform_page_footer {
		display: flex;
		justify-content: end;
	}
}


/*== BB MODULE SETTINGS ==*/ 
.fl-row {
    overflow-x: clip;
	ul {
	margin-bottom: 0;
	 /*padding: 28px; */
	}
	p {
		margin-bottom: 0;
	}
}


/* ADD TRANSITION TO BUTTON GROUP MODULE */
.fl-button-group .fl-button-group-button  a.fl-button:hover {
    transition: all .2s linear !important;
}


/* ICON ON BUTTON - the same size as the font-size  */
.fl-builder-content .fl-button i {
    font-size: inherit !important;
}


/*== BB POWER PACK SETTINGS ==*/
/* Info Box */
.pp-infobox .pp-infobox-icon { transition: .3s all; }
.pp-infobox:hover .pp-infobox-icon { transition: .3s all; }


  
