body {
    margin: 0px;
    height: 100vh;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;;
    background-color: #18bc9c;
}

.full-SVG {
    width: 100%;
    height: 100%;
}

.container {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 50px 1fr;
    width: 100%;
    height: 100%;
}

.top-bar {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
    display: flex;
    justify-content: space-between;
    padding: 5px;
    align-items: center;
    font-weight: bold;
    font-size: 10px;
    background-color: #2c3e50;
    color: #FFF;
}

.viz {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
    display: flex;
    justify-content: center;
    padding: 5px;
    align-items: center;
}

.options {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px;
    align-items: center;
}



.value-span {
    margin-right: 10px;
}

.right-top-container{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 50px;
}


.title {
    font-weight: bold;
    font-size: 120%;
    margin-top: 5px;
    margin-bottom: 5px;
}

.title-white {
    font-weight: bold;
    font-size: 120%;
    margin-top: 5px;
    margin-bottom: 5px;
    color: white;
    text-align: center;
}

.pll-button {
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    background-color: #18bc9c;
    color: black;
    border: 2px solid #FFF;
    padding: 1em 2em;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 5px;
    border-radius: 1em;
}

.pll-button:hover {
    background-color: #FFF;
    color: black;
}

.framed {
    border: #FFF 4px solid;
}



.name-title {
    font-size: 2em;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    color: #ffffff;
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    text-decoration: none;
}

.name-title:hover {
    outline: 0;
    color: #18bc9c;
}

#timestamp {
    margin: 5px;
    font-family: Courier New, Courier, monospace;
    font-size: 120%;
}

.invisible {
    display: none;
}

.end-content {
    color: white;
}

.modalDialog {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 99999;
	opacity:0;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modalDialog:target {
	opacity:1;
	pointer-events: auto;
}

.modalDialog > div {
	width: 400px;
	position: relative;
	margin: 10% auto;
	padding: 5px 20px 13px 20px;
	border-radius: 10px;
	background: #2c3e50;
}
.close {
	background: #606061;
	color: #FFFFFF;
	line-height: 25px;
	position: absolute;
	right: -12px;
	text-align: center;
	top: -10px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}

.close:hover { background: #00d9ff; }

.checkerboard {
  background-image: linear-gradient(45deg, #808080 25%, transparent 25%), linear-gradient(-45deg, #808080 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #808080 75%), linear-gradient(-45deg, transparent 75%, #808080 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}