html, a {
	color: #FFC300;
}

body {
	margin: 0;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #000000;
	font-family: "Segoe UI", Arial, sans-serif;
}

body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-image: url('../images/bg1.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	z-index: -2;
}

body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
    pointer-events: none;
}

p {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

button {
	background: none;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	color: #FFC300; 
	text-decoration: none; 
}

button:hover {
	color: #ADD8E6;
}

select, option {
	color: #FFC300;
	font-size: 12px;
	min-width: 60px;
    padding-left: 5px;
}

.hidden {
	display: none;
}

.link-list {
    list-style: inside;
    padding: 0;
	margin: 0;
}

.link-list li a {
    text-decoration: none;
}

.link-list li a:hover {
	color: #ADD8E6;
}

.first {
	align-items: center;
	width: auto;
	min-width: 373px;
	height: 100%;
	display: block;
	padding: 0;
	margin: 0;
}

.second {
	margin-right: 5%;
}

.wizard-section {
	display: none;
}

.active-section {
	display: block;
	margin: 0;
	padding: 0;		
}

.fa-btn {
	padding: 10px;
	font-size: 16px;
}

.language-btn {
	font-size: 12px;
	max-height: 14px;
	color: gray;
}
.close-btn {
	margin-top: 10px;
	font-size: 12px;	
}

.fa-btn.active {
	color: #FFC300;
}

.fa-btn.disabled {
	color: lightslategray;
    pointer-events: none;
}

.navigation {
	padding-left: 50px;
}

.languages {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	position: fixed;
	top: 5px;
	width: 100%;
	z-index: 998;
}
.languages select {
	background: black;
	overflow-y: auto;
	font-size: 12px;
}


.container {
	display: flex;
	gap: 10px;
}

.main-container {
	position: fixed;
	width: 900px;
	height: 400px;
	top: 50%;
	left: 50%;
	margin-top: -200px;
	margin-left: -450px;
}

.example
{
}

.hidden-links {
    position: absolute;
    left: -9999px;
}
.hidden-link {
    position: absolute;
    left: -9999px;
}

.list-item {
    display: flex;
    align-items: center;
}

.list-item-marker {
    flex-shrink: 0;
    margin-right: 10px;
}
  
.system-column {
	width: 110px;
}

.arrow-column {
	width: 25px;
}

.progress-bar {
    height: 2px;
    width: calc(100% - 120px);
	margin-top: 5px;
	margin-left: 60px;
	margin-right: 60px;
    background-color: #FFC300;
    position: relative;
}

.progress {
    height: 100%;
    background-color: lightslategray;
    position: absolute;
    top: 0;
    left: 0;
}

.progress-animation {
    animation: progressAnimation 10s linear forwards;
}

@keyframes progressAnimation {
    0% { width: 0%; }
    100% { width: 100%; }
}

@media (max-width: 980px) {
	.main-container {
		top: 60%;
	}
}

@media (max-width: 900px) {
	.main-container {
		width: 100%;
		margin-left: -410px;
	}
}

@media (max-width: 800px) {
	.main-container {
		width: 100%;
		margin-left: -370px;
	}
	.languages {
		max-width: 30%;
	}
	#galleryImage {
		margin-top: 10px;
	}
}

@media (max-width: 700px) {
	.main-container {
		width: 100%;
		margin-top: -120px;
	}
	.languages {
		max-width: 30%;
	}			
	#galleryImage {
		max-height: 200px;
		margin-top: 10px;
	}
}

@media (max-width: 660px) {
	.main-container {
		margin-left: -320px;
	}
}

@media (max-width: 600px) {
	.main-container {
		top: 0;
		position: sticky;
	}
	.container {
		display: grid;
		justify-content: center;
	}
	.navigation {
		justify-content: center;
		display: flex;
		padding-left: 0px;
	}
	.first {
		display: grid;
	}
	p {
		margin: 5%;
	}
}

@media (max-width: 300px) {
	.first {
		min-width: auto;
	}
	.main-container {
		top: 25%;
	}
	.navigation {
		display: grid;
	}
	.fa-btn {
		padding: 2px;
	}
	.progress-bar {
		margin-top: 10px;
	}
}

#counter {
	position: absolute;
	top: 5px;
	left: 5px;
	font-size: 12px;
	z-index: 999;
}

#popupImg {
	max-width: 100%;
	max-height: 100%;
	display: block;
	margin: auto;
}		
#showImageElement {
	position: absolute;
	top: 10px;
	left: 10px;
}

#overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	display: none;
}

#popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 90%;
    max-height: 90%;	
	background-color: black;
	overflow: auto;
	padding: 20px;
	border-radius: 8px;
	z-index: 1001;
	display: none;
}

select::-webkit-scrollbar {
	width: 8px;
}

select::-webkit-scrollbar-track {
	background-color: gray;
}

select::-webkit-scrollbar-thumb {
	background-color: cyan;
	border-radius: 4px;
}

