/*
 * Scroll-to-top control styling, lifted verbatim from the live page's
 * inline <style> block (WordPress "additional CSS", injected mid-body --
 * the enqueue-position class of markup this port deliberately does not
 * reproduce; the *rules* are real styling and are vendored here instead,
 * loaded from <head> like every other stylesheet).
 *
 * One rule from that live block is intentionally NOT carried over:
 * `.current-menu-item ul a:after { opacity: 0; }` targets a WordPress
 * "you are here" class this port never emits (see dom_parity.py's ignore
 * table) -- vendoring a selector that can never match would be dead code
 * pretending to be fidelity.
 */
#scrollUp{
	width: 90px;
    height: 90px;
    position: fixed;
    right: 25px;
    bottom: 150px;
}
#scrollUp:hover path{
	stroke: #FF7100;
}
@media screen and (max-width: 1320px){
	#scrollUp{
		width: 60px;
    	height: 60px;
        bottom: 120px;
    }
}
