:root {
	--white: #fff;
	--dark: #303030;
	--blue: #0c51a3;
	--blue-light: #0b6ec7;
	--blue-lighter: #e9f0f7;
	--grey: #6F7175;
	--grey-light: #979797;
	--grey-lighter: #eee;
	--red: #fc4b69;
	--red-dark: #c22327;
	--red-light: #F6E5E5;
	--grid-gutter-width: 20px;
}

* {
	box-sizing: border-box;
}

a, a:link, a:visited {
	color: var( --blue );
	text-decoration: underline;
	cursor: pointer;
}
a:hover, a:link:hover, a:visited:hover {
	text-decoration: none;
}

p {
	margin: 0 0 var( --grid-gutter-width );
	padding: 0;
}

h1, h2, h3, h4, h5 {
	margin-top: 0;
}


body {
	font-size: .875rem;
	line-height: 1.5;
	font-family: "Open Sans",Verdana,Arial,"Lucida Grande",sans-serif;
	font-weight: 500;
	color: var( --dark );
	margin: 0;
	padding: 0;
}

section, footer {
	width: initial;
	margin: auto;
}


/*<editor-fold desc="Include Open Sans">*/
/*Open Sans Light*/
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	src: url("https://media.fxcm.com/fonts/Open-Sans/OpenSans-Light.woff2") format('woff2');
}

/*Open Sans Regular*/
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: url("https://media.fxcm.com/fonts/Open-Sans/OpenSans-Regular.woff2") format('woff2');
}

/*Open Sans Semibold*/
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	src: url("https://media.fxcm.com/fonts/Open-Sans/OpenSans-Semibold.woff2") format('woff2');
}

/*Open Sans Bold*/
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	src: url("https://media.fxcm.com/fonts/Open-Sans/OpenSans-Bold.woff2") format('woff2');
}
/*</editor-fold>*/

/*<editor-fold desc="Include Cairo">*/
/*Cairo Light*/
@font-face {
	font-family: 'Cairo';
	font-style: normal;
	font-weight: 300;
	src: url("https://media.fxcm-arabic.com/fonts/Cairo/Cairo-Light.woff2") format('woff2');
}

/*Cairo Regular*/
@font-face {
	font-family: 'Cairo';
	font-style: normal;
	font-weight: 400;
	src: url("https://media.fxcm-arabic.com/fonts/Cairo/Cairo-Regular.woff2") format('woff2');
}

/*Cairo Semibold*/
@font-face {
	font-family: 'Cairo';
	font-style: normal;
	font-weight: 600;
	src: url("https://media.fxcm-arabic.com/fonts/Cairo/Cairo-SemiBold.woff2") format('woff2');
}

/*Cairo Bold*/
@font-face {
	font-family: 'Cairo';
	font-style: normal;
	font-weight: 700;
	src: url("https://media.fxcm-arabic.com/fonts/Cairo/Cairo-Bold.woff2") format('woff2');
}
/*</editor-fold>*/


/*<editor-fold desc="Grid & Container">*/
.container {
	display: block;
	margin: 0 auto var( --grid-gutter-width );
	max-width: 768px;
	padding-left: var( --grid-gutter-width );
	padding-right: var( --grid-gutter-width );
}

.container-lg {
	max-width: 1100px;
}

.row {
	margin-left: -20px;
	margin-right: -20px;
}

.col-sm {
	padding-left: var( --grid-gutter-width );
	padding-right: var( --grid-gutter-width );
}

.one-column .col-sm {
	margin-left: auto;
	margin-right: auto;
}

.two-column .col-sm {
	margin: 0;
}
/*</editor-fold>*/


/*<editor-fold desc="Header">*/
header {
	border-bottom: 2px solid var( --grey-lighter );
	position: relative;
	background: var( --white );
	padding: 15px 30px;
	margin-bottom: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .logo img {
	width: 100%;
	max-width: 145px;
	margin-top: 5px;
}

header .lang-selector {
	text-transform: uppercase;
	font-size: 14px;
	text-align: left;
	max-width: 125px;
}
/*</editor-fold>*/

/*<editor-fold desc="Headings">*/
h1 {
	font-size: 32px;
	line-height: 42px;
	color: var( --blue );
	margin-bottom: 20px;
}

h2 {
	font-size: 24px;
	line-height: 38px;
	font-weight: 700;
	margin-bottom: 15px;
}

h3 {
	font-size: 16px;
	line-height: 28px;
	font-weight: 600;
	margin-bottom: 25px;
}

h4 {
	font-size: 15px;
	line-height: 25px;
	font-weight: 700;
	margin-bottom: 10px;
	text-transform: uppercase;
}
/*</editor-fold>*/


/*<editor-fold desc="Alert">*/
.alert {
	padding: var( --grid-gutter-width );
	border-radius: 4px;
	width: 100%;
}

.alert-light {
	background: var( --white );
}

.alert-primary {
	background: var( --blue-lighter );
}

.alert-danger {
	background: var( --red-light );
}
/*</editor-fold>*/


/*<editor-fold desc="Helper Classes">*/
.full-width {
	width: 100%;
}

.txt-semibold {
	font-weight: 600;
}

.mt-10 {
	margin-top: 10px;
}

.mb-10 {
	margin-bottom: 10px !important;
}

.mb-20 {
	margin-bottom: var( --grid-gutter-width );
}

.mb-30 {
	margin-bottom: 30px !important;
}

.mb-40 {
	margin-bottom: 40px !important;
}

.reset {
	padding: 0;
	margin: 0;
	list-style: none;
}

.reset li {
	padding-bottom: 10px;
}

.txt-14 {
	font-size: 14px;
	line-height: 23px;
}

.justify-center {
	justify-content: center;
}
/*</editor-fold>*/


#paymentPopup {
	display: none;
	background: rgba(0,0,0,0.8);
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
}

/*<editor-fold desc="Spinner Loader">*/
/* Loader */
#paymentPopup .popup-loader {
	max-width: 450px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	padding: 80px 40px 40px;
	font-weight: 600;
	text-align: center;
}

#paymentPopup .popup-loader h3 {
	font-size: 24px;
	line-height: 32px;
}

#paymentPopup .popup-loader p:last-child {
	margin-bottom: 0;
}

.spinner-wrapper {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: rgba(12,81,163,.1);
	margin: 30px auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.spinner-wrapper .spinner-border {
	display: inline-block;
	width: 50%;
	height: 50%;
	color: #0c51a3;
	border: 1px solid;
	border-right-color: transparent;
	vertical-align: -.125em;
	border-radius: 50%;
	animation: .75s linear infinite spinner-border;
}

.sr-only {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

@keyframes spinner-border {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}
/*</editor-fold>*/


/*<editor-fold desc="Modal">*/
/* Modal */
.confirmModal {
	display: none; /* Hidden by default */
	position: fixed;
	z-index: 1;
	padding-top: 150px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.57);
}

.confirmModalContent {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 4px;
	padding: 30px 20px 20px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	box-shadow: 3px 8px 12px 0px rgb(78 77 77);
}

.confirmModal h3 {
	font-size: 18px;
}
/*</editor-fold>*/

/*<editor-fold desc="Sticky Help">*/
/* Floating Help */
.help-link a {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	font-size: 15px;
	padding: 11px 23px;
	border-radius: 30px;
	font-weight: 600;
	text-decoration: none;
	position: fixed;
	right: 30px;
	bottom: 30px;
	transition: all 0.2s ease-in-out;
}

.help-link svg {
	fill: var( --white );
	width: 16px;
	margin-right: 7px;
}
/*</editor-fold>*/



#noJavasciptWarning {
	min-height: 72%;
	position: absolute;
	width: 800px;
	top: 0;
	margin: 185px auto;
	z-index: 9999;
	background-color: #fff;
}


.confirmed {
	color: #50a803;
}

.denied {
	color: #900;
}


.error {
	color: #ff0000;
}


div#sessionWarning {
	display: none;
}



#footer .container{
	display: flex;
	flex-flow: column;
	align-items: center;
}

#footer .footer-links {
	margin-bottom: 10px;
}




/* ---- DESKTOP ---- */
@media screen and (min-width: 1101px) {
	.row {
		display: flex;
	}

	.main-headings {
		text-align: center;
		margin-bottom: 50px;
	}

	.col-sm {
		min-width: 50%;
		max-width: 50%;
		width: 50%;
	}
}



/* ---- MOBILE ---- */
@media (max-width: 600px) {
	header {
		margin-bottom: 25px;
	}

	.main-headings {
		margin-bottom: 25px;
	}

	h1 {
		font-size: 26px;
		line-height: 38px;
		margin-bottom: 10px;
	}

	h2 {
		font-size: 22px;
		line-height: 34px;
	}

	#paymentPopup .popup-loader {
		padding: 50px 25px 25px;
	}

	/* Live Chat Link */
	.help-link a {
		font-size: 13px;
		line-height: 21px;
		padding: 7px 13px;
		right: 20px;
		bottom: 20px;
	}

	body[dir="RTL"] .help-link a {
		right: auto;
		left: 20px;
	}

	.help-link svg {
		width: 13px;
	}
}





/* Arabic Styles */
body[dir="RTL"] {
	font-family: "Cairo", "Open Sans",Verdana,Arial,"Lucida Grande",sans-serif;
}

body[dir="RTL"] header .lang-selector{
	text-align: right;
}

body[dir="RTL"] .help-link a {
	right: auto;
	left: 30px;
}

body[dir="RTL"] .help-link svg {
	margin-right: 0;
	margin-left: 7px;
}
