body {
  background: #97cfca;
  overflow: hidden;
}
.button {
	cursor:pointer;
}
#canvas{
	width:100%;
	height:100%;
	overflow: hidden;
	top:0;
	left:0;
	background-color: #1a1724;               
}
.canvas-wrap{ 
    width:100%; height:100%; position:absolute; left:0; top:0;
}
div.canvas-content{
	position:relative;
	z-index:2000;
	color:#fff;
	text-align:center;
	padding-top:30px;
}
.terminal-window {
  text-align: left;
  width: 75%;
  height: 30vh; 
  border-radius: .625rem;
  margin:10vh auto; 
  position: relative;
  top: 10.5rem;
}

.terminal-window header {
  background: #E0E8F0;
  height: 1.875rem;
  border-radius: .5rem .5rem 0 0;
  padding-left: .625rem;
}

.terminal-window header .button {
  width: .75rem;
  height: .75rem;
  margin: .625rem .25rem 0 0;
  display: inline-block;
  border-radius: .5rem;
}

.terminal-window header .button.green {
  background: #3BB662;
}

.terminal-window header .button.yellow {
  background: #E5C30F;
}

.terminal-window header .button.red {
  background: #E75448;
}

.terminal-window section.terminal {
  color: white;
  font-family: Menlo, Monaco, "Consolas", "Courier New", "Courier";
  font-size: 11pt;
  background: #30353A;
  padding: .625rem;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  top: 1.875rem;
  bottom: 0;
  border-radius: 0 0 .5rem .5rem;
  overflow: auto;
}

.terminal-window section.terminal a {
    color: #fff;
}

.terminal-window section.terminal .typed-cursor {
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}
@keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}

.terminal-data { display: none; }
.terminal-window .gray { color: gray; }
.terminal-window .green { color: green;}
/* Precon Options */ 
.elena-options {
    position: fixed;
    display: block;
    z-index: 99998;
    padding: 20px;
    width: 160px;
    background: #fff;
    text-align: left;
    top: 50%;
    margin-top: -172.95px;
    -webkit-box-shadow: -3px 0px 25px -2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: -3px 0px 25px -2px rgba(0, 0, 0, 0.2);
    box-shadow: -3px 0px 25px -2px rgba(0, 0, 0, 0.2);
    z-index: 1300000;
    right: -200px;
    margin-top: -215px;
}
.elena-options .icon {
	position: absolute;
	left: -50px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 25px;
	border-radius: 5px 0 0 5px;
	background: #fff;
	color: #444;
	text-align: center;
	background: #fff;
	color: #555 !important;
	top: 0;
	cursor: pointer;
	box-shadow: -7px 1px 8px #00000012;
}
.elena-options .icon i {
	cursor: pointer;
	color: #000;
}
.elena-options h4 {
	display: block;
	font-size: 15px;
	margin-bottom: 10px;
}
.elena-options .single-option p {
	line-height: 20px;
	margin-bottom: 15px;
}
.elena-options ul li{
	font-weight:500;
	font-size:14px;
}
.elena-options ul li a{
	color:#555;
}

.elena-options .select-layout a {
	border: 1px solid #ccc;
	text-align: center;
	padding: 5px 0;
	outline: none;
	display: inline-block;
	padding: 5px 17px;
	color: #353535;
	cursor:pointer;
}
.elena-options .single-option .bg-pattern {
    margin-top: -3px;
}
.elena-options .single-option .bg-pattern li {
    display: inline-block;
    margin-top: 3px;
}
.elena-options .single-option .bg-pattern li img {
    width: 46px;
    height: 36px;
}
.elena-options span {
    width: 48px;
    height: 40px;
    cursor: pointer;
    display: inline-block;
    border: 2px solid #f5f5f5;
	position:relative;
}
.elena-options span:before,
.elena-options span:after{
    content: "";
    position: absolute;
	width: 100%;
    height: 100%;
	left:0;
}
/* Skin 1 */
.elena-options span.skin1:before {
    background: #2d7dff;
}
.elena-options span.skin2:before {
    background: #4f0088;
}
.elena-options .single-option {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
	outline:none;
	    transform: unset;
}
.elena-options .single-option:last-child{
	margin:0;
	padding:0;
	border:none;
}
.elena-options span{
	position:relative;
}
.icon-gear-fill {
	display: inline-block;
    animation:revolve 2s infinite linear;
	-webkit-animation:revolve 2s infinite linear;
}
@keyframes revolve {
	from {
		-webkit-transform:rotate(0deg);
		transform:rotate(0deg);
	}
	to {
		-webkit-transform:rotate(359deg);
		transform:rotate(359deg);
	}
}
/*Media for mobile responsive viewing*/
@media only screen and (max-width: 600px) {
.terminal-window header {
  background: #E0E8F0;
  height: 1.875vmin;
  border-radius: .5vmin .5vmin 0 0;
  padding-left: 1vmin;
}
.terminal-window section.terminal {
	border-radius: 0 0 .5vmin .5vmin;
}
}
@media only screen and (max-width: 600px) {
.terminal-window header .button {
  width: .75vmin;
  height: .75vmin;
  margin: .625vmin .25vmin 0 0;
  display: inline-block;
  border-radius: .5vmin;
}
}
@media only screen and (max-width: 600px) {
.terminal-window header .button.green {
  background: #3BB662;
}
}
@media only screen and (max-width: 600px) {
.terminal-window header .button.yellow {
  background: #E5C30F;
}
}
@media only screen and (max-width: 600px) {
.terminal-window header .button.red {
  background: #E75448;
}
}
@media only screen and (max-width: 600px) {
.terminal-window section.terminal {
  color: white;
  font-family: Menlo, Monaco, "Consolas", "Courier New", "Courier";
  font-size: .6875vmin;
  background: #30353A;
  padding: .625vmin;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  top: 1.875vmin;
  bottom: 0;
  overflow: auto;
}
}
.terminal-window section.terminal .typed-cursor {
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}
@keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}

.terminal-data { display: none; }
.terminal-window .gray { color: gray; }
.terminal-window .green { color: green;}