/*======================================
Theme Name: Divi Child Theme
Theme URI: https://www.elegantthemes.com/
Description: This is a Divi child theme.
Author: Eleganth Themes
Author URI: https://www.elegantthemes.com/
Template: Divi
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
======================================*/

/*add your custom CSS below this line*/

/* Added space on lists in all text modules */

.et_pb_text ul li, .et_pb_text ol li {
  margin-bottom: 10px;
}

/* Divi Plus Flipbox image fix*/
.dipl_flipbox .flipbox_front {
	background-size: cover!important;
	background-repeat: no-repeat!important;
}

/* Form Footer Styles */

.forminator-ui.forminator-custom-form[data-design=default] .forminator-pagination-footer {
    display: flex!important;
    gap: 10px;
}

/*prevent horizontal scroll on mobile*/

@media all and (max-width: 980px) {
	html,
	body {
		overflow-x: hidden;
	}
	body {
		position: relative
	}
}

/* Secondary header items align to the right*/

@media only screen and (min-width: 768px) {
	#et-info { float:right !important;}
}

/* Reverse columns on a row */
@media screen and ( max-width: 980px ) {
    .reverse {
        display: flex;
        flex-direction: column-reverse;
    }
} 

/* Form Footer mobile Styles */

@media only screen and (max-width: 768px) {
 .forminator-ui.forminator-custom-form[data-design=default] .forminator-pagination-footer {
    flex-direction: column;
}
}
 