/** Language bar **/
#LanguageBar {
	width:100%;
	display: block;
	float:right;
}

#LanguageBar select {
	color: #304d71;
	font-size: 14px;
	width: 50%;
	float: right;
	cursor: pointer;
	border: none;
	border-radius: 4px;
}

#LanguageBar select:focus {
	-webkit-box-shadow: inset 0 0 0 rgba(0,0,0,0),0 0 0 rgba(0,0,0,0) !important;
	box-shadow: inset 0 0 0 rgba(0,0,0,0),0 0 0 rgba(0,0,0,0) !important;
}

/** Password textbox **/
.fa-eye {
	position: absolute;
	right: 20px;
	top: 28px;
}
.fa-eye::before {
	content: "";
	background: url('../../../svg/show.svg') no-repeat;
	width: 20px;
	height: 20px;
	position: absolute;
}
.fa-eye-slash::before {
	content: "";
	background: url('../../../svg/hide.svg') no-repeat;
	width: 20px;
	height: 20px;
	position: absolute;
}

/** Multi-Factor Authentication label **/
label[for=UserMfaCode] {
	font-size: 12px;
	padding-bottom: 4px;
}

/** Copyright Statement **/
#copyright-statement {
	font-size: 8px;
	margin-bottom: 30px;
}

/** Warning Dialog **/
#SubWarnRegion {
	text-align: center;
	padding: 15px;
	line-height: 22px;
}
.sub-warn-text {
	font-size: 11px;
	font-weight: bold;
}
#ModalDialogContainer .message {
	font-size: 12px;
}
a.button-basic {
	color: #fff;
	display: inline-block;
	min-width: 80px;
	overflow: hidden;
	background-color: #0055b8;
	text-decoration: none;
	border: 1px groove #0055b8;
	padding-left: 15px;
	padding-right: 15px;
}
a.button-basic:hover {
	color: #fff;
}

/** Mobile View **/
@media (max-width: 768px) {
	#LanguageBar select {
		width: 35%;
	}
}