@font-face {
    font-family: 'TTNormsProMedium';
    src: url('Resources/Fonts/TT-Norms-Pro-Medium.otf');
}

#root *{
	font-family: TTNormsProMedium;
}

#root .logoSearch .mainLogo {
	height: 100px;
	background-image: url("Resources/Images/logo.png");
}
	
#root .structureBottom {
	height: 100px;
}
#root .structureBottom,
#root .structureTop {
	background-color: rgb(0, 31, 94);
	z-index: 3;
}
	#root .structureTop::before,
	#root .structureTop::after,
	#root .structureBottom::before,
	#root .structureBottom::after {
		content: " ";
		background-image: url('Resources/Images/corner.png');
		background-repeat: no-repeat;
		background-position: top left;
		background-size: contain;
		width: 150px;
		height: 117px;
		position: absolute;
		z-index: 2;
		border-top: 4px solid rgb(0, 31, 94);
	}
	
	#root .structureTop::before{
		left: 0px;
	}
	#root .structureTop::after{
		right: 0px;
	}
	#root .structureTop::before,
	#root .structureTop::after {
		bottom: -117px;
	}
	#root .structureTop::after {
		-webkit-transform: scaleX(-1);
		transform: scaleX(-1);
	}
		@media screen and (max-width: 1280px) {
			#root .structureTop::before,
			#root .structureTop::after {
				width: 100px;
				height: 78px;
				bottom: -78px;
			}
		}
		@media screen and (max-width: 800px) {
			#root .structureTop::before,
			#root .structureTop::after {
				width: 75px;
				height: 59px;
				bottom: -58.98px;
			}
		}
	
	#root .structureBottom::before{
		left: 0px;
		-webkit-transform: scaleY(-1);
		transform: scaleY(-1);
	}
	#root .structureBottom::after{
		right: 0px;
		-webkit-transform: scaleX(-1) scaleY(-1);
		transform: scaleX(-1) scaleY(-1);
	}
	#root .structureBottom::before,
	#root .structureBottom::after {
		top: -117px;
	}
		@media screen and (max-width: 1280px) {
			#root .structureBottom::before,
			#root .structureBottom::after {
				width: 100px;
				height: 78px;
				top: -78px;
			}
		}
		@media screen and (max-width: 800px) {
			#root .structureBottom::before,
			#root .structureBottom::after {
				width: 75px;
				height: 59px;
				top: -58.98px;
			}
		}


#root input[type="text"].codeInput {
	border: none;
}

#root button.go,
#root .galleryContainer .buttons button,
#root .modalContent button {
	background-color: rgb(183, 79, 183);
}

#root .structureMiddle {
	position: relative;
	z-index: 1;
	border: 1px solid #fff;
	border-left: none;
	border-right: none;
}

#root .mainWrap {
	background-image: url('Resources/Images/bg.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

#root .welcomeMessage,
#root .galleryContainer {
	opacity: 1;
	will-change: auto;
	background-color: #fff;
	border-radius: 70px;
	margin: 20px;
}
#root .welcomeMessage {
	padding: 75px;
	width: 90%;
}
		@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: rgb(183, 79, 183);
	color: #FFFFFF;
}
#root .LanguageIcon:hover {
	cursor: pointer;
	background-color: rgb(183, 79, 183);
}

:root {
	/*colours for download progress circle*/
  --innerCircle-progress: #E4058C;
  --middleCircle-progress: #E9A72D;
  --outerCircle-progress: #189BD4;
  --innerCircle-nonProgress: rgba(255, 255, 255, 1);
  --middleCircle-nonProgress: rgba(255, 255, 255, 0.7);
  --outerCircle-nonProgress: rgba(255, 255, 255, 0.8);
}

#root .modalOverlay {
	z-index: 3 !important;
}