/* CSS Document */
body{
	font-family:"IBM Plex Sans", 'Droid Arabic Naskh';
	font-weight: 400;
	color:#181A1D;
}

.bold{
	font-family: "IBM Plex Sans", 'Droid Arabic Naskh Bold';
	font-weight: 700;
}

.notBold{
	font-family: "IBM Plex Sans", 'Droid Arabic Naskh';
	font-weight: 400;
}

#main{
	width:100%;
}

div, span, form, p, ul, table, img
{
	margin:0;
	padding:0;
}

a {
	outline:none;
	text-decoration:none;
	color: #1C6FCF;
}

a:hover {
	text-decoration:underline;
}

.rtl{
	direction: rtl;
}

.ltr{
	direction: ltr;
}


.positionRelative{
	position: relative;
}

.clearIE , .clear {
	margin:0;
	padding:0;
	line-height:0;
	height:0;
	clear:both;
}

.a-center {
	text-align:center;	
}

.flex-center{
	justify-content: center;
}

.displayBlock {
	display: block;
}

.displayNone {
	display: none;
}

.noPadding{
	padding:0;
}

.noPaddingLeftRight{
	padding-left:0;
	padding-right:0;
}

.flex{
	display:flex;
	flex-wrap: wrap;
}

.flexCenter{
	align-items: center;
}

.pointer{
	cursor: pointer;
}

.input-group-addon{
	background: #FFF;
}

.Required--Red{
	color: #E21327;
}