/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/
#site-logo > svg path {
	fill: var(--base);
	transition: all 1s ease;
}
#site-logo:hover > svg > .char-v > path {
	fill: var(--light-green);
    transition: fill .1s ease;
}
#menu-primary-menu {
	text-align: right;
}
#menu-primary-menu > li {
	transition: all 0.25s ease 0s;
}
#menu-primary-menu > li:hover {
	transform: translate3d(-5px, 0px, 0px);
}
#content {
	min-height: 100vh;
}
body.admin-bar #content {
	min-height: calc(100vh - 32px);
}
#content > .sidebar > .inside-right-sidebar {
	display: flex;
    height: 100%;
	position: sticky;
    top: 72px;
    max-height: calc(100vh - 112px);
}
#content > .sidebar > .inside-right-sidebar > .gen-sidebar-nav {
    display: flex;
    height: 100%;
	width: 100%;
    flex-direction: column;
    justify-content: space-between;
	align-items: flex-end;
}