@font-face {
    font-family: 'Brandon_thin';
    src: url('Resources/Fonts/Brandon_thin.otf');
}
@font-face {
    font-family: 'BankGothicMediumBT';
    src: url('Resources/Fonts/BankGothicMediumBT.ttf');
}

a, a:visited, a:active {
	color: #FFFFFF;
}

#root *{
	font-family: Brandon_thin;
}

#root .mainWrap {
	background-color: #FFFFFF;
	background: url('Resources/Images/Background.jpg');
	background-size: cover;
	color: #FFFFFF !important;
	max-width: none;
}

#root .logoSearch .mainLogo {
	background-image: url("Resources/Images/logo.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	height: 120px;
	width: 550px;
	cursor: pointer;
}
	@media screen and (max-width: 550px) {
		#root .logoSearch .mainLogo {
			width: inherit;
		}
    }
#root .structureTop {
	background: transparent;
}

#root input[type="text"].codeInput {
	border: none;
	background-color: rgb(240, 245, 248);
	font-family: arial;
}

#root button.go,
#root .galleryContainer .buttons button,
#root .modalContent button {
	background-color: rgb(255,206,68);
	color: #FFFFFF;
	border-radius: 0px;
	font-family: BankGothicMediumBT;
}

#root button.go {
	background-color: rgb(255,206,68);
	font-size: 26px;
	border-radius: 10px;
	color: #FFFFFF;
}

#root .structureMiddle {
	position: relative;
	z-index: 1;
	background: transparent;
}

#root .structureBottom {
	height: 100px;
	background: transparent;
	font-family: arial;
}
#root .welcomeMessage,
#root .galleryContainer {
	opacity: 1;
	will-change: auto;
	margin: 20px;
}
#root .welcomeMessage {
	padding: 75px;
	width: 90%;
	font-family: BankGothicMediumBT;
}
		@media screen and (max-width: 450px) {
			#root .welcomeMessage {
				padding: 50px;
				font-size: 15px;
			}
			#root .welcomeMessage h3 {
				font-size: 25px;
			}
		}
#root .galleryContainer {
	padding: 20px;
}

#root .LanguageBanner {
	background-color: rgb(240,245,248);
	max-width: none;
}

#root .LanguageIcon {
	color: #212121;
	font-family: BankGothicMediumBT;
}
#root .selectedLang {
	background-color: rgb(255,206,68);
	color: #212121;
}
#root .LanguageIcon:hover {
	cursor: pointer;
	background-color: rgb(110,158,212);
	color: #212121;
}

:root {
	/*colours for download progress circle*/
  --innerCircle-progress: rgb(255,206,68);
  --middleCircle-progress: transparent;
  --outerCircle-progress: transparent;
  --innerCircle-nonProgress: rgba(240, 245, 248, 0.8);
  --middleCircle-nonProgress: transparent;
  --outerCircle-nonProgress: transparent;
}