* {

	margin: 0;
	padding: 0;
	border: 0 none;

}

html, body {

	width: 100%;
	height: 100%;

}

body {

	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
	font-size: 12px;
	line-height: 1.2em;

	background: rgba(0, 7, 15, 1);

	overflow: hidden;

}

.hidden {

	display: none !important;

}

/* Start: Scrollbar styling */
body::-webkit-scrollbar,
.controls-content::-webkit-scrollbar {

	width: 8px;

}

body,
.controls-content,
.controls-embed {

	scrollbar-width: thin;
	scrollbar-color: rgba(185, 205, 255, .07) rgba(0, 0, 0, 0);

}

body::-webkit-scrollbar-track,
.controls-content::-webkit-scrollbar-track,
.controls-embed::-webkit-scrollbar-track {

	background: rgba(0, 0, 0, 0);

}

body::-webkit-scrollbar-thumb,
.controls-content::-webkit-scrollbar-thumb,
.controls-embed::-webkit-scrollbar-thumb {

	background-color: rgba(185, 205, 255, .07);
	border-radius: 6px;
	border: 1px solid rgba(185, 205, 255, 0);

}
/* End: Scrollbar styling */

.logo {

	width: 180px;
	height: 47px;

	color: rgba(185, 205, 255, .4);

	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 100;

	overflow: hidden;

	pointer-events: none;

	filter: drop-shadow(0 0 5px rgba(255, 255, 255, .5));

}

.unbranded .logo {

	display: none;

}

/*@media (min-width: 1024px) {

	.logo {

		animation: flash .4s ease-in-out;
		-webkit-animation: flash .4s ease-in-out;

	}

}

@-webkit-keyframes flash {

	0% {

		color: rgba(185, 205, 255, .4);

	}

	50% {

		color: rgba(255, 255, 255, 1);

	}

	100% {

		color: rgba(185, 205, 255, .4);
	}

}

@keyframes flash {

	0% {

		color: rgba(185, 205, 255, .4);

	}

	50% {

		color: rgba(255, 255, 255, 1);

	}

	100% {

		color: rgba(185, 205, 255, .4);

	}

}*/

.credit {

	width: 100px;
	height: 15px;

	color: rgba(185, 205, 255, .4);
	text-decoration: none;

	display: block;

	position: absolute;
	bottom: 100px;
	right: 10px;
	z-index: 100;

	transform: translate(45px, 10px) rotate(90deg);

}

.credit.credit-unbranded {

	width: 170px;

	transform: translate(80px, -23px) rotate(90deg);

	display: none;

}

body:not(.hide-controls) .credit-branded {

	transform: translate(45px, -40px) rotate(90deg);

}

body:not(.hide-controls) .credit-unbranded {

	transform: translate(80px, -73px) rotate(90deg);

}


.unbranded .credit-branded {

	display: none;

}

.unbranded .credit-unbranded {

	display: block;

}

@media (min-width: 380px) {

	.credit-branded {

		transform: translate(45px, 10px) rotate(90deg) !important;

	}

	.credit-unbranded {

		transform: translate(80px, -23px) rotate(90deg) !important;

	}

}

.credit a {

	color: currentColor;
	text-decoration: none;

}

.starmap_credit {

	display: none !important;

}

#starmap {

	width: 100%;
	height: 100%;

	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;

}

.additional-canvas {

	pointer-events: none;

	position: absolute;
	top: 0;
	left: 0;

}

.loading,
.exposing {

	-webkit-animation: blinky-bill 2s infinite;  /* Safari 4+ */
	-moz-animation: blinky-bill 2s infinite;  /* Fx 5+ */
	-o-animation: blinky-bill 2s infinite;  /* Opera 12+ */
	animation: blinky-bill 2s infinite;  /* IE 10+, Fx 29+ */

}

@-webkit-keyframes blinky-bill {

	0%, 100% {

		color: #fff;

	}

	50% {

		color: #c00;

	}

}

@keyframes blinky-bill {

	0%, 100% {

		color: #fff;

	}

	50% {

		color: #c00;

	}

}

.starmap-controls {

	box-sizing: border-box;

	width: 320px;
	height: calc(50px + env(safe-area-inset-bottom, 0px));

	font-size: 12px;

	background-color: rgba(0, 8, 14, .9);

	filter:
		drop-shadow(1px -1px 0 rgba(255, 255, 255, .1))
		drop-shadow(-1px -1px 0 rgba(255, 255, 255, .1));

	border-top-left-radius: 12px;
	border-top-right-radius: 12px;

	box-shadow: 0 0 10px rgba(15, 15, 15, .05);

	padding-right: 0;
	padding-left: 0;

	position: absolute;
	bottom: 0;
	left: calc(50% - 160px);
	z-index: 100;

	transition: height .3s ease-in-out;

}

@media (max-width: 320px) {

	.starmap-controls {

		border-top-left-radius: 0;
		border-top-right-radius: 0;

	}

}

.starmap-controls.open {

	height: clamp(50px, calc(100% - 40px), 380px);

	transition: height .3s ease-in-out;

}

@supports ((-webkit-backdrop-filter: blur(2px)) or (backdrop-filter: blur(2px))) {

	.starmap-controls {

		-webkit-backdrop-filter: blur(2px);
		backdrop-filter: blur(2px);

	}

}

.hide-controls .starmap-controls {

	display: none;

}

.btn_controls {

	width: 50px;
	height: 50px;

	color: rgba(255, 255, 255, .5);

	position: absolute;

	z-index: 20;

}

.btn_controls.open {

	color: rgba(255, 255, 255, 1);

}

.btn_controls .icon {

	width: 20px;
	height: 20px;

	margin-top: 13px;
	margin-left: 15px;

}

.btn_controls:hover {

	color: rgba(255, 255, 255, 1);
	cursor: pointer;

}

.starmap_btn_exposure {

	width: 60px;
	height: 60px;

	background-color: rgba(0, 8, 14, .9);

	border-radius: 30px;

	top: -10px;
	left: calc(50% - 30px);

}

.starmap_btn_exposure {

	background-color: rgba(0, 8, 14, 1);

}

.starmap_btn_exposure .icon {

	width: 25px;
	height: 25px;

	margin-top: 18px;
	margin-left: 18px;

}

.starmap_btn_exposure .timer {

	width: 3em;

	font-size: 9px;
	text-align: center;

	position: absolute;
	top: .2em;
	left: calc((60px / 2) - 1.5em);

	opacity: .6;

}

.starmap_btn_exposure.exposing .timer {

	color: rgba(255, 255, 255, .5);

}

.exposure-image-wrapper {

	width: 100px;

	border: 3px solid #fff;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	box-shadow: 0 0 30px rgba(185, 205, 255, .1);

	position: absolute;
	bottom: calc(80px + env(safe-area-inset-bottom, 0px));
	left: 100px;

	animation: zoomy .5s ease-in-out;
	-webkit-animation: zoomy .5s ease-in-out;

}

@-webkit-keyframes zoomy {

	0% {

		transform: scale(0);
		opacity: 0;

	}

	50% {

		transform: scale(1.2);
		opacity: 1;

	}

	100% {

		transform: scale(1);
		opacity: 1;

	}

}

@keyframes zoomy {

	0% {

		transform: scale(0);
		opacity: 0;

	}

	50% {

		transform: scale(1.2);
		opacity: 1;

	}

	100% {

		transform: scale(1);
		opacity: 1;

	}

}

.exposure-image-label {

	box-sizing: border-box;

	height: 15px;

	color: #000;
	font-size: 12px;

	background: #fff;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;

	padding-top: 2px;
	padding-left: 3px;

	position: absolute;
	top: -18px;
	right: 0;
	left: -3px;
	z-index: 1;

}

.exposure-image {

	max-width: 100%;
	height: auto;

}

.exposure-image-delete {

	width: 30px;
	height: 30px;

	color: #000;
	text-indent: 200%;
	white-space: nowrap;

	background: #fff;
	border-radius: 15px;

	overflow: hidden;

	position: absolute;
	top: -23px;
	right: -15px;
	z-index: 2;

}

.exposure-image-delete:hover {

	cursor: pointer;
	color: #fff;
	background: #c00;

}

.exposure-image-delete::before {

	content: '×';

	width: 30px;
	height: 30px;

	color: currentColor;
	font-size: 16px;
	text-indent: 0;
	text-align: center;

	display: block;

	position: absolute;
	top: 4px;

}

.merger-canvas {

	display: none;

}

.starmap_btn_time {

	width: 50px;

	position: absolute;
	left: 10px;

}

.starmap_btn_location {

	width: 50px;

	position: absolute;
	left: 70px;

}

.starmap_btn_settings {

	width: 50px;

	position: absolute;
	left: 200px;

}

.starmap_btn_about {

	width: 50px;

	position: absolute;
	left: 260px;

}

.controls-content {

	box-sizing: border-box;

	height: calc(100% - 60px);

	color: #f1f1f1;
	margin-top: 60px;

	overflow: auto;

}

.controls-content .content {

	padding: 0 25px 25px 25px;
	display: none;

}

.controls-content .content.open {

	display: block;

}

.controls-content .content h2,
.controls-content .content h3,
.controls-content .content h4,
.controls-content .content h5,
.controls-content .content h6 {

	line-height: 1.2em;
	margin-top: .8em;
	margin-bottom: .8em;

}

.controls-content .content h2:first-child,
.controls-content .content h3:first-child,
.controls-content .content h4:first-child,
.controls-content .content h5:first-child,
.controls-content .content h6:first-child {

	margin-top: 0;

}

.controls-content .content p,
.controls-content .content ul {

	line-height: 1.4em;
	margin-bottom: 1em;

}

.controls-content .content ul {

	margin-right: 3em;
	margin-left: 2em;

}

.controls-content .content a {

	color: currentColor;

}

.controls-content .content .current-location,
.controls-content .content .current-date {

	margin-bottom: 2em;

}

.controls-content fieldset {

	border-top: 2px solid rgba(185, 205, 255, .1);

	margin: 0 -25px;
	padding: 1.5em 25px 2em 25px;

}

.controls-content fieldset:last-child {

	border-bottom: 2px solid rgba(185, 205, 255, .1);

}

.controls-content fieldset *:last-child {

	margin-bottom: 0;

}

.controls-content select,
.controls-content button,
.controls-content textarea,
.controls-content input[type="text"],
.controls-content input[type="date"],
.controls-content input[type="time"] {

	-webkit-appearance: none;
	        appearance: none;

	box-sizing: border-box;

	width: 100%;

	color: #f1f1f1;
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
	font-size: inherit;

	background: rgba(185, 205, 255, .1);
	border: 1px solid transparent;
	border-radius: 5px;

	padding: .4em .6em;

}

.controls-content textarea {

	font-family: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;

}

.controls-content select:hover,
.controls-content button:hover,
.controls-content button:focus,
.controls-content textarea:focus,
.controls-content input[type="text"]:focus,
.controls-content input[type="date"]:focus,
.controls-content input[type="time"]:focus {

	border: 1px solid rgba(185, 205, 255, .2);
	outline: 0 none;

}

.controls-content select:hover,
.controls-content button:hover {

	cursor: pointer;

}

.controls-content .select {

	display: block;
	position: relative;

}

.controls-content .select::after {

	content: '▾';

	color: rgba(255, 255, 255, .5);
	font-size: 16px;
	line-height: 1;

	display: block;

	position: absolute;
	top: calc(100% - 1.5em);
	right: 10px;
	bottom: 0;

	pointer-events: none;

}

.controls-content select option {

	color: #000;

}

input[type="range"] {

	-webkit-appearance: none;
			appearance: none;

	width: 100%;
	background: transparent;

}

input[type="range"]::-webkit-slider-thumb {

	-webkit-appearance: none;

}

input[type="range"]:focus {

	outline: none;

}

input[type="range"]::-ms-track {

	width: 100%;
	cursor: pointer;

	background: transparent;
	border-color: transparent;
	color: transparent;

}

input[type=range]::-webkit-slider-thumb {

	-webkit-appearance: none;
			appearance: none;

	width: 16px;
	height: 16px;


	background: #fff;
	border-radius: 8px;

	margin-top: -4px;

	cursor: pointer;

}

input[type=range]::-moz-range-thumb {

	width: .8em;
	height: .8em;


	background: #fff;
	border-radius: .4em;

	cursor: pointer;

}

input[type=range]::-ms-thumb {

	width: .8em;
	height: .8em;


	background: #fff;
	border-radius: .4em;

	cursor: pointer;

}

input[type=range]::-webkit-slider-runnable-track {

	width: 100%;
	height: .5em;

	background: rgba(185, 205, 255, .1);
	border-color: transparent;

	cursor: pointer;

}

input[type=range]:focus::-webkit-slider-runnable-track {

	background: rgba(185, 205, 255, .1);
	border-color: transparent;

}

input[type=range]::-moz-range-track {

	width: 100%;
	height: .5em;

	background: rgba(185, 205, 255, .1);
	border-color: transparent;

	cursor: pointer;

}

input[type=range]::-ms-track {

	width: 100%;
	height: .5em;

	background: rgba(185, 205, 255, .1);
	border-color: transparent;

	cursor: pointer;

}

input[type=range]::-ms-fill-lower {

	background: rgba(185, 205, 255, .1);

}

input[type=range]:focus::-ms-fill-lower {

	background: rgba(185, 205, 255, .1);

}

input[type=range]::-ms-fill-upper {

	background: rgba(185, 205, 255, .1);

}
input[type=range]:focus::-ms-fill-upper {

	background: rgba(185, 205, 255, .1);

}

.controls-content .content label,
.controls-content .content .label {

	color: rgba(255, 255, 255, .5);

}

.controls-content .content label {

	vertical-align: middle;

}

.controls-content .content label:hover {

	cursor: pointer;

}

.controls-content .content input[type="radio"],
.controls-content .content input[type="checkbox"] {

	vertical-align: middle;
	margin-right: .3em;
	display: inline-block;

}

.controls-content .content input[type="checkbox"],
.controls-content .content input[type="radio"] {

	box-sizing: border-box;

	-webkit-appearance: none;
	        appearance: none;

	width: 1em;
	height: 1em;

	background: rgba(185, 205, 255, .2);
	border: 1px solid rgba(185, 205, 255, 0);
	border-radius: .5em;

	position: relative;

}

.controls-content .content input[type="checkbox"]:hover,
.controls-content .content input[type="radio"]:hover {

	border-color: rgba(185, 205, 255, .2);

}

.controls-content .content input[type="checkbox"] {

	border-radius: 0;

}

.controls-content .content input[type="checkbox"]:checked::before {

	content: '✓';

	color: #fff;
	line-height: 1;

	position: absolute;
	top: -.3em;
	left: .2em;

	transform: scale(1.8);

}

.controls-content .content input[type="radio"]:checked {

	background: #f1f1f1;

}

.control-coordinates-wrapper,
.control-date-time-wrapper {

	display: flex;
	justify-content: flex-start;

}

.control-coordinates-wrapper label,
.control-time-mode-wrapper label,
.control-date-time-wrapper label {

	margin-right: 1em;

}

.control-coordinates-wrapper label:last-child,
.control-time-mode-wrapper label:last-child,
.control-date-time-wrapper label:last-child {

	margin-right: 0;

}

.control-coordinates-wrapper button {

	flex: 0;
	margin-top: 1.4em;

}

.control-city-search-wrapper input,
.control-coordinates-wrapper input,
.control-date-time-wrapper input {

	font-size: 12px !important;
	margin-right: .5em;
	display: block;

}

.controls-content .control-orientation-form fieldset:last-child,
.controls-content .control-coordinates-form fieldset:last-child {

	border-bottom: 0 none;

}

.controls-content .controls-city-search-results ol {

	list-style-type: none;

}

.controls-content .controls-city-search-results ol li {

	padding: .4em .6em;

}

.controls-content .controls-city-search-results ol .selected {

	background: rgba(185, 205, 255, .07);
	border-radius: 5px;

}

.controls-content .controls-city-search-results ol li a {

	display: block;

}

.controls-content .control-embed {

	font-size: 10px;

}

.starmap_btn_help {

	display: none !important;

}
