:root {
    --Primary: #D04A02;
    --Light: #FFFFFF;
    --Accent: #464646;
    --Dark: #000000;
    --TextPrimary: #000000;
}


p
{
	color: var(--TextPrimary);
	font-family: Arial;
	font-size: 18px;
}

h1 
{
    color: var(--TextPrimary);
    font-family: Arial;
	font-size: 30px;
}

h2 
{
    color: var(--TextPrimary);
    font-family: Arial;
	font-size: 26px;
}
h3
{
    color: var(--TextPrimary);
    font-family: Arial;
	font-size: 22px;
}
h4
{
    color: var(--TextPrimary);
    font-family: Arial;
	font-size: 18px;
}

canvas {
    border: 2px solid var(--Primary);
}

#map {
position: relative;
background: #FFFFFF;
height: 100%;
width: 100%;
position: absolute;

}

#parentcontainer
{

background: #FFFFFF;
border-style: solid;
border-color: #FFFFFF;
height: 800px;
margin: 0,0,50px,150px;

}

#contentcontainer
{
background: orange;
height: 96%;
width: 96%;
margin: 2%;
position: relative;
}

#frame-title, #frame-content {
    color: #000000;
    background-color: #FFFFFF;
    padding: 6px;
}

#framecontainer {
border: 1px solid var(--Primary);
  background: #FFFFFF;
  position: absolute;
  z-index: 999;
  padding: 1px;
  overflow-y: auto;
}

#framecontainer > div {
    margin-top: 1%;
    margin-left: 12px;
    margin-right: 12px;
    margin-bottom: 0px;
}

#map-canvas {
    display: block;
    position: relative;
    border: 1px solid var(--Primary);
    background-color: #FFFFFF;
}

.stepcontent p {
margin-left: 10px;
margin-right:2px;
}

.btn{
  background-color: var(--Primary);
  border: none;
  color: var(--Light);
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  float: left;
  width: 128px;
  -webkit-transition-property: background-color, color; /* Safari */
  -webkit-transition-duration: .25s; /* Safari */
  transition-property: background-color, color;
  transition-duration: .25s;
}

.btn:hover {
  background-color: var(--Light);
  color: var(--Primary);
}

 /* On mouse down */
.btn:active {
  background-color: var(--Primary);
  color: var(--Light);
}

.btn:focus {
  outline: none;
}

.btn:disabled {
  background-color: #E5E5E5;
  color: #000000;
  cursor: not-allowed;
}

#ButtonBar {
	background-color: var(--Primary);
}

#goto-list {
  position: absolute;
  bottom: 5px;
  border: 3px solid black;
  background-color: white;
  min-width: 20vw;
  font: 13px Arial;
  overflow-y: scroll;
  z-index: 9999;
  max-width: 100%;
  max-height: 70vh;
}

#goto-list div {
  background-color: #eee;
  color: black;
  display: block;
  padding: 12px;
  text-decoration: none;
  cursor: pointer;
}

#goto-list div:hover {
	background-color: #888;
	color: white;
}

#texts {
    position: absolute;
    margin-left: 10px;
    margin-top: 13px;
    margin-bottom: 2px;
    overflow-y: auto;
    margin-right: 10px;
}

#play-btn {
    background-image: url(play.png);
    background-repeat: no-repeat;
    width: 50%;
    height: 50%;
    position: absolute;
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 0%;
    margin: auto;
    background-size: contain;
    background-position: center;
    cursor: pointer;
}

#left-icon {
    background-image: url(left.png);
    background-repeat: no-repeat;
    position: absolute;
    top: 200px;
    height: 100%;
    width: 100%;
    display: none;
}

#title-img {
    width: 100%;
    position: absolute;
    background-size: contain;
    background-position: center;
	top: 5%;
	left: 5%;
}

.end-screen {
    display: none;
    width: 100%;
    position: absolute;
    background-size: contain;
    background-position: center;
	text-align: center;
	top: 40%;
}

.end-screen img{
    padding-bottom: 4%;
}

.end-btn{
  background-color: var(--Light);
  border: 3px solid var(--Primary);
  color: var(--Primary);
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition-property: background-color, color; /* Safari */
  -webkit-transition-duration: .25s; /* Safari */
  transition-property: background-color, color;
  transition-duration: .25s;
}

.end-btn:hover {
  background-color: var(--Accent);
  color: var(--Light);
}

 /* On mouse down */
.end-btn:active {
  background-color: var(--Primary);
  border: 3px solid var(--Primary);
  color: var(--Light);
}

.end-btn:focus {
  outline: none;
}

.buttonbar {
	background: var(--Primary);
	height: 48.75px;
	border: solid 2px var(--Primary);
}
