html,
body,
#map {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: Ubuntu Sans, sans-serif;
	color: #f2f2f2;
	overflow: hidden;
	font-size: 14px;
	cursor: default;
}

#map {
	z-index: 0;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #212121;
}

.customize.logo {
	position: absolute;
	bottom: 85px;
	left: 375px;
	z-index: 1;
	opacity: 0.8;
}

#ocapLogoButton {
	background-image: url("../images/ocap-logo.png");
	background-size: 70px 25px;
	background-repeat: no-repeat;
	width: 70px;
	height: 25px;
	display: inline-block;
	margin: 8px;
}

#loadOpButton {
	background-image: url("../images/folder.png");
	background-size: 25px 25px;
	background-repeat: no-repeat;
}

#shareButton {
	width: 35px;
	height: 35px;
	border-radius: 35px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}

#shareButton:hover {
	transform: translateY(-1px);
	color: #baff68;
	background-color: #bbff681f;
	border: 1px solid #baff68;
}

#aboutButton {
	width: 35px;
	height: 35px;
	border-radius: 35px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}

#aboutButton:hover {
	transform: translateY(-1px);
	color: #baff68;
	background-color: #bbff681f;
	border: 1px solid #baff68;
}

#statsButton {
	width: 35px;
	height: 35px;
	border-radius: 35px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}

#statsButton:hover {
	transform: translateY(-1px);
	color: #baff68;
	background-color: #bbff681f;
	border: 1px solid #baff68;
}

#playersButton {
	width: 35px;
	height: 35px;
	border-radius: 35px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}

#playersButton:hover {
	transform: translateY(-1px);
	color: #baff68;
	background-color: #bbff681f;
	border: 1px solid #baff68;
}

#eventsButton {
	width: 35px;
	height: 35px;
	border-radius: 35px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}

#eventsButton:hover {
	transform: translateY(-1px);
	color: #baff68;
	background-color: #bbff681f;
	border: 1px solid #baff68;
}

.info-btn {
	display: flex;
	flex-direction: row;
	gap: 7px;
	border-left: 1px solid rgba(47, 47, 47);
	align-items: center;
	padding-left: 10px;
}

.panel-btn {
	display: flex;
	flex-direction: row;
	gap: 7px;
	padding-left: 10px;
	align-items: center;
}

.returnButton {
	width: 35px;
	height: 35px;
	border-radius: 35px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}

.returnButton:hover {
	transform: rotate(-45deg);
	color: #baff68;
	background-color: #bbff681f;
	border: 1px solid #baff68;
}

#missionName {
	font-size: 24px;
	color: #f2f2f2;
}

#topPanel {
	background-color: #171717;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 10px;
	box-sizing: border-box;
	border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.button:hover {
	cursor: pointer;
}

#topPanel .button {
	height: 25px;
	width: 25px;
	margin: 8px;
	display: inline-block;
}

.content-topPanel-left {
	flex: 1;
	display: flex;
	justify-content: flex-start;
}

.content-topPanel-right {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}

#leftPanel,
#rightPanel {
	background-color: #171717;
	position: absolute;
	top: 50px;
	font-size: 14px;
	display: none;
}

#leftPanel {
	left: 0;
	width: 350px;
	height: calc(100% - 40px - 75px);
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
	transition: opacity 0.5s, transform 0.5s;
	opacity: 0;
	transform: translateX(-100%);
}

#leftPanel.show,
#rightPanel.show {
	opacity: 1;
	transform: translateX(0);
}

#rightPanel {
	right: 0;
	width: 350px;
	height: 50%;
	border-top-left-radius: 12px;
	border-bottom-left-radius: 12px;
	transition: opacity 0.5s, transform 0.5s;
	opacity: 0;
	transform: translateX(100%);
}

#leftPanel .panelContent,
#rightPanel .panelContent {
	overflow-y: auto;
	overflow-x: auto;
	height: calc(100% - 95px);
	padding: 0px 10px;
}

#controlSide {
	height: 50px;
	width: 350px;
	background-color: #171717;
	display: flex;
	justify-content: center;
	flex-direction: row;
	border-bottom-right-radius: 12px;
	box-sizing: border-box;
	padding: 5px 10px;
	gap: 5px;
}

#sideWest,
#sideEast,
#sideGuer,
#sideCiv {
	width: 100%;
	cursor: pointer;
	text-align: center;
	vertical-align: top;
	justify-content: center;
	align-items: center;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-sizing: border-box;
	background-color: transparent;
	transition: 0.3s;
}

#sideWest:hover,
#sideEast:hover,
#sideGuer:hover,
#sideCiv:hover {
	background-color: #bbff681f;
}

#rightPanel .panelContent {
	height: calc(100% - 75px);
}

#leftPanel .title,
#rightPanel .title {
	background-color: #171717;
	width: 100%;
	height: 30px;
	text-align: center;
	font-size: 16px;
	padding-top: 10px;
}

#leftPanel .title {
	border-top-right-radius: 12px;
}

#rightPanel .title {
	border-top-left-radius: 12px;
}

.filterBox {
	background-color: #2f2f2f;
	max-width: 100%;
	height: 25px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 0px 5px;
	margin: 0px 5px;
}

.filterConnect,
.filterHit {
	font-size: 20px;
	display: flex;
	cursor: pointer;
}

#filterEventsInput,
#filterUnitsInput {
	display: inline-block;
	padding-left: 2px;
	padding-right: 2px;
	height: 18px;
	border: 0;
	margin-right: 5px;
	max-width: 100%;
	background: none;
	color: #f2f2f2;
	font-family: Ubuntu Sans, sans-serif;
}

#filterUnitsInput {
	width: 186px;
}

#filterEventsInput,
#filterUnitsInput::-webkit-input-placeholder {
	color: #666666;
}

#filterEventsInput,
#filterUnitsInput:focus {
	outline: none;
}

#leftPanel ul,
#rightPanel ul {
	padding: 0;
	list-style-type: none;
	width: 100%;
}

#listWest,
#listGuer,
#listEast,
#listCiv {
	display: none;
}

.extraInfoBox {
	background-color: rgba(0, 0, 0, 0.75);
	position: absolute;
	right: 0;
	bottom: 40px;
	color: #f2f2f2;
	width: 300px;
	display: none;
}

.extraInfoBoxContent {
	padding: 5px;
}

#bottomPanel {
	background-color: #171717;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60px;
}

#bottomPanel .panelContent {
	padding: 35px;
	padding-top: 0px;
	margin-top: -5px;
	height: 100%;
}

#timecodeContainer,
#toggleFirelines,
#toggleNickname,
#toggleMapMarker,
#versionInfoContainer,
#playbackSpeedSliderContainer,
#playbackSpeedSliderContainer,
.fullscreenButton {
	margin-top: 5px;
	margin-left: 10px;
	margin-right: 10px;
	display: inline-block;
}

#toggleFirelines,
#toggleMapMarker,
#toggleNickname,
.fullscreenButton {
	background-image: url("../images/bullets.svg");
	background-size: auto 20px;
	height: 20px;
	width: 20px;
	background-repeat: no-repeat;
	float: right;
	cursor: pointer;
}

.toggleTime {
	float: right;
	height: 26px;
	width: 200px;
	margin-top: 2px;
}

#toggleNickname {
	background-image: url("../images/player.svg");
}

#toggleMapMarker {
	background-image: url("../images/map.svg");
}

.fullscreenButton {
	background-image: url("../images/fullscreen.png");
	opacity: 0.95;
	position: relative;
	top: 2px;
	float: right;
	image-rendering: pixelated;
}

#playPauseButton {
	position: relative;
	background-image: url("../images/play-pause.svg");
	background-size: auto 20px;
	height: 20px;
	width: 20px;
	background-position: 0 0;
	display: inline-block;
	top: 5px;
	float: left;
	cursor: pointer;
}

#timecodeContainer {
	font-size: 16px;
	width: auto;
}

#frameSliderContainer {
	margin: 5px 10px;
	height: 16px;
	padding: 3px 0;
}

#frameSliderContainer .frameSliderContainer2 {
	position: relative;
	bottom: 14px;
}

#frameSliderContainer .frameSliderContainer2 input::-moz-range-track {
	background-color: transparent;
}

#frameSliderContainer .frameSliderContainer2 input::-webkit-slider-runnable-track {
	background-color: transparent;
}

#frameSlider {
	width: 100%;
	height: 10px;
}

#eventTimeline {
	pointer-events: none;
	height: 10px;
	width: 100%;
	position: relative;
	margin: 2px;
	background-color: #6e6e6e;
}

.eventTimelineTick {
	pointer-events: none;
	position: absolute;
	left: 0;
	display: inline-block;
	background-color: red;
	opacity: 0.4;
	height: 100%;
}

#frameSlider::-webkit-slider-thumb {
	position: relative;
	z-index: 1;
}

#playbackSpeedSliderContainer {
	width: 20px;
	height: 120px;
	float: right;
	position: relative;
	bottom: 100px;
}

#playbackSpeedVal {
	font-size: 20px;
	position: relative;
	top: 100px;
	left: -12px;
	padding: 5px;
	cursor: pointer;
}

#playbackSpeedSlider {
	display: none;
	position: relative;
	top: 20px;
	left: 32px;
	float: right;
	width: 80px;
	transform: rotate(270deg);
	z-index: 2;
}

#playbackSpeedSlider::-webkit-slider-thumb {
	background-color: #404040;
}

#playbackSpeedSlider::-moz-range-thumb {
	background-color: #404040;
}

/*#playbackSpeedSlider::-webkit-slider-thumb {
	background: #F2F2F2;
	height: 5px;
	width: 20px;
	margin-left: -5px;
}

#playbackSpeedSlider::-webkit-slider-runnable-track {
	width: 10px;
}*/

#versionInfoContainer {
	float: right;
	text-align: right;
	font-size: 11px;
	color: #a4a4a4;
	width: auto;
}

input[type="range"] {
	-webkit-appearance: none;
	/* Hides the slider so that custom slider can be made */
	width: 100%;
	/* Specific width is required for Firefox. */
	background: transparent;
}

input[type="range"]:focus {
	outline: none;
}

input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	background: #f2f2f2;
	height: 20px;
	width: 5px;
	margin-top: -5px;
}

input[type="range"]::-webkit-slider-runnable-track {
	-webkit-appearance: none;
	height: 10px;
	background-color: #808080;
}

.bold {
	font-weight: bold;
}

.medium {
	font-weight: 500;
}

.liEvent {
	margin-top: 2.5px;
	padding-bottom: 2.5px;
	border-bottom: 1px solid #2f2f2f;
	opacity: 0;
}

.liEvent.reveal {
	opacity: 1;
	transition: opacity 1s;
}

.liEvent.action {
	cursor: pointer;
}

.eventDetails {
	color: #9a9a9a;
	font-size: 12px;
}

.liGroup {
	color: gray;
}

.liGroup:not(:first-child) {
	padding-top: 10px;
}

.liUnit {
	padding-left: 16px;
	padding-bottom: 2.5px;
	padding-top: 2.5px;
	color: #f2f2f2;
}

.liUnit:hover {
	background-color: #bbff681f;
}

.sideTitle {
	text-shadow: 1px 1px #000000;
	font-weight: bold;
}

.blufor {
	color: #4a90e2;
}

.opfor {
	color: #e74c3c;
}

.ind {
	color: #27ae60;
}

.civ {
	color: #9b59b6;
}

.modal {
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: #212121;
}

.modalContent {
	position: relative;
	z-index: 2;
	margin: 10% auto auto;
	width: 1200px;
	height: 65%;
}

.modalHeader {
	box-sizing: border-box;
	font-size: 16px;
	background-color: #171717;
	width: 100%;
	font-weight: 500;
	text-align: center;
	padding: 10px;
}

.modalFilter {
	box-sizing: border-box;
	background-color: #171717;
	width: 100%;
	height: 50px;
	padding: 10px;
	display: flex;
	justify-content: space-between;
}

.modalBody {
	box-sizing: border-box;
	background-color: #171717;
	width: 100%;
	min-height: 200px;
	max-height: 400px;
	height: inherit;
	padding: 10px;
	overflow-y: auto;
	overflow-x: auto;
}

.modalDialog {
	z-index: 600;
	position: absolute;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100vw;
	background-color: #171717;
	display: flex;
	justify-content: center;
	align-items: center;
}

.modalDialog.closed {
	display: none;
}

.modalDialog .dialogBase {
	position: relative;
	z-index: 601;
	display: flex;
	flex-direction: column;
}

.modalDialog .dialogHeader {
	background-color: #171717;
	margin-bottom: 3px;
	color: white;
	border-bottom: 1px solid black;
	box-sizing: border-box;
	padding: 5px 10px;
	font-weight: 500;
	font-size: 16px;
}

.modalDialog .dialogBody {
	background-color: #171717;
	overflow-y: scroll;
	min-width: 1300px;
	min-height: 700px;
	/*  title bar is 50 so we need the extra 70 here  */
	max-height: calc(75vh - 50px);
	/*  compensate for title bar                      */
	max-width: 75vw;
	flex: 1;
	padding: 5px;
}

.modalDialog .dialogFooter {
	margin-top: 3px;
}

.modalDialog .dialogFooter .modalButton {
	float: right;
}

#ShareLink {
	width: 100%;
	padding: 10px 0;
	color: white;
	background-color: rgba(0, 0, 0, 0.4);
	border: 1px solid black;
}

#filterSubmit {
	background-color: transparent;
	border: #2f2f2f 2px solid;
	color: #fff;
	border-radius: 6px;
	cursor: pointer;
	font-family: Ubuntu Sans, sans-serif;
	transition: background-color 0.4s, border-color 0.4s, color 0.4s;
}

#filterSubmit:active {
	background-color: #bbff68;
	border-color: #bbff68;
	color: #2f2f2f;
}

#filterSubmit:hover {
	border-color: #bbff68;
	outline: none;
}

.modalBody a {
	color: white;
	text-decoration: none;
}

.modalBody a:hover {
	text-decoration: underline;
}

.modalBody table {
	border-collapse: collapse;
	border: none;
	width: 100%;
}

.modalBody th {
	background-color: #2f2f2f;
	padding: 3px;
	font-weight: 500;
	font-size: 16px;
}

.modalBody td {
	padding-right: 20px;
	padding: 3px;
}

.modalBody tr {
	text-align: left;
}

.modalBody tr:hover {
	background-color: #2f2f2f;
	background-color: #2f2f2f;
}

.modalBody th:first-child,
td:first-child {
	border-radius: 5px 0 0 5px;
}

.modalBody th:last-child,
td:last-child {
	border-radius: 0 5px 5px 0;
}

.modalButtons {
	box-sizing: border-box;
	width: 100%;
	text-align: right;
	background: none;
	margin-top: 3px;
	height: 15px;
}

.modalButton {
	display: inline-block;
	background-color: none;
	height: 100%;
	min-width: 100px;
	background-color: rgba(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.7);
	margin-right: 10px;
	padding: 5px;
	text-transform: uppercase;
	text-align: left;
}

.modalButton:last-child {
	margin-right: 0;
}

.modalButton:hover {
	background-color: #fff;
	color: #000;
}

.hint {
	display: none;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.7);
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	bottom: 100px;
	min-height: 30px;
	width: 350px;
	text-align: center;
	padding: 12px;
}

.cursorTooltip {
	position: absolute;
	color: #333333;
	font-family: Ubuntu Sans, sans-serif;
	font-size: 12px;
	margin-top: 30px;
	z-index: 99999999;
	width: 200px;
	opacity: 1;
}

.cursorTooltip.hidden {
	opacity: 0;
	transition: opacity 0.5s;
}

.leaflet-popup-vehicle .leaflet-popup-content-wrapper {
	text-align: left;
}

.leaflet-popup-unit .leaflet-popup-content-wrapper {
	text-align: center;
}

.leaflet-popup-marker .leaflet-popup-content-wrapper {
	text-align: center;
}

.leaflet-popup-marker .leaflet-popup-content-wrapper * {
	font-size: 0.8rem;
}

/* */
/* Override leaflet styles */
/* */

/* .leaflet-top {
	top: 55%;
} */

/* .leaflet-right {
	right: 1%;
} */

.leaflet-left {
	left: 360px;
	top: 50px;
}

.leaflet-bottom {
	bottom: 65px;
}

/* .leaflet-control-attribution {
	right: 0px;
	bottom: 0px;
} */

/* this was custom positioning code for the basemaps control */
/* .basemaps {
	bottom: 223px;
} */

/* .leaflet-tile { */
/* border: solid black 1px; */
/* } */

/* .leaflet-tile-container { */
/* 'pixelated' preserves sharpness of tiles */
/* image-rendering: pixelated;  */
/* } */

.leaflet-popup {
	pointer-events: none;
}

#container.marker-transition:not(.zooming) .leaflet-marker-icon.animation {
	transition: transform 0.15s linear;
}

#container.marker-transition.speed-9:not(.zooming) .leaflet-marker-icon.animation {
	transition: transform 0.2s linear;
}

#container.marker-transition.speed-8:not(.zooming) .leaflet-marker-icon.animation {
	transition: transform 0.3s linear;
}

#container.marker-transition.speed-7:not(.zooming) .leaflet-marker-icon.animation {
	transition: transform 0.4s linear;
}

#container.marker-transition.speed-6:not(.zooming) .leaflet-marker-icon.animation {
	transition: transform 0.5s linear;
}

#container.marker-transition.speed-5:not(.zooming) .leaflet-marker-icon.animation {
	transition: transform 0.6s linear;
}

#container.marker-transition.speed-4:not(.zooming) .leaflet-marker-icon.animation {
	transition: transform 0.7s linear;
}

#container.marker-transition.speed-3:not(.zooming) .leaflet-marker-icon.animation {
	transition: transform 0.8s linear;
}

#container.marker-transition.speed-2:not(.zooming) .leaflet-marker-icon.animation {
	transition: transform 0.9s linear;
}

#container.marker-transition.speed-1:not(.zooming) .leaflet-marker-icon.animation {
	transition: transform 1s linear;
}

/* #container.marker-transition:not(.zooming) .leaflet-popup.animation {
	transition: transform .15s linear !important;
}

#container.marker-transition.speed-9:not(.zooming) .leaflet-popup.animation {
	transition: transform .2s linear !important;
}

#container.marker-transition.speed-8:not(.zooming) .leaflet-popup.animation {
	transition: transform .3s linear !important;
}

#container.marker-transition.speed-7:not(.zooming) .leaflet-popup.animation {
	transition: transform .4s linear !important;
}

#container.marker-transition.speed-6:not(.zooming) .leaflet-popup.animation {
	transition: transform .5s linear !important;
}

#container.marker-transition.speed-5:not(.zooming) .leaflet-popup.animation {
	transition: transform .6s linear !important;
}

#container.marker-transition.speed-4:not(.zooming) .leaflet-popup.animation {
	transition: transform .7s linear !important;
}

#container.marker-transition.speed-3:not(.zooming) .leaflet-popup.animation {
	transition: transform .8s linear !important;
}

#container.marker-transition.speed-2:not(.zooming) .leaflet-popup.animation {
	transition: transform .9s linear !important;
}

#container.marker-transition.speed-1:not(.zooming) .leaflet-popup.animation {
	transition: transform 1s linear !important;
} */

.leaflet-popup-content-wrapper {
	/* background: white; */
	background: none;
	box-shadow: none;
	padding: 0;
	margin: 0;
	/* background-blend-mode: screen; */
	/* box-shadow: inset; */
	/* opacity: 0.65; */
	/* padding-right: 2px; */
	/* margin-top: 10px; */
}

.leaflet-popup-tip {
	display: none;
}

.leaflet-popup-content {
	color: white;
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
		1px 1px 0 #000;
	padding: 0;
	margin: 0;
	font-weight: bold;
	font-size: 12px;
	/* width: 100%; */
}

.leaflet-div-icon {
	background: none;
	border: none;
}

.stats {
	border-collapse: collapse;
}

.stats tr {
	border-bottom: solid 1px rgba(255, 255, 255, 0.2);
	padding-top: 3px;
	padding-bottom: 3px;
}

.stats .name {
	width: 200px;
	vertical-align: top;
}

.stats .kills,
.stats .tkills,
.stats .deaths {
	min-width: 70px;
	text-align: right;
	padding-left: 5px;
	vertical-align: top;
}

.hiddenExperimental {
	display: none !important;
}

/* Add change #2 HidenOtherPanel */
.hidden-during-modal {
	visibility: hidden;
}

#snowCanvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}

.notification {
	position: fixed;
	top: 60px;
	right: 10px;
	max-width: 400px;
	background: #171717;
	color: #f2f2f2;
	padding: 12px 18px;
	border-radius: 8px;
	opacity: 0;
	transform: translateX(120%);
	transition: opacity 0.4s ease-out, transform 0.4s ease-out;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	z-index: 999;
	font-size: 1rem;
	text-align: center;
}

.notification.visible {
	opacity: 1;
	transform: translateX(0);
}

.notification.auto-hide {
	animation: fadeOut 4s ease-out 3s forwards;
}

.modal-about-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(3px);
	z-index: 999;
	opacity: 0;
	animation: overlayFadeIn 0.4s forwards ease-out;
}

@keyframes overlayFadeIn {
	to {
		opacity: 1;
	}
}

.modal-about-container {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.95);
	width: 400px;
	background: #171717;
	color: #e0e0e0;
	border-radius: 12px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
	z-index: 1000;
	animation: modalFadeIn 0.4s forwards ease-out;
	overflow: hidden;
}

@keyframes modalFadeIn {
	0% {
		opacity: 0;
		transform: translate(-50%, -55%) scale(0.9);
	}

	100% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
}

.modal-about-container>* {
	padding: 0 20px;
}

.modal-about-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgba(224, 224, 224, 0.2);
	padding: 20px;
}

.modal-about-title {
	font-size: 22px;
	font-weight: 600;
	margin: 0;
}

.modal-about-close-button {
	background: transparent;
	border: none;
	color: #e0e0e0;
	font-size: 22px;
	cursor: pointer;
	transition: color 0.3s;
	line-height: 1;
}

.modal-about-close-button:hover {
	color: #76ff03;
}

.modal-about-body {
	padding-top: 10px;
	padding-bottom: 20px;
	text-align: center;
	font-size: 14px;
	line-height: 1.6;
}

.modal-about-logo img {
	display: block;
	margin: 0 auto 15px;
	max-height: 60px;
}

.modal-about-link {
	color: #76ff03;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}

.modal-about-link:hover {
	text-decoration: underline;
}

.modal-about-info {
	margin: 1rem 0;
	font-size: 15px;
}

.modal-about-info p {
	margin: 0.5rem 0;
}

.modal-about-controls {
	margin-top: 1rem;
	text-align: left;
}

.modal-about-controls ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.modal-about-controls li {
	margin-bottom: 0.5rem;
}

.modal-about-controls span {
	font-weight: 600;
	margin-right: 5px;
}

.modal-about-dropdown {
	background: #2c2c2c;
	color: #e0e0e0;
	border: 1px solid rgba(224, 224, 224, 0.2);
	padding: 5px 8px;
	border-radius: 5px;
	cursor: pointer;
	transition: border-color 0.3s;
}

.modal-about-dropdown:hover {
	border-color: #76ff03;
}