@charset "UTF-8";
/**
 * Theme Name: Familiennetz Fachbox Child Theme
 * Template: famnetz
 * Theme URI: https://familiennetz-bremen.de/fachbox/
 * Author: Jann-Hendrik Tjards
 * Author URI: https://tjards.com
 * Description: Das Theme für die Fachbox vom Familiennetz
 * Version: 1.0.0
 * Requires PHP: 8.3
 * Text Domain: familiennetz
 */


/*--------------------------------------------------------------
# Themed Variables
--------------------------------------------------------------*/
:root {
	--color_primary: var(--color_petrol);
	--color_primary_light: var(--color_petrol_light);
	--color_primary_active: var(--color_petrol_active);
	--color_primary_light_alt: var(--color_primary_light_alt);
	--color_primary_active_alt: var(--color_primary_active_alt);
}

.site-title a{
	width: 143px;
	background: url('img/fachportal_logo.svg') center no-repeat;
}
@media screen and (width <= 79em) {
	.site-title a{
		width: 113px;
	}
}

/* themen */
.page_header {
	--_bg_color: var(--color_green_light_alt);
}






/*--------------------------------------------------------------
# Reversed View Transitions
--------------------------------------------------------------*/
@keyframes fade-slide-out {
    to {
        opacity: 0;
        transform: translateX(20px);
    }
}

@keyframes fade-slide-in {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
}