/* fonts from /public/fonts/ */
@font-face {
  font-family: "Carter One";
  src: url("../fonts/CarterOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mohave";
  src: url("../fonts/Mohave-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mohave";
  src: url("../fonts/Mohave-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mohave";
  src: url("../fonts/Mohave-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
	padding: 0px;
	margin: 0px;
	color: white;
	font: 18px "Mohave", "Lucida Grande", Helvetica, Arial, sans-serif;
}



a {
  color: #00B7FF;
}

.auto-scale{
	width: 100%;
	height: 100%;
	position: absolute;
}

.content{
	width: 1920px;
	height: 1080px;
	position: absolute;
	z-index: 2;
	left: 50%;
	top: 50%;
	overflow: hidden;

	transform: translate(-50%, -40%);
}


*, *:after, *:before{
	box-sizing: border-box;
}


.tooltip {
	position: absolute;
	right: 480px;
	top: 340px;
	font-size: 20px;
	z-index: 10;
}

.tooltip-content {
	width: 475px;
	color: #dea841;
}

.tooltip-body {
	background: url('/images/tooltip_bg.png');
	box-shadow: inset 0px 3px 3px #8A532C, inset 0px 0px 25px 10px #492F1A, 0px 4px 4px #000000b5;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
}

.tooltip-body-description {
	padding: 12px 15px;
	/* font-size: 20px; */
	text-shadow: 0px 2px 2px black;
}

.tooltip-body-footer {
	display: flex;
	justify-content: space-between;
	height: 40px;
	align-items: center;
	padding: 0px 15px;
	border-radius: 5px;
	box-shadow: inset 0px 2px 2px #6e4425;
	background-color: #ffc57412;
	padding-top: 3px;
}

.tooltip-footer-left {
	display: flex;
	gap: 15px;
}

.tooltip-footer-stat {
	display: flex;
	align-items: center;
}

.tooltip-footer-stat>img {
	width: 22px;
	height: 22px;
}

.tooltip-footer-stat>span {
	opacity: 0.6;
}

h3.tooltip-header-title {
	font-family: 'Carter One';
	color: white;
	font-weight: normal;
	font-size: 33px;
	margin: 0px;
	margin-bottom: -6px;
	text-shadow: 2px 2px 0 #000, -2px -2px 0 #000, -2px 2px 0 #000, 2px -2px 0 #000, 2px 0 #000, -2px 0 #000, 0 2px #000, 0 -2px #000, 3px 4px 0 #000;
}

.ra-menu-right-container {
	position: absolute;
	right: 0px;
	top: 160px;
	z-index: 10;
}

.ra-menu-right {
	width: 230px;
	margin-right: 6px;
}

.ra-menu-title {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #000000c7;
	border-radius: 4px 4px 0px 0px;
	padding: 4px 8px;
	margin: 0px 5px;
}

.ra-menu-buttons {
	display: flex;
	flex-direction: column;
	background: url('/images/menu_bg.png') no-repeat;
	background-size: cover;
	gap: 5px;
	padding: 5px;
	border-radius: 0px 0px 3px 3px;
	box-shadow: 0px 4px 4px #000000b5;
	position: relative;
	z-index: 3;
}

.ra-menu-button-container {background-color: black;border-radius: 4px;padding: 2px;}

.ra-menu-button {
	cursor: pointer;
	background: url('/images/menu_button_bg.png') no-repeat;
	background-size: cover;
	height: 44px;
	display: flex;
	align-items: center;
	padding: 0px 8px;
	border-radius: 3px;
	color: #f7bc34;
	text-shadow: 0px 3px 2px black;
	font-size: 22px;
}

.ra-menu-button:hover {
	filter: brightness(1.2);
}

.ra-menu-prop {
	position: absolute;
	bottom: -17px;
	height: 20px;
	width: 120px;
	background: url('/images/menu_prop.png') no-repeat;
	right: -15px;
}

img.placeholder_screenshot {
	opacity: 0.6;
}