/* === basics === */

body { padding:0; margin:0; background-color:#E8E8E8; font-family:verdana, sans-serif; color:#000000; }
a { color:rgb(255,69,0); }
a:hover { color:rgb(255,0,0); }
a:active { color:rgb(255,0,0); }

.theme_anchor { height:0; overflow:hidden; }

/* === root === */

.theme { margin-left:auto; margin-right:auto; max-width:780px; padding:16px; }
.theme_inner { display:flex; flex-direction:column; justify-content:flex-start; background-color:rgb(255,255,255); border:solid 3px rgb(192,192,192); border-radius:16px; padding:16px; }

/* === header === */

.theme_header { display:flex; align-items:center; background:linear-gradient(0deg, rgb(213,138,38) 0%, rgb(255,179,0) 100%); border:solid 3px rgb(212,212,212); border-radius:16px; padding:16px;margin-bottom:16px; }
.theme_header_title-slogan { flex:1; }
.theme_header_title { font-size:1.5rem; font-weight:bold; text-align:center; color:rgb(255,255,255); }
.theme_header_slogan { font-size:1.1rem; text-align:center; font-style:italic; color:rgb(206,224,229); text-align:center; }
.theme_header_burger-container { display:none; }
.theme_header_burger-container a { display:inline-block; border:0; width:32px; height:32px; background-image:url( "burger.png" ); background-repeat:no-repeat; background-position:center; background-color:transparent; background-size:100%; color:transparent; text-decoration:none; }

/* === desktop menu === */

.theme_menu { margin-bottom:16px; }
.theme_menu_header { display:none; }
.theme_menu_main ul { display:block; padding:0; margin:0; text-align:center; }
.theme_menu_main li { display:inline-block; padding:0; margin:0; margin-left:8px; margin-right:8px; }
.theme_menu_main li:last-child { margin-bottom:0; }
.theme_menu_main a { display:inline-block; border:solid 3px rgb(212,212,212); padding:6px; border-radius:8px; text-align:center; }

/* === breadcrumb === */

.theme_breadcrumb { text-align:left; font-size:0.75rem; background-color:rgb(240,240,240); padding:4px; margin-bottom:8px; }

/* === page content === */

.theme_page-content { margin-bottom:16px; }

/* === bottom === */

.theme_footer { text-align:center; font-size:0.9rem; background-color:rgb(240,240,240); padding:8px; }
.theme_footer_by { margin-bottom:16px; }

/* === mobile spacer */

.theme_mobile-spacer { display:none; }

/* === mobile view adjustments === */

.theme_header { order:10; }
.theme_menu { order:20; }
.theme_breadcrumb { order:30; }
.theme_page-content { order:40; }
.theme_footer { order:50; }

@media screen and (max-width: 600px)
{
	.theme_header { order:10; }
	.theme_breadcrumb { order:20; }
	.theme_page-content { order:30; }
	.theme_menu { order:40; }
	.theme_footer { order:50; }

	.theme { max-width:600px; }
	.theme_menu_header { display:flex; align-items:center; margin-bottom:16px; }
	.theme_menu_heading { flex:1; margin-right:16px; font-size:1.5rem; font-weight:bold; }
	.theme_menu_main ul { display:block; padding:0; margin:0; text-align:center; }
	.theme_menu_main li { display:block; padding:0; margin:0; margin-bottom:8px; }
	.theme_menu_main li:last-child { margin-bottom:0; }
	.theme_menu_main a { display:block; border:solid 3px rgb(212,212,212); padding:6px; border-radius:8px; text-align:center; }
	.theme_header_burger-container { display:block; }
	
	.theme_mobile-spacer { display:block; height:400px; }
	
}

/* === page content styles === */

/* h1 - h6 */

.theme_page-content h1 { padding:0; margin:0; margin-bottom:1rem; }
.theme_page-content h1:last-child { margin-bottom:0; }

.theme_page-content h2  { padding:0; margin:0; margin-bottom:1rem; }
.theme_page-content h2:last-child { margin-bottom:0; }

.theme_page-content h3 { padding:0; margin:0; margin-bottom:1rem; }
.theme_page-content h3:last-child { margin-bottom:0; }

.theme_page-content h4 { padding:0; margin:0; margin-bottom:1rem; }
.theme_page-content h4:last-child { margin-bottom:0; }

.theme_page-content h5 { padding:0; margin:0; margin-bottom:1rem; }
.theme_page-content h5:last-child { margin-bottom:0; }

.theme_page-content h6 { padding:0; margin:0; margin-bottom:1rem; }
.theme_page-content h6:last-child { margin-bottom:0; }

/* paragraph */

.theme_page-content p { padding:0; margin:0; margin-bottom:1rem; }
.theme_page-content p:last-child { margin-bottom:0; }

/* tables + cells */

.theme_page-content table { border-collapse:collapse; border:solid 1px rgb(192,192,192); padding:0; margin:0; margin-bottom:1rem; }
.theme_page-content table:last-child { margin-bottom:0; }
.theme_page-content th { padding:4px 8px; border:solid 1px rgb(192,192,192); }
.theme_page-content td { padding:4px 8px; border:solid 1px rgb(192,192,192); }

/* unordered list */

.theme_page-content ul { padding:0; margin:0; margin-bottom:1rem;margin-left:20px; }
.theme_page-content ul:last-child { margin-bottom:0; }

/* ordered list */

.theme_page-content ol { padding:0; margin:0; margin-bottom:1rem; margin-left:25px; }
.theme_page-content ol:last-child { margin-bottom:0; }

/* === theme help! === */

.theme_help { color:rgb(0,0,0); display:inline-block; background-color:rgb(197,255,147); padding:2px 16px; margin-bottom:1rem; }