html {
  scroll-behavior: smooth;
}
body {
	background-color: #CCC;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
}
#warning {
	position: relative;
	max-width: 800px;
	height: 100vh;
	margin: auto;
	z-index: 100;
	background-color: #999;
}
#warning_box {
	position: relative;
	background-color: #FFF;
	margin-top: 0;
	padding: 1em;
	width: 50%;
	margin: auto;
	height: auto;
	top: 25%;
	min-height: 200px;
	border-radius: 0.7em;
}
#warning_box h3 {
	text-align: center;
}
#warning_box button {
	position: relative;
	margin: 1.5em auto 0.8em;
	/*width: 50%;*/
	padding: 0.5em 1em;
	font-size: 1em;
	display: block;
	/*font-weight: bold;*/
}
#header, #footer {
	position: fixed;
	background-color: #999;
	height: auto;
	width: 100%;
	background: 
		/* top, transparent red, faked with gradient */ 
		linear-gradient(
		  rgba(255, 255, 255, 0.75), 
		  rgba(255, 255, 255, 0.75)
		),
		/* bottom, image */
		#999;
}
#header {
	top: 0;
	z-index: 1;
	border-bottom: solid 1px #999;
	display: table;
	padding: 0.6em;
}
#header h1, #nav {
	max-width: 800px;
	margin: auto;
}
h1 span {
	padding: 0.5em;
    font-size: 0.8em;
    position: relative;
    top: 0.1em;
	display: table-row;
}
#content {
	position: relative;
	background-color: #999;
	/*padding: 0 0.7em;*/
	max-width: 800px;
	margin: auto;
	height: 100vh;
	min-height: 600px; /* might need to dynamically set this according to number of slides */
}
#accordion {
	position: relative;
	padding: 3em 0.7em;
	border: 0;
	border-radius: 0.7em;
}
#accordion div {
	/*height: auto !important;*/ /* this breaks the accordion animation - need to find another solution for panels being too high*/
}
#accordion div .top_border {
	height: 0.7em !important;
}
#footer {
	bottom: 0;
	z-index: 2;
	border-top: solid 1px #999;
}
#next_btn, #back_btn {
	position: relative;
	float: left;
    margin: 0.5em 0.7em;
    padding: 0.5em;
	font-size: 1em;
	/*font-weight: bold;*/
}
#next_btn {
	float: right;
}
#accordion h3 {
	font-size: 1.2em;
    font-weight: bold;
	background-color: #FFF;
	color: #000;
	border: 0;
}
.inner_slide {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.panel_content {
	border: 0;
}
.panel_heading {
	margin-top: 0.5em !important;
}
.inner_slide p {
	margin: 0;
	
}
.inner_slide div {
	display: table-cell;
	vertical-align: top;
	padding: 0.7em;
}

.pipe {
	height: 100%;
	width: 1px;
	background-color: #999;
	padding: 0 !Important;
	opacity: 0.25;
}
.image_panel span {
	display: block;
	font-size: 0.85em;
}
/*.image_panel {
	display: table-cell;
	vertical-align: top;
}
.text_panel {
	display: table-cell;
	vertical-align: top;
}*/

.ui-icon {
	display: none;
}
.ui-accordion-content {
	padding: 0 !Important;
}
.image_panel img {
	-webkit-clip-path: inset(2% 2% 2% 2% round 10px);
	clip-path: inset(2px round 10px);
}
h3 img {
	-webkit-clip-path: inset(2% 2% 2% 2% round 1px);
	clip-path: inset(2px round 1px);
	vertical-align: middle;
	padding-right: 0.5em;
	position: relative;
	left: -2px;
}
button {
	position: relative;
	border: none;
	color: #000;
	background-color: #FFF;
	border-radius: 5px;
	cursor: pointer;
	transition: 0.25s;
	-webkit-transition: 0.25s;
}
button:disabled {
	opacity: 0.25;
	cursor: not-allowed;
}
/*button:hover {
	background-color: #FFF !important;
	color: #000;
}*/
.chevron {
	font-weight: bold;
	font-size: 0.9em;
}