/* latin */
@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./fonts/anton.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


body {
background-image: radial-gradient(#404040 1px, transparent 1px), radial-gradient(#404040 1px, transparent 1px);
background-size: 10px 10px;
background-position: 0 0, 5px 5px;
background-color: #100a00;
	color: #ddd;
	font-family: 'Anton', sans-serif; /* strong and bold */
	width:6000px;
}


#progress-container {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30px;
	background-color: #222;
	box-shadow: 0 -2px 5px rgba(0,0,0,0.7);
	z-index: 9999;
}
#progress-bar {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, #fcba03, #ffd769);
	transition: width 0.3s ease;
}

.ac-container {
	border: 1px solid #555;
	background: linear-gradient(to bottom, #2b2b2b, #1e1e1e);
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.5);
	display: inline-flex;
	align-items: center;
	min-height: 120px;
	padding: 8px;
	border-radius: 4px;
	overflow: hidden;
	color: #f2e829; /* faded gold */
	margin-right:25px;
	margin-bottom:25px;
}

.branch{
	display: inline-block;
	margin-right:140px;
}

.img-container {
  width: 100px;
  height: 100px;
  margin-right: 16px;
  flex-shrink: 0;
  border: 2px solid #444;
  background-color: #111;
  padding: 4px;
  box-shadow: inset 0 0 4px #000;
}

.img-container img {
  width: 100%;
  height: 100%;
  filter:sepia(60%);
  object-fit: cover;
}
.full-atlas{
	filter:sepia(100%) !important;
}

.second-container {
  flex-grow: 1;
}

.second-container h2 {
  margin: 0 0 6px 0;
  font-size: 20px;
  text-transform: uppercase;
  color: #c9c33e;
  text-shadow: 1px 1px 0 #000;
  letter-spacing:5px;
}

h1 {
  margin: 0 0 6px 0;
  font-size: 28px;
  text-transform: uppercase;
  color: #aaaaaa;
  text-shadow: 5px 5px 0 #000;
  letter-spacing:3px;
}

.second-container p {
  margin: 0;
  font-size: 14px;
  color: #ccc;
  line-height: 1.4;
  word-break: break-word;
}

input:checked {
	background-color: #d4af37;
	box-shadow: 0 0 5px #d4af37;
}

.checkbox-container {
	display: block;
	position: relative;
	padding-left: 2rem;
	margin-top: 0.2rem;
	cursor: pointer;
	font-size: 1rem;
	color: #f3e6c9;
	user-select: none;
}

.checkbox-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.checkmark {
	position: absolute;
	left: 0;
	top: 2px;
	height: 1.2rem;
	width: 1.2rem;
	background-color: #222;
	border: 2px solid #d4af37;
	border-radius: 4px;
}

.checkbox-container input:checked ~ .checkmark {
	background-color: #d4af37;
	box-shadow: 0 0 5px #d4af37;
}

.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
	display: block;
}
option{
	background: black;
}

.checkbox-container .checkmark:after {
	left: 4px;
	top: 0px;
	width: 5px;
	height: 10px;
	border: solid #111;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}