/*!
Theme Name: Kadence Child for PM Space
Theme URI: https://www.kadencewp.com/kadence-theme/
Template: kadence
Author: IanMP
Author URI:https://profiles.wordpress.org/ianmp/
Description: A child theme for the Kadence Theme.
Version: 1.0.0
License: GNU General Public License v3.0 (or later)
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: kadence-child
*/

/* Theme customization starts here
-------------------------------------------------------------- */
/*
/* assign custom fonts to default styles */
body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
}

/** 'Toast' popup, regardless of page. Toast appears AFTER logout from active page. **/
/* display brief message on logout */
.fe-toast {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #B7472A;
	color: #fff;
	padding: 16px 24px;
	border-radius: 8px;
	box-shadow: 0 6px 20px rgba(0,0,0,0.25);
	font-size: 18px;
	z-index: 9999;
	opacity: 0;
	transition: opacity 0.8s ease;
	pointer-events: none;
}
.fe-toast.show { opacity: 1; }
.fe-toast.hide { opacity: 0; }

/* 'About Us' link in footer */
#wrapper .wp-block-list a:link {
	  text-decoration: none;
}
/* let's fix those pesky mis-aligned menu icons in FIREFOX! */
@supports (-moz-appearance: none) {
    .menu-label-icon {
        vertical-align: sub !important;
    }
}

