
@font-face {
    font-family: 'Jokker-Bold';
    src: url('Resources/Fonts/Jokker-Bold.ttf');
}
@font-face {
    font-family: 'Jokker-Regular';
    src: url('Resources/Fonts/Jokker-Regular.ttf');
}

body {
	background-color: #3737FF;
}
a, a:visited, a:active {
	color: #212121;
}

#root *{
	font-family: Jokker-Regular;
}

#root .mainWrap {
	background-color: #3737FF;
}

#root .logoSearch {

}

#root .logoSearch .mainLogo {
	background-image: url("Resources/Images/logo.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	height: 200px;
	width: 250px;
}
	@media screen and (max-width: 550px) {
		#root .logoSearch .mainLogo {
			width: inherit;
		}
    }
	
#root .structureTop {
	background-color: #3737FF;
	height: 180px;
}
#root .structureMiddle {
	border-top: 34px solid #ffdb00;
	position: static;
}

#root input[type="text"].codeInput {
	border: 1px solid #212121;
	color: #212121;
	border-radius: 0px;
	font-size: 12px;
	height: 30px;
}

#root .galleryContainer .buttons {
	position: absolute;
	width: 100%;
	top: 182px;
	left: 0;
	margin: 0;
}

#root .galleryContainer .buttons button,
#root .modalContent button {
	background-color: transparent;
	border: none;
	color: #3737FF;
	font-family: Jokker-Bold;
	font-size: 18px;
	height: 30px;
	margin: 5px;
	width: 130px;
	border-radius: 0px;
}
#root .galleryContainer .buttons button {
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 180px;
	border: 2px solid #ffdb00;
	border-radius: 3px;
}
	@media screen and (max-width: 550px) {
		#root .galleryContainer .buttons button {
			font-size: 10px;
		}
    }
#root .galleryContainer .buttons button:first-child {
	border-right: 2px solid #3737FF;
}
#root .galleryContainer .buttons button:last-child {
	border-left: 2px solid #3737FF;
}
#root button.go {
	background-color: #3737ff;
	border: 1px solid #ffdb00;
	color: #ffdb00;
	font-family: verdana;
	font-size: 14px;
	height: 30px;
	margin: 5px;
	width: 30px;
	border-radius: 50%;
}

#root .welcomeMessage {
	color: rgb(0, 255, 185);
	font-family: Jokker-Bold;
	font-size: 30px;
}

#root .structureBottom {
	color: #000;
	height: 80px;
	overflow: hidden;
	border-bottom: 20px solid rgb(0, 255, 185);
}

#root .LanguageBanner {
	background-color: #ffdb00;
}

#root .LanguageIcon {
	color: #3737FF;
	font-family: Jokker-Bold;
}
#root .selectedLang {
	background-color: #3737FF;
	color: #ffdb00 !important;
}
#root .LanguageIcon:hover {
	cursor: pointer;
	background-color: #3737FF;
	color: #ffdb00 !important;
}

:root {
	/*colours for download progress circle*/
  --innerCircle-progress: rgb(0, 255, 185);
  --middleCircle-progress: transparent;
  --outerCircle-progress: transparent;
  --innerCircle-nonProgress: rgba(255, 255, 255, 1);
  --middleCircle-nonProgress: transparent;
  --outerCircle-nonProgress: transparent;
}