/* GeneratePress Site CSS */ /* element dc - Site library CSS */

/* Control overflow on hero image */
.elementor-editor-active .overflow-x-hidden,
.overflow-x-hidden {
    overflow-x: hidden !important;
}

@media(max-width: 767px) {

    .no-abs-mobile,
    .elementor-editor-active .no-abs-mobile {
        position: static !important;
    }
}

/* no-mobile-bg-overlay - remove overlay on small devices */
@media(max-width: 1024px) {

    .no-mobile-bg-overlay .elementor-background-overlay,
    .elementor-editor-active .no-mobile-bg-overlay .elementor-background-overlay {
        display: none;
    }
}

/* Adjust button shadow and float animation */
.no-hover-shadow .elementor-button:not(:hover),
.button:not(:hover),
input[type="submit"]:not(:hover) {
    box-shadow: 0 15px 25px -12px rgba(2, 62, 83, 0) !important;
}

/* Reduce height of float animation */
.elementor-animation-float:active,
.elementor-animation-float:focus,
.elementor-animation-float:hover {
    transform: translateY(-4px);
}

/* Add Border to top of theme footer */
.site-footer {
    border-top: 1px solid #ccc
}

/* Theme Buttons */
.button,
input[type="submit"] {
    color: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    -webkit-box-shadow: rgba(2, 62, 83, 0.67) 0px 15px 15px -12px;
    padding: 20px 25px 20px 25px;
}

/* Fonts */
/* outfit-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  src: url('//srv/htdocs/wp-content/uploads/2023/11/outfit-v11-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  src: url('//srv/htdocs/wp-content/uploads/2023/11/outfit-v11-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  src: url('//srv/htdocs/wp-content/uploads/2023/11/outfit-v11-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  src: url('//srv/htdocs/wp-content/uploads/2023/11/outfit-v11-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  src: url('//srv/htdocs/wp-content/uploads/2023/11/outfit-v11-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
add_filter( 'block_editor_settings_all', function( $editor_settings ) {
    $css = wp_get_custom_css_post()->post_content;
    $editor_settings['styles'][] = array( 'css' => $css );

    return $editor_settings;
} );



 /* End GeneratePress Site CSS */


/* WP Form Button */
.wpforms-form input[type=submit], 
.wpforms-form button[type=submit] {
    background-color: #FAF243 !important; /* Yellow background */
}