@font-face {
    font-family: 'SourceSansProRegular';
    src: url('Resources/Fonts/SourceSansPro-Regular.ttf');
}
@font-face {
    font-family: 'SourceSansProBold';
    src: url('Resources/Fonts/SourceSansPro-Bold.ttf');
}

a, a:visited, a:active {
	color: #212121;
}

#root *{
	font-family: SourceSansProRegular;
}

#root .mainWrap {
	background-color: #FFFFFF;
	color: #212121 !important;
}

#root .logoSearch .mainLogo {
	background-image: url("Resources/Images/logo.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	height: 150px;
	width: 550px;
	cursor: pointer;
}

#root .structureTop {
	background: #8b1202;
}

#root input[type="text"].codeInput {
	border: none;
}

#root button.go,
#root .galleryContainer .buttons button,
#root .modalContent button {
	background-color: #8b1202;
	color: #FFFFFF;
	border-radius: 0px;
	font-family: SourceSansProBold;
}

#root button.go {
	background-color: #FFFFFF;
	font-size: 26px;
	border-radius: 10px;
	color: #212121;
}

#root .structureMiddle {
	position: relative;
	z-index: 1;
	background: transparent;
}

#root .structureBottom {
	height: 100px;
	background: #8b1202;
}
#root .welcomeMessage,
#root .galleryContainer {
	opacity: 1;
	will-change: auto;
	margin: 20px;
}
#root .welcomeMessage {
	padding: 75px;
	width: 90%;
	font-family: SourceSansProBold;
}
	@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: #FFFFFF;
}

#root .LanguageIcon {
	color: #212121;
}
#root .selectedLang {
	background-color: #8b1202;
	color: #FFFFFF;
}
#root .LanguageIcon:hover {
	cursor: pointer;
	background-color: #8b1202;
	color: #FFFFFF;
}

:root {
	/*colours for download progress circle*/
  --innerCircle-progress: #8b1202;
  --middleCircle-progress: transparent;
  --outerCircle-progress: transparent;
  --innerCircle-nonProgress: rgba(255, 255, 255, 1);
  --middleCircle-nonProgress: transparent;
  --outerCircle-nonProgress: transparent;
}

@media screen and (max-width: 600px) {
	#root .mainLogo {
		width: auto;
	}
}