/* ---- Page Level Styling ------------- */

html {
  color: #888 rgba(0, 0, 0, .5);
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  -moz-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  -webkit-font-smoothing:antialiased;
  -webkit-font-smoothing:subpixel-antialiased;
  font-smoothing:antialiased;
  text-shadow:0.01em 0.01em 0.01em rgba(0,0,0,0.002);
  text-rendering:optimizeLegibility;
  text-rendering:geometricPrecision;
  font-smooth:always;
}

*, *:before, *:after {
  font-family: 'Orbitron', sans-serif;
  font-size: 19.3px;
  font-weight: 400;
  box-sizing: inherit;
}
@media(max-width:1600px){
	*, *:before, *:after {
	  font-size: 18.2px;
	}
}
@media(max-width:1199px){
	*, ::before, ::after {
	  font-size: 14.6px;
	}
}

html, body, .workspace, .worksheet {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

body {
  background: #000;
}

body canvas {
	vertical-align: center;
}

canvas {
	outline: none!important;
}

.workspace, .workspace.overlay, .worksheet {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

.list-menu {
	width: 100% !important;
	position: relative !important;
	height: 2.2em !important;
	margin-bottom: 0.3em;
	transform: translatex(0px);
	transition-duration: 0.1s, 0.1s;
	transition-property: transform, opacity;
	display: block !important;
	opacity:1;
}

.hidepanel .list-menu {
	transform: translatex(-100px) !important;
	opacity:0;
}

.hidepanel .list-menu:nth-child(1) {
	transition-delay: 0.05s, 1s;
}
.hidepanel .list-menu:nth-child(2) {
	transition-delay: 0.1s, 1s;
}
.hidepanel .list-menu:nth-child(3) {
	transition-delay: 0.15s, 1s;
}
.hidepanel .list-menu:nth-child(4) {
	transition-delay: 0.2s, 1s;	
}
.hidepanel .list-menu:nth-child(5) {
	transition-delay: 0.25s, 1s;
}
.hidepanel .list-menu:nth-child(6) {
	transition-delay: 0.3s, 1s;
}

.list-menu:nth-child(1) {
	transition-delay: 0.85s,0.85s;
}
.list-menu:nth-child(2) {
	transition-delay: 0.9s, 0.9s;
}
.list-menu:nth-child(3) {
	transition-delay: 0.95s, 0.95s;
}
.list-menu:nth-child(4) {
	transition-delay: 1.0s, 1.0s;	
}
.list-menu:nth-child(5) {
	transition-delay: 1.05s, 1.05s;
}
.list-menu:nth-child(6) {
	transition-delay: 1.1s, 1.1s;
}

.firstopen .list-menu:nth-child(1) {
	transition-delay: 0.0s,0.0s;
}
.firstopen .list-menu:nth-child(2) {
	transition-delay: 0.05s, 0.05s;
}
.firstopen .list-menu:nth-child(3) {
	transition-delay: 0.1s, 0.1s;
}
.firstopen .list-menu:nth-child(4) {
	transition-delay: 0.15s, 0.15s;	
}
.firstopen .list-menu:nth-child(5) {
	transition-delay: 0.2s, 0.2s;
}
.firstopen .list-menu:nth-child(6) {
	transition-delay: 0.25s, 1.25s;
}

.list-menu .content {
	padding: 5px;
	cursor: pointer;
	color: rgba(92, 120, 152, 1)!important;
}

.list-menu .content:hover,
.list-menu.selected-side-panel .content {
	background: #ff7800;
	border-radius: 3px;
	color: #ff7800!important;
	text-shadow: 0 0 2px rgba(250, 120, 0, 0.85), 0 0 5px rgba(250, 120, 0, 0.85), 0 0 5px rgba(250, 120, 0, 0.85);
	transition-delay: 50ms;
}

.selected-side-panel {
	background: #ff7800;
	border-radius: 3px;
	color: #ff7800!important;
	text-shadow: 0 0 2px rgba(92, 120, 152, 0.85), 0 0 5px rgba(92, 120, 152, 0.85), 0 0 5px rgba(92, 120, 152, 0.85);
	transition-delay: 50ms;
}

.list-menu .content:hover label {
	/*color: #ff7800!important;*/
	transition: 0.5s;
}

/* ---- Common Styling ----------------- */

.hidepanel { 
	left: -20% !important;
	top: 200% !important;
	transform: rotate(90deg)!important;
	opacity: 0 !important;
	transition-delay: 0.2s,0.2s,0.2s,0.2s !important;
}

.hidepanel * { 
pointer-events: none!important;
}

.middle-panel {
	position: fixed!important;
	top: 103px !important;
	left:400px !important;
	width: auto!important;
	bottom: auto !important;
	transition-duration: 0.5s, 0.5s, 0.5s, 0s, 0.2s;
	transition-property: left, right, min-width, top, opacity;
	transition-delay: 0s, 0s, 0s, 0s, 0.2s;
	right: auto !important;
	min-width: 550px;
	max-height: calc(100% - 200px);
	/*overflow-y: auto;*/
	max-width: calc(100% - 420px);
	opacity:1;
	z-index:2000;
	color: lightgray;
	display: flex!important;
	min-height: 40%;
}
@media(max-width:1199px){
	.middle-panel {
		left:300px !important;
	}
}
@media(max-width:991px){
	.middle-panel {
	  left: 20px !important;
	  max-width: calc(100% - 42px);
	  min-width:0px;
	  top:143px !important;
	}
}

.middle-panel.window {
	left: -10% !important;
	right: 200% !important;
	top: 15% !important;
	min-width: 0.1em!important;
	z-index:1000 !important;
	opacity:0 !important;
	
	transition-duration: 0.5s, 0.5s, 0.5s, 0.5s, 0.2s;
	transition-delay: 0.2s, 0.2s, 0.2s, 0s, 0s;
}

.soften {
  -webkit-filter: blur(.025em);
  -moz-filter: blur(.025em);
  -o-filter: blur(.025em);
  -ms-filter: blur(.025em);
  filter: blur(.025em);
}

.ssd-grid {
  height: calc(100% - 4px);
  background: #BBB;
  background-image: linear-gradient(0deg, transparent 0.72em, rgba(255, 255, 255, .5) 0.75em, rgba(255, 255, 255, .5) 0.78em, transparent 0.81em, transparent 2.22em, rgba(255, 255, 255, .5) 2.25em, rgba(255, 255, 255, .5) 2.28em, transparent 2.31em, transparent), linear-gradient(90deg, transparent 0.72em, rgba(255, 255, 255, .5) 0.75em, rgba(255, 255, 255, .5) 0.78em, transparent 0.81em, transparent 2.22em, rgba(255, 255, 255, .5) 2.25em, rgba(255, 255, 255, .5) 2.28em, transparent 2.31em, transparent);
  background-size: 3em 3em;
  color: #222;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 13px), calc(100% - 13px) 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 13px), calc(100% - 13px) 100%, 0 100%);
}

/* ---- Workspace Styling -------------- */

.workspace.starfield {
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
}

header  {
  width: 100%;
  height: 4em;
  margin-bottom: 0.75em;
}

nav {
  height: 2em;
}

aside, main {
  margin: 0;
  padding: 0;
  float: left;
  
}

aside {
  height: calc(100% - 200px);
  width: 100%;
  
  height: auto;
  position: relative;
  z-index: 100;
}

main {
    height: calc(100% - 8.8em);
}

footer  {
  position: absolute;
  width: calc(100% - 1em);
  height: 2em;
  bottom: 0.5em;
}

/* ---- UI Element Styling ------------- */

.overlay {
  margin: 0.5em;
  height: 100%;
  pointer-events: none;
}

.overlay * {
	pointer-events: auto;
}


.ui.panel {
  width: calc(100%-20px);
  height: calc(100%-20px);
  padding: 2px;
  background: #00a1ed; /* fallback */
  background: linear-gradient(0deg, transparent 0px, rgba(92, 120, 152, 0.85) 0) top left, linear-gradient(0deg, transparent 0px, rgba(92, 120, 152, 0.85) 0) top right, linear-gradient(315deg, transparent 10px, rgba(92, 120, 152, 0.85) 0) bottom right, linear-gradient(0deg, transparent 0px, rgba(92, 120, 152, 0.85) 0) bottom left;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  display: inline-block;
  -webkit-filter: drop-shadow(5px 5px 5px rgba(92, 120, 152, 0.2));
  filter: drop-shadow(5px 5px 5px rgba(92, 120, 152, 0.2));
  width: 220px;
  
  position: absolute;
  z-index: 100;
  bottom: -18px;
  top: auto;
  height: auto;
}

.ui.panel.popUp {
	left: 15px;
	bottom: 20px;
	margin-bottom:0px;
}

.ui.panel > .content {
  width: 100%;
  background: #00202F; /* fallback */
  background: linear-gradient(0deg, transparent 0px, rgba(0, 0, 0, 0.8) 0) top left, linear-gradient(0deg, transparent 0px, rgba(0, 0, 0, 0.8) 0) top right, linear-gradient(315deg, transparent 10px, rgba(0, 0, 0, 0.8) 0) bottom right, linear-gradient(0deg, transparent 0px, rgba(0, 0, 0, 0.8) 0) bottom left;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  overflow: hidden;
}


.ui.panel[disabled] {
	background: linear-gradient(0deg, transparent 0px, rgba(219, 219, 219, 0.5) 0) top left, linear-gradient(0deg, transparent 0px, rgba(219, 219, 219, 0.5) 0) top right, linear-gradient(315deg, transparent 10px, rgba(219, 219, 219, 0.5) 0) bottom right, linear-gradient(0deg, transparent 0px, rgba(219, 219, 219, 0.5) 0) bottom left;
	background-size: 50% 50%;
	background-repeat: no-repeat;
	
	-webkit-filter: drop-shadow(5px 5px 5px rgba(155, 155, 155, 0.2));
	filter: drop-shadow(5px 5px 5px rgba(155, 155, 155, 0.2));
}

.ui.panel[disabled] .content {
  color: #666 !important;
}

.ui.panel[disabled] .content:hover {
  text-shadow: none;
  cursor: auto;
}


.content > div {
  margin: 2px;
  padding: .5em;
  overflow: hidden;
  position:relative;
}

nav {
  width: 100%;
  height: 2em;
  padding: 0;
  margin: 0;
  display: inline-block;
}

nav li {
  margin: -0.7em 0.25em 0 0.25em;
  padding: 0;
  float: left;
  width: 220px;
  height: 2.2em;
  line-height: 2em;
  display: inline-block;
  -o-text-overflow: clip;
  text-overflow: clip;
  -webkit-transform: skewX(-30deg);
  transform: skewX(-30deg);
  -webkit-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0;    
  border: 2px solid rgba(92, 120, 152, 0.85);
  box-shadow: 5px 5px 6px rgba(92, 120, 152, 0.1);
  text-align: center;
  background: #00a1ed; /* fallback */
  background: linear-gradient(0deg, transparent 0px, rgba(92, 120, 152, 0.85) 0) left, linear-gradient(0deg, transparent 0px, rgba(92, 120, 152, 0.85) 0) right;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media(max-width:767px){
	nav li {
		margin-top: 5px;
		margin-left: -20px !important;
	}
}

nav li:first-of-type {
  margin-left: -1em;
}

nav li:hover,
nav li.glowingbutton {
	background: #ff7800;
	border-radius: 3px;
	box-shadow: 0 0 10px #ff7800, 0 0 40px #ff7800, 0 0 80px #ff7800;
	transition-delay: 50ms;
}

nav li:hover label,
nav li.glowingbutton label {
	color: #ff7800;
	transition: 0.5s;
}

.side-panels {
	transition-duration: 1s, 1s, 1s, 0.2s;
	opacity: 1;
	transition-property: transform, left, top, opacity;
	transition-delay: 0s,0s,0s,0.7s;
	position: fixed;
	width: 340px;
	left: 20px;
	top: 91px;
}
@media(max-width:1199px){
	.side-panels {
		width: 260px;
	}
}
@media(max-width:991px){
	.window-open .side-panels {
		left: -2080px;
	}
	.side-panels {
		top:141px;
	}
}

.firstopen .side-panels {
	transition-duration: 0s, 0s, 0s, 0.2s;
	transition-delay: 0s;
}

.glowingbutton {
	background: #ff7800;
	border-radius: 3px;
	box-shadow: 0 0 10px #ff7800, 0 0 40px #ff7800, 0 0 80px #ff7800;
	transition-delay: 50ms;
	color: #ff7800;
	transition: 0.5s;
}

nav li>div {
  width: 100%;
  height: 100%;
  color: #00202F;
  background: rgba(0, 0, 0, 0.8);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: inline-block;
  overflow: hidden;
}

nav li label,
nav li a {
  color: rgba(250, 120, 0, 1);
  -webkit-transform: skewX(30deg);
  transform: skewX(30deg);
  -webkit-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0;    
  display: block;
  cursor: pointer;
  overflow: hidden;
  font-weight: 700;
}
@media(max-width:1199px){
	nav li label {
		line-height: 1.8;
	}
}
nav li a:hover {
	color: rgba(250, 120, 0, 1);
	text-decoration:none;
}

.Loader {
  position: relative;
  display: flex;
  align-items: right;
  justify-content: right;
  width: 100%;
  max-width: 14.6rem;
  /*margin-top: 7.3rem;
  margin-bottom: 7.3rem;*/
  margin: 50vh 50vw;
}
.Loader:before, .Loader:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  animation-duration: 1.8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  filter: drop-shadow(0 0 0.75556rem rgba(9, 65, 94, 0.75));
}
.Loader:before {
  width: 100%;
  padding-bottom: 100%;
  box-shadow: inset 0 0 0 1.7rem #09415E;
  animation-name: pulsA;
}
.Loader:after {
  width: calc(100% - 1.7rem*2);
  padding-bottom: calc(100% - 1.7rem*2);
  box-shadow: 0 0 0 0 #09415E;
  animation-name: pulsB;
}



/* ---- CSS3 Animations ---------------- */

.glows {
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  outline: none;
}
.glows :before,
.glows :after {
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  content: '';
}
.popUp {
  animation: popUpFromBelow 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.popDown {
  animation: popBackDown 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popUpFromBelow {
  from {
    opacity: 0;
	transform:translatey(100%);
    visibility: hidden;
  }
  to {
    opacity: 1;
	transform:translatey(0%);
    visibility: visible;
  }
}

@keyframes popBackDown {
  from {
    opacity: 0.75;
    height: calc(100% - 20px);
    visibility: visible;
  }
  to {
    opacity: 0;
    height: 1px;
    margin-top: 50%;
    display: none;
    visibility: hidden;
  }
}

@keyframes pulsA {
  0% {
    box-shadow: inset 0 0 0 1.7rem #09415E;
    opacity: 1;
  }
  50%, 100% {
    box-shadow: inset 0 0 0 0 #09415E;
    opacity: 0;
  }
}
@keyframes pulsB {
  0%, 50% {
    box-shadow: 0 0 0 0 #09415E;
    opacity: 0;
  }
  100% {
    box-shadow: 0 0 0 1.7rem #09415E;
    opacity: 1;
  }
}

.scanlines {
  position: relative;
  overflow: hidden;
}
.scanlines:before, .scanlines:after {
  display: block;
  pointer-events: none;
  content: '';
  position: absolute;
}
.scanlines:before {
  width: 100%;
  height: 2px;
  z-index: 2147483649;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0.75;
  -webkit-animation: scanline 6s linear infinite;
          animation: scanline 6s linear infinite;
}
.scanlines:after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2147483648;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(51%, rgba(0, 0, 0, 0.3)));
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.3) 51%);
  background-size: 100% 4px;
  -webkit-animation: scanlines 1s steps(60) infinite;
          animation: scanlines 1s steps(60) infinite;
}

/* ANIMATE UNIQUE SCANLINE */
@-webkit-keyframes scanline {
  0% {
    -webkit-transform: translate3d(0, 200000%, 0);
            transform: translate3d(0, 200000%, 0);
  }
}
@keyframes scanline {
  0% {
    -webkit-transform: translate3d(0, 200000%, 0);
            transform: translate3d(0, 200000%, 0);
  }
}
@-webkit-keyframes scanlines {
  0% {
    background-position: 0 50%;
  }
}
@keyframes scanlines {
  0% {
    background-position: 0 50%;
  }
}

.wrapperloading {
  position: absolute;
  height: 200px;
  width: 210px;
  top: 85%;
  margin-top: -100px;
  left: calc(100% - 140px);
  margin-left: -100px;
  z-index:100;
}
@media(max-width:991px){
	.wrapperloading {
		display:none;
	}
}

.wrapper {
	z-index: 0;
	pointer-events: none;
}

.wrapperloading .text { 
  width:100%;
  text-align:center;
  color:white;
  font-size:2em;
  font-family: 'Orbitron', sans-serif;
  text-shadow: -3px 3px 0 rgba(150,150,150,0.1);
  -webkit-transform: rotateX(20deg);
  
  -webkit-animation: hide 1s linear infinite;
  -moz-animation: hide 1s linear infinite;
  -o-animation: hide 1s linear infinite;
  animation: hide 1s linear infinite;
}

.wrapperloading .inner {
  width:200px;
  height:100%;
  -webkit-transform: rotateX(60deg);
  -moz-transform: rotateX(60deg);
  -o-transform: rotateX(60deg);
  transform: rotateX(60deg);
  margin-top:-30px;
}

.gurp-logo {
	text-align: center;
	position: relative;
	height: 100%;
	bottom: 20%;
	right: 20%;
}

.gurp-logo a {
	color: #333!important;
}

.gurp-logo a:hover {
	color: #ff7800!important;
	transition-delay: 50ms;
	transition: 0.5s;
	text-shadow: 0 0 50px #ff7800, 0 0 40px #ff7800, 0 0 80px #ff7800;
}

.gurp-logo:hover {
	color: #ff7800;	
	text-shadow: 0 0 50px #ff7800, 0 0 40px #ff7800, 0 0 80px #ff7800;
	transition-delay: 50ms;
	transition: 0.5s;
}

.controls a {
  display: inline-block;
}

.controls .controls_txt {
  color: rgba(250, 120, 0, 1);
  display: inline-block;
  width:120px;
}
.control-label {
	color: white;
	text-transform: uppercase;
	font-size: 12px;
	margin-top: 10px;
	padding-top: 16px;
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-bottom:7px;
}
.control-label:first-child {
	padding-top:0px;
	margin-top:0px;
	border-top:0px;
}
.wrapperloading .loading.up {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 150px;
  border: 5px solid rgba(92, 120, 152, 0.4);
  border-top-color: rgba(92, 120, 152, 0.4);
  border-left-color: #333;
  border-right-color: #333;
  border-bottom-color: rgba(92, 120, 152, 0.4);
  -webkit-animation: rotation 2s ease infinite;
  -moz-animation: rotation 2s ease infinite;
  -o-animation: rotation 2s ease infinite;
  animation: rotation 2s ease infinite;
}

.wrapperloading .loading.down {
  position: absolute;
  height: 50%;
  width: 50%;
  top: 50%;
  margin-top: -50px;
  left: 50%;
  margin-left: -50px;
  border-radius: 150px;
  border: 3px solid rgba(92, 120, 152, 0.4);
  border-left-color: rgba(92, 120, 152, 0.4);
  border-top-color: #333;
  border-bottom-color: #333;
  border-right-color: rgba(92, 120, 152, 0.4);
  -webkit-animation: rotation 2s ease infinite reverse;
  -moz-animation: rotation 2s ease infinite reverse;
  -o-animation: rotation 2s ease infinite reverse;
  animation: rotation 2s ease infinite reverse;
}


@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Toggle button for 2D/3D mode */
.switch-wrapper * {
	box-sizing: border-box;
}
.switch-wrapper {
	width: 60px;
	margin-left: 0;
	margin-right: 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	display: inline-block;
}

.label-container p {
	font-size: 16px;
	font-weight: 400;
	color: #000;
	font-family: 'Ubuntu', sans-serif;
}

.controls_txt:hover {
	border-radius: 3px;
	text-shadow: 0 0 10px #ff7800, 0 0 10px #ff7800, 0 0 10px #ff7800;
	transition-delay: 50ms;
	color: #ff7800;
	transition: 0.5s;
}

.switch-container {
	width: 100%;
	max-width: 60px;
	max-height: 30px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 5px 8px;
	border-radius: 50px;
	position: relative;
	cursor: pointer;
	overflow: hidden;
}

.switch-container .switch-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: #198754;
	z-index: -1;
	transition: background-color 0.2s ease-in;
}

.switch-container .switch-left span {
	font-size: 11px;
	font-weight: 700;
	color: #fff;
	font-family: 'Ubuntu', sans-serif;
	line-height: 1;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.switch-container .switch-right span {
	font-size: 11px;
	font-weight: 700;
	color: #fff;
	font-family: 'Ubuntu', sans-serif;
	line-height: 1;
	opacity: 1;
	transition: opacity 0.3s ease-in-out;
}

.switch-container .round-box {
	position: absolute;
	width: 20px;
	height: 20px;
	top: 50%;
	transform: translate(-3px, -50%);
	background-color: rgba(128, 200, 255, 0.25);
	box-shadow: 0 2px 3px rgb(0 0 0 / 15%);
	border-radius: 50%;
	transition: transform 0.3s ease-in-out;
}

.switch-container #mode_2d3d:checked ~ .switch-bg {
	background-color: rgba(92, 120, 152, 0.7);
}

.switch-container #mode_2d3d:checked ~ .switch-left span {
	opacity: 1;
}
.switch-container #mode_2d3d:checked ~ .switch-right span {
	opacity: 0;
}

.switch-container #mode_2d3d:checked ~ .round-box {
	transform: translate(25px, -50%);
	border-radius: 2px;
	background-color: #ff7800;
}

.switch-container #toggle_claims:checked ~ .switch-bg,
.switch-container #toggle_income:checked ~ .switch-bg,
.switch-container #custommarkers:checked ~ .switch-bg {
	background-color: rgba(92, 120, 152, 0.7);
}

.switch-container #toggle_claims:checked ~ .switch-left span,
.switch-container #toggle_income:checked ~ .switch-left span,
.switch-container #custommarkers:checked ~ .switch-left span {
	opacity: 1;
}
.switch-container #toggle_claims:checked ~ .switch-right span,
.switch-container #toggle_income:checked ~ .switch-right span,
.switch-container #custommarkers:checked ~ .switch-right span {
	opacity: 0;
}

.switch-container #toggle_claims:checked ~ .round-box,
.switch-container #toggle_income:checked ~ .round-box,
.switch-container #custommarkers:checked ~ .round-box {
	transform: translate(25px, -50%);
	border-radius: 2px;
	background-color: #ff7800;
}

.switch-container #toggle_quadrants:checked ~ .switch-bg {
	background-color: rgba(92, 120, 152, 0.7);
}

.switch-container #toggle_quadrants:checked ~ .switch-left span {
	opacity: 1;
}
.switch-container #toggle_quadrants:checked ~ .switch-right span {
	opacity: 0;
}

.switch-container #toggle_quadrants:checked ~ .round-box {
	transform: translate(25px, -50%);
	background-color: #ccc;
	background-size: 5px 5px;
	background-image: linear-gradient(to right, grey 1px, transparent 1px), linear-gradient(to bottom, grey 1px, transparent 1px);
}

.switch-container #planetsfilter:checked ~ .switch-bg {
	background-color: rgba(92, 120, 152, 0.7);
}

.switch-container #planetsfilter:checked ~ .switch-left span {
	opacity: 1;
}
.switch-container #planetsfilter:checked ~ .switch-right span {
	opacity: 0;
}

.switch-container #planetsfilter:checked ~ .round-box {
	transform: translate(25px, -50%);
	background: #c7cbd0;
	box-shadow: inset 5px 0px 0 0px #9098a1;
}

.switch-container #publicstation:checked ~ .switch-bg {
	background-color: rgba(92, 120, 152, 0.7);
}

.switch-container #publicstation:checked ~ .switch-left span {
	opacity: 1;
}
.switch-container #publicstation:checked ~ .switch-right span {
	opacity: 0;
}

.switch-container #publicstation:checked ~ .round-box {
	transform: translate(25px, -50%);
	border-style: solid;
	border-color: transparent transparent grey transparent;
	background-color: yellow;
	border-width: 0 10px 20px 10px;
	height: 0;
}

.switch-container #controlpoints:checked ~ .switch-bg {
	background-color: rgba(92, 120, 152, 0.7);
}

.switch-container #controlpoints:checked ~ .switch-left span {
	opacity: 1;
}
.switch-container #controlpoints:checked ~ .switch-right span {
	opacity: 0;
}

.switch-container #controlpoints:checked ~ .round-box {
	transform: translate(25px, -50%);
	background-color: rgba(128, 200, 255, 0.25);
}
.switch-container #controlpoints:checked ~ .round-box:before {
	transform: translate(25px, -50%);
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: currentColor;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 40%;
	color: rgba(255, 20, 20, 0.75);
}
.switch-container #controlpoints:checked ~ .round-box:after {
	transform: translate(25px, -50%);
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: currentColor;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 40%;
	color: rgba(255, 20, 20, 0.75);
}



.mapTooltip {
	background: rgba(92, 120, 152, 0.85);
	border: 2px solid rgba(92, 120, 152, 0.85);
	padding: 3px 10px;
	position: fixed;
	display: none;
	top: 47%;
	left: 54%;
	z-index: 100;
	font-size: 0.8em;
	background: rgba(92, 120, 152, 0.2);
	filter: drop-shadow(5px 5px 5px rgba(92, 120, 152, 0.2));
	color: rgba(92, 120, 152, 0.6);
}
.mapTooltip.active {
	display:block;
}

.mapNotifications {
	display:block;
	position:fixed;
	top:60px;
	/*right:10px;*/
	z-index:100;
	left:50%;
}
.mapNotification {
	border: 2px solid rgba(92, 120, 152, 0.85);
	padding: 3px 10px;
	position: relative;
	z-index: 1000;
	font-size: 0.8em;
	background: rgba(92, 120, 152, 0.2);
	filter: drop-shadow(5px 5px 5px rgba(92, 120, 152, 0.2));
	color: rgba(92, 120, 152, 0.85);
	margin-bottom:10px;
	transform:translatex(-50%);
}
.windowtitle {
	background-color: rgba(92, 120, 152, 0.6);
	color: darkgray;
	margin: 0.4em !important;
	height: 2.4em;
	font-weight: bold;
	position: relative;
	z-index: 1;
}
.tableui {
	border-spacing: 10px;
	border-collapse: separate;
	position: relative;
	z-index: 1;
	min-width: 260px;
}
.tabletitle {
	background-color: rgba(92, 120, 152, 0.6);
	padding: 0.4em !important;
	color: darkgray;
	position: relative;
	z-index: 1;
}
.tablesubtitle {
	background-color: rgba(92, 120, 152, 0.2);
	color: darkgray;
	padding: 0.4em !important;
	position: relative;
	z-index: 1;
}
.tablesubtitle a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.tablesubtitle a:hover {
  color: rgba(255,255,255,0.8);
  cursor: pointer;
}
.tablesubtitle.disabled {
	background-color: transparent;
	border: 2px dashed rgba(43, 74, 80, 1);
	color: rgba(92, 120, 152, 1) !important;
}
.quadrantcube {
	background-color: rgba(92, 120, 152, 0.1);
	color: darkgray;
	padding: 0.4em !important;
	width: 2.5em;
	height: 2em;
	float: left;
	margin: 0.4em;
	text-align: center;
	font-size: 0.8em;
	position: relative;
	z-index: 1;
}
#gett-plan-window .tablewindowblock > .quadrantcube {
	margin: 7px 20px 0px;
}
.textblock {
	background-color: rgba(92, 120, 152, 0.1);
	color: darkgray;
	padding: 0.4em !important;
	margin: 0.4em;
	font-size: 0.8em;
	position: relative;
	z-index: 1;
}
/*.repright .quadrantcube, .repleft .quadrantcube {
	width: 80%;
}*/
/*.repright .quadrantcube {
	float:right!important;
}*/

.repleft .tablesubtitle {
	text-align: right;
}
.alliancetab {
	height: 100%;
}

.alliancetab:before {
	content: "";
	background-image: url('../images/sol-icon.png'), url('../images/dam-icon.png');
	background-position: left -30% top 30%, right -30% top 30%;
	background-repeat: no-repeat, no-repeat;
	opacity: 0.1;
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	z-index:0;
	background-size: 50%;
}

.tablewindowblock {
	height: calc(100% - 4em);
	overflow: auto!important;
}
@media(max-width:991px){
	.tablewindowblock table:not(:first-child):last-child {
	  float: left !important;
	}

	.tablewindowblock table {
	  width: 100% !important;
	}

}



.custom-gps-markers {
  position: absolute;
  right: 10px;
  top: -12px;
  height: 42px;
  width: 570px;
  display: flex;
}


.add-gps-input,
.add-gps-marker-toggle {
  border: 2px solid rgba(92, 120, 152, 0.85);
  background: linear-gradient(0deg, transparent 0px, rgba(92, 120, 152, 0.85) 0) left, linear-gradient(0deg, transparent 0px, rgba(92, 120, 152, 0.85) 0) right;
  box-shadow: 5px 5px 6px rgba(92, 120, 152, 0.1);
  background-size: 100% 100%;
  outline: none;
  transform: skewX(-30deg);
  display: flex;
  text-overflow: clip;
  background-repeat: no-repeat;
  height: 100%;
  max-width: calc(100% - 68px);
}
.add-gps-marker-toggle:hover,
.add-gps-marker-toggle.active {
	background: #ff7800;
	border-radius: 3px;
	box-shadow: 0 0 10px #ff7800, 0 0 40px #ff7800, 0 0 80px #ff7800;
	transition-delay: 50ms;
}
.add-gps-marker-toggle {
	max-width: 50px;
	margin-right: 10px;
	cursor:pointer;
}
.add-gps-inner {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
}

.add-gps-input label,
.add-gps-input a,
.add-gps-marker-toggle label {
  color: rgba(250, 120, 0, 1);
  margin-bottom: 0px;
  padding: 5px 10px 5px 23px;
  transform: skewX(30deg);
  transform-origin: 50% 50% 0;
  overflow: hidden;
  width: calc(100% - 390px);
}

.add-gps-input a:hover {
  color: rgba(250, 120, 0, 1);
  text-decoration:none;
}

.add-gps {
  border: 0px;
  border-radius: 0px;
  transform: skewX(30deg);
  width: 383px;
  margin: 0px 30px 0px 10px;
  background: rgba(0,0,0,0.3);
  color: rgba(92, 120, 152, 0.6);
  padding: 10px;
}

.add-gps-marker {
	font-style: normal !important;
  color: rgb(250, 120, 0);
  font-family: sans-serif !important;
  transform: skewX(30deg);
  font-size: 33px;line-height: 28px;
  font-weight: 400;
  min-width: 47px;
  min-height: 33px;
  padding: 5px 10px 5px 10px !important;
	cursor:pointer;
}






.gps-list {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	width: 100%;
	min-width: 100%;
}
.gps-list-header {

	border: 1px solid transparent;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
	box-shadow: 0 1px 1px rgba(0,0,0,.05);

	width: 260px !important;
	position: relative !important;
	height: 2.2em !important;
	margin-bottom: 0.3em;
	transform: translatex(0px);
	transition-duration: 0.1s, 0.1s;
	transition-property: transform, opacity;
	display: block !important;
	opacity: 1;

	padding: 2px;
	background: #00a1ed;
	background: linear-gradient(0deg, transparent 0px, rgba(92, 120, 152, 0.85) 0) top left, linear-gradient(0deg, transparent 0px, rgba(92, 120, 152, 0.85) 0) top right, linear-gradient(315deg, transparent 10px, rgba(92, 120, 152, 0.85) 0) bottom right, linear-gradient(0deg, transparent 0px, rgba(92, 120, 152, 0.85) 0) bottom left;
	background-size: 50% 50%;
	background-repeat: no-repeat;
	display: inline-block;
	-webkit-filter: drop-shadow(5px 5px 5px rgba(92, 120, 152, 0.2));
	filter: drop-shadow(5px 5px 5px rgba(92, 120, 152, 0.2));
	z-index: 100;
	bottom: -13px;
	top: auto;
	height: auto;
}
.gps-list-header[disabled] {
	background: linear-gradient(0deg, transparent 0px, rgba(219, 219, 219, 0.5) 0) top left, linear-gradient(0deg, transparent 0px, rgba(219, 219, 219, 0.5) 0) top right, linear-gradient(315deg, transparent 10px, rgba(219, 219, 219, 0.5) 0) bottom right, linear-gradient(0deg, transparent 0px, rgba(219, 219, 219, 0.5) 0) bottom left;
	background-size: 50% 50%;
	background-repeat: no-repeat;
	-webkit-filter: drop-shadow(5px 5px 5px rgba(155, 155, 155, 0.2));
	filter: drop-shadow(5px 5px 5px rgba(155, 155, 155, 0.2));
}
.gps-list-header-inner {
	padding: 5px;
	cursor: pointer;
	color: rgba(92, 120, 152, 1) !important;

	width: 100%;
	background: #00202F;
	background: linear-gradient(0deg, transparent 0px, rgba(0, 0, 0, 0.8) 0) top left, linear-gradient(0deg, transparent 0px, rgba(0, 0, 0, 0.8) 0) top right, linear-gradient(315deg, transparent 10px, rgba(0, 0, 0, 0.8) 0) bottom right, linear-gradient(0deg, transparent 0px, rgba(0, 0, 0, 0.8) 0) bottom left;
	background-size: 50% 50%;
	background-repeat: no-repeat;
	overflow: hidden;
}
.gps-list-header[disabled] .gps-list-header-inner {
	color: #666 !important;
}
.gps-list-header-label {
	font-weight:700;
}
.gps-list-header:not([disabled]):hover .gps-list-header-inner {
	color: #ff7800 !important;
	text-shadow: 0 0 2px rgba(92, 120, 152, 0.85), 0 0 5px rgba(92, 120, 152, 0.85), 0 0 5px rgba(92, 120, 152, 0.85);
}



.gps-list-content {

	margin-bottom: 20px;
	border: 1px solid transparent;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
	box-shadow: 0 1px 1px rgba(0,0,0,.05);

	position: fixed !important;
	top: 103px !important;
	left: auto !important;
	width: auto !important;
	bottom: auto !important;
	
	right: -500px !important;
	transition-duration: 0.3s, 0.3s, 0.3s, 0s, 0.2s;
	transition-property: left, right, min-width, top, opacity;
	transition-delay: 0s, 0s, 0s, 0s, 0s;
	min-width: 260px;
	max-height: calc(100% - 200px);
	/* overflow-y: auto; */
	max-width: calc(100% - 420px);
	opacity: 0;
	z-index: 2000;
	color: lightgray;
	display: flex !important;
	min-height: 46px;
	padding: 2px;
	background: #00a1ed;
	background: linear-gradient(0deg, transparent 0px, rgba(92, 120, 152, 0.85) 0) top left, linear-gradient(0deg, transparent 0px, rgba(92, 120, 152, 0.85) 0) top right, linear-gradient(315deg, transparent 10px, rgba(92, 120, 152, 0.85) 0) bottom right, linear-gradient(0deg, transparent 0px, rgba(92, 120, 152, 0.85) 0) bottom left;
	background-size: 50% 50%;
	background-repeat: no-repeat;
	-webkit-filter: drop-shadow(5px 5px 5px rgba(92, 120, 152, 0.2));
	filter: drop-shadow(5px 5px 5px rgba(92, 120, 152, 0.2));
	z-index: 100;
	height: auto;

}
.gps-list-content.active {
	right: 20px !important;
	opacity: 1;
	transition-delay: 0s, 0s, 0s, 0s, 0.2s;
}
.gps-list-items {
	width: 100%;
	background: #00202F;
	background: linear-gradient(0deg, transparent 0px, rgba(0, 0, 0, 0.8) 0) top left, linear-gradient(0deg, transparent 0px, rgba(0, 0, 0, 0.8) 0) top right, linear-gradient(315deg, transparent 10px, rgba(0, 0, 0, 0.8) 0) bottom right, linear-gradient(0deg, transparent 0px, rgba(0, 0, 0, 0.8) 0) bottom left;
	background-size: 50% 50%;
	background-repeat: no-repeat;
	overflow: hidden;
}


.gps-list-item {
	position: relative;
	padding: 5px 12px 5px 74px;
	color: rgba(92, 120, 152, 1) !important;
	font-weight: 700;
}

.remove,
.copy {
  position: absolute;
  width: 23px;
  height: 22px;
  top: 8px;
  left: 8px;
  display: block;
  background: linear-gradient(0deg, transparent 0px, rgba(92, 120, 152, 0.85) 0) top left, linear-gradient(0deg, transparent 0px, rgba(92, 120, 152, 0.85) 0) top right, linear-gradient(315deg, transparent 10px, rgba(92, 120, 152, 0.85) 0) bottom right, linear-gradient(0deg, transparent 0px, rgba(92, 120, 152, 0.85) 0) bottom left;
  border: 1px solid white;
  cursor:pointer;
}
.copy {
	left: 38px;
	opacity: 1;
}

.remove:hover:before,
.copy:hover:before {
  background: rgba(0,0,0,0.5);
}

.remove::before,
.copy::before {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: rgba(0,0,0,0.7);
  display: block;
  content: "";
}

.remove::after,
.copy::after {
  content: "x";
  position: absolute;
  top: -5px;
  font-size: 18px;
  left: 4px;
	color: white !important;
	opacity:0.5;
}
.copy::after {
	content: "";
	width: 23px;
	height: 22px;
	background-image: url(../images/copy-white.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50% auto;
	top: -1px;
	left: -1px;
}



.key {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 100;
	width: calc(100%-20px);
	height: calc(100%-20px);
	padding: 2px;
	background: #00a1ed;
	background: linear-gradient(0deg, transparent 0px, rgba(92, 120, 152, 0.85) 0) top left, linear-gradient(0deg, transparent 0px, rgba(92, 120, 152, 0.85) 0) top right, linear-gradient(315deg, transparent 10px, rgba(92, 120, 152, 0.85) 0) bottom right, linear-gradient(0deg, transparent 0px, rgba(92, 120, 152, 0.85) 0) bottom left;
	background-repeat: repeat, repeat, repeat, repeat;
	background-size: auto, auto, auto, auto;
	background-size: 50% 50%;
	background-repeat: no-repeat;
	display: inline-block;
	-webkit-filter: drop-shadow(5px 5px 5px rgba(92, 120, 152, 0.2));
	filter: drop-shadow(5px 5px 5px rgba(92, 120, 152, 0.2));
	border: 1px solid transparent;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
	box-shadow: 0 1px 1px rgba(0,0,0,.05);
}
.key__inner {
	width: 100%;
	background: #00202F;
	background: linear-gradient(0deg, transparent 0px, rgba(0, 0, 0, 0.8) 0) top left, linear-gradient(0deg, transparent 0px, rgba(0, 0, 0, 0.8) 0) top right, linear-gradient(315deg, transparent 10px, rgba(0, 0, 0, 0.8) 0) bottom right, linear-gradient(0deg, transparent 0px, rgba(0, 0, 0, 0.8) 0) bottom left;
	background-repeat: repeat, repeat, repeat, repeat;
	background-size: auto, auto, auto, auto;
	background-size: 50% 50%;
	background-repeat: no-repeat;
	overflow: hidden;
	padding: 12px 18px;
}
.key-item {
	color: rgba(250, 120, 0, 1);
	display: block;
	font-size: 14px;
}
.key-income .key-item,
.key-claims .key-item {
	position: relative;
	height: 32px;
	padding: 5px 0px 5px 27px;
}
.key-income .key-item::before,
.key-claims .key-item::before {
	content: "";
	border: 1px solid  rgba(92, 120, 152, 0.85);
	height: 18px;
	width: 18px;
	display: block;
	position: absolute;
	left: 0px;
	top: 7px;
	
	background-size: 100% auto;
	background-position:center center;
	background-repeat:no-repeat;
}
.key-claims .key-item::before {
	border:0px;
}


.key-item.key-income-5:before {
	background:rgb(0, 156, 255);
}
.key-item.key-income-4:before {
	background:rgb(38, 230, 0);
}
.key-item.key-income-3:before {
	background:rgb(255, 230, 0);
}
.key-item.key-income-2:before {
	background:rgb(255, 85, 0);
}
.key-item.key-income-1:before {
	background:rgb(230, 27, 27);
}




.key-item.key-claimed:before {
	background-image:url(../images/key-claimed.png);
}
.key-item.key-contested:before {
	background-image:url(../images/key-contested.png);
}
.key-item.key-unclaimable:before {
	background-image:url(../images/key-unclaimable.png);
}
.key-item.key-lawless:before {
	background-image:url(../images/key-lawless.png);
}
.key-item.key-fob:before {
	background-image:url(../images/key-fob.png);
}
.key-item.key-claim-station:before {
	background-image:url(../images/key-claim.png);
}
.key-item.key-public-station:before {
	background-image:url(../images/key-public.png);
}



.hideHUD .overlay > :not(canvas) {
	display: none !important;
}

