body {
	font-family: 'Inter', sans-serif;
	color: #fff;
	background-color: #181A20;
	margin: 0;
	padding: 0;
}

/* Apply font size to all input types */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="color"],
input[type="file"],
textarea,
select {
    font-size: 16px;      /* Recommended font size for mobile and accessibility */
    font-family: Arial, sans-serif;  /* Use a legible and widely supported font */
    line-height: 1.5;    /* Ensure good spacing for readability */
}

/* Optional: Set a larger font size for labels to improve readability */
label {
    font-size: 18px;
    font-family: Arial, sans-serif;
    line-height: 1.5;
}

/* Ensure that placeholder text is also legible */
::placeholder {
    font-size: 16px;
    font-family: Arial, sans-serif;
    line-height: 1.5;
    color: #a9a9a9;  /* Slightly faded color for placeholders */
}


body.hero-img {
    background-image: linear-gradient(to bottom, rgba(24,26,32,15%) 0%, rgba(24,26,32,1) 60%), url('../img/background.jpg');
    background-position: top, top;
    background-repeat: no-repeat, no-repeat;
    background-position-x: center, center;
    background-size: 100% 100%, contain;
    background-color: #181A20;
	filter: brightness(1.2);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px;
}

#uploadScreen {
	padding: 0;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    flex-direction: column;
}

header h1 {
    flex: 1; /* This line ensures the h1 takes up all available space, pushing the language switcher to the right */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
}

.logo {
    background-image: url('../img/logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;  /* Takes full width of the parent */
    padding-top: 20%;  /* 1:1 Aspect Ratio */
    position: relative; /* If you want text inside of it */
    display: block;
    margin: 0 auto;
	margin-top: 30%;
}

.logo.hero-img {
	margin-top: 0;
}

h1 {
	font-size: 24px;
	max-width: 100%;
}

.language-switch {
	padding-top: 6px;
}

.language-switch span {
	color: white;
	cursor: pointer;
	
}

.language-switch span:hover {
	text-decoration: underline;
}

.language-switch .underline {
    text-decoration: underline;
}

main {
	padding-top: 20px;
	font-size: 14px;
}

h2 {
	padding: 20px;
	font-size: 18px;
	text-align: center;
}

h3.icon {
	font-size: 62px;
    padding: 0;
    margin: 0;
}

p {
	font-size: 14px;
}

a {
	color: #007BFF;
}

p.hero {
	margin: 0;
	margin-bottom: 40px;
	padding: 0;
}

.privacy-info {
	font-size: 12px;
	display: flex;
	justify-content: flex-start;
}

.privacy-info .privacy-icon {
	padding: 0px 6px 0px 6px;
}
.privacy-info .privacy-text, 
.privacy-info .privacy-text a {
	color: white;
}
.privacy-info .privacy-text a {
	font-weight: bold;
}
.line {
	width: 100%;
	height: 1px;
	background: #6A6A6A;
	margin-bottom: 7px;
	margin-top: 7px;
}
.row-fluid {
	display: flex;
	justify-content: center; /* aligns children horizontally to the center */
	align-items: center; /* aligns children vertically to the center */
	height: 100%; /* takes up full height */
	flex-direction: column; /* stacks children vertically */
}

.btn {
	font-family: 'Inter', sans-serif; /* Adjust if you're using the Inter font via Google Fonts or another source */
	border-radius: 25px;
	padding: 10px 20px;
	color: white;
	cursor: pointer;
	transition: background-color 0.3s;
	font-size: 18px;
}

#fileupload {
    padding: 0;
    width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.uploadBtn {
	background-color: #007BFF; /* Adjust this color as needed */
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 0 auto;
    padding: 10px;
}

.uploadBtn:hover {
	background-color: #0056b3; /* Adjust this color for hover effect */
}
.uploadBtn:hover svg path,
.uploadBtn:hover svg rect {
	stroke: #fff;
}

.fileinput {
	display: none; /* This hides the default input field */
}

.uploadMediaDetails {
	font-size: x-small;
}

.legal-links {
	font-size: x-small;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
}

.legal-links a {
	padding: 0 10px;
}

.select2-selection__choice__display, .select2-results {
	color: black;
}

input, select {
	height: 40px;
	border-radius: 8px;
	border: 1px solid var(--grey-light, #AEB4C2);
	background: #FFF;
	width: 100%;
	padding: 0px;
	margin-bottom: 15px;
}
.select2-container {
	width: 100% !important;
	font-size: 16px;
    font-family: Arial, sans-serif;
    line-height: 1.5;
	margin-bottom: 15px !important;
}
.select2-container .select2-selection--multiple {
	min-height: 40px !important;
	width: 100%;
}
.select2-container .select2-selection--single {
	min-height: 40px !important;
	width: 100%;
}
.format-select {
	height: 46px;
	width: 100%;
	margin-bottom: 15px;
}
#send {
	border-radius: 100px;
	background-color: #007BFF;
	width: 100%;
	border: 0px;
	margin-top: 15px;
	padding: 15px;
}

#send:disabled {
	background-color: #878787;
}
#success-message .uploadBtn {
	border: 0px;
	padding: 15px;
    margin-top: 15px;
}

.invalid {
	border: 2px solid red;
}

label.invalid {
	color: red;
	border: none;
}

.progress-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.progress-bar {
    flex: 1; /* Takes up remaining space */
    margin-left: 10px; /* Space between text and progress bar */
    margin-right: 10px; /* Space between progress bar and size text */
    background-color: #3D3D3D;
    border-radius: 8px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress {
    height: 16px;
    background-color: #007BFF; /* Green */
    border-radius: 8px;
	width: 0;
}

#progress-size {
    flex: 0; /* Does not grow or shrink */
    text-align: right;
}

.terms-conditions {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    flex-direction: row;
    justify-content: flex-start;
}

.terms-conditions label {
	font-size: 14px;
}

#termsCheckbox {
    margin-right: 10px;
    border: 2px solid #007BFF; /* or any color you like */
    height: 20px;
    width: 20px;
}


/* Media query for wide screens */
@media (min-width: 700px) {
    body.hero-img {
        background-image: linear-gradient(to bottom, rgba(24,26,32,15%) 0%, rgba(24,26,32,1) 80%), url('../img/background-wide.jpg');
		background-position: top, top;
		background-repeat: no-repeat, no-repeat;
		background-position-x: center, center;
		background-size: 100% 100%;
		background-color: #181A20;
    }
	h1 {
		max-width: 80%;
	}
	.logo {
		margin-top: 20%;
	}
}

/* Footer */
.footer {
	position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    vertical-align: bottom;
    z-index: 1000;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
}
.footer a {
	margin: 0;
	padding: 0 4px;
}
.footer-logo-img {
	display: inline-block;
    width: 74px;
    margin: 0;
	padding: 0;
}
.footer-logo-img-kal {
	display: inline-block;
	height: 18px;
	margin: 0;
	padding: 0;
}