@font-face {
	font-family: "Suisse Int'l Medium";
	src: url("../fonts/501e03d4c0303f394033bcaf435f4b3e.eot");
	src: url("../fonts/501e03d4c0303f394033bcaf435f4b3e.eot?#iefix")
		format("embedded-opentype"),
		url("../fonts/501e03d4c0303f394033bcaf435f4b3e.woff2") format("woff2"),
		url("../fonts/501e03d4c0303f394033bcaf435f4b3e.woff") format("woff"),
		url("../fonts/501e03d4c0303f394033bcaf435f4b3e.ttf")
		format("truetype"),
		url("../fonts/501e03d4c0303f394033bcaf435f4b3e.svg#Suisse Int'l Medium")
		format("svg");
}

@font-face {
	font-family: "GE SS Two";
	src: url("../fonts/GESSTwoMedium-Medium.eot");
	src: url("../fonts/GESSTwoMedium-Medium.eot?#iefix")
		format("embedded-opentype"),
		url("../fonts/GESSTwoMedium-Medium.woff2") format("woff2"),
		url("../fonts/GESSTwoMedium-Medium.woff") format("woff"),
		url("../fonts/GESSTwoMedium-Medium.ttf") format("truetype"),
		url("../fonts/GESSTwoMedium-Medium.svg#GESSTwoMedium-Medium")
		format("svg");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

* {
	box-sizing: border-box;
	unicode-bidi: embed;
}

html, body {
	font-family: "Suisse Int'l Medium", sans-serif;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	font-size: 16px;
	font-size: 1rem;
	color: #353738;
}

[data-grid~=container] {
	max-width: calc(1920px + 10%);
	margin: 0 auto;
	padding-left: 0;
	padding-right: 0;
	position: relative;
	min-height: 100vh;
}

.-txtArabic {
	font-family: "GE SS Two";
}

h1, h2, h3, h4, h5, h6 {
	color: #0A0A0A;
	font-weight: 600;
}

.form-group {
	margin-bottom: 1.5rem;
}

label {
	font-weight: 600;
}
.abs
{
	color:red;
}
.container_inner {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.-bkred {
	background: #E00800;
	border-radius: 6px;
	color: #ffffff;
	padding: 2px 6px;
}

.btn {
	padding: 0.75rem 2rem;
}

.btn-red {
	background: #E00800;
	color: #ffffff;
}

.btn-red:hover {
	color: #ffffff;
}

.btn-red:focus {
	box-shadow: none;
}

.btn-black {
	background: #0A0A0A;
	color: #FFFFFF;
}

.btn-black:hover {
	color: #ffffff;
}

.btn-black:focus {
	box-shadow: none;
}

.btn-red[disabled=disabled], .btn-black[disabled=disabled] {
	background: #cecece;
	color: #9d9d9d;
	opacity: 1;
}

a {
	color: #E00800;
}

.mob_img {
	display: none !important;
}

@media ( min-width : 1200px) and (max-width: 1440px) {
	.container_inner {
		max-width: 1200px;
	}
	h3 {
		font-size: 1.5rem;
	}
	h4 {
		font-size: 1.25rem;
	}
}

@media ( max-width : 1199px) {
	.container_inner {
		max-width: 92%;
	}
	h3 {
		font-size: 1.5rem;
	}
	h4 {
		font-size: 1.25rem;
	}
}

@media ( max-width : 767px) {
	.container_inner {
		max-width: 92%;
	}
	.mob_img {
		display: block !important;
	}
	.desk_img {
		display: none !important;
	}
}

@media ( max-width : 575px) {
	h3 {
		font-size: 1.1rem;
	}
	h4 {
		font-size: 1.1rem;
	}
}
/* -- custom radio button, start -- */
label.radio_paymentType {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 0;
/* 	padding: 0 1.75rem 0 0;
 */	padding: 0 32px 0 0;
	border-radius: 8px;
	margin: 0 0.1rem;
	/* On mouse-over, add a grey background color */
	/* When the checkbox is checked, add a blue background */
	/* Create the checkmark/indicator (hidden when not checked) */
	/* Show the checkmark when checked */
	/* Style the checkmark/indicator */
}

label.radio_paymentType input[type=radio] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

label.radio_paymentType .radio {
	position: absolute;
	top: 50%;
	left: 0;
	height: 28px;
	width: 28px;
	border: 1px solid #000;
	transform: translate(0, -50%);
	background-color: #fff;
	border-radius: 50%;
	margin-left: 0.5rem;
}

label.radio_paymentType:hover input ~ .radio {
	background-color: #fff;
}

label.radio_paymentType input:checked ~ .radio {
	background-color: #fff;
}

label.radio_paymentType .radio:after {
	content: "";
	position: absolute;
	display: none;
}

label.radio_paymentType input:checked ~ .radio:after {
	display: block;
}

label.radio_paymentType .radio:after {
	/* left: 5px;
  top: 4px; */
	left: 50%;
	top: 50%;
	width: 16px;
	height: 16px;
	border: solid black;
	background-color: black;
	border-width: 5px;
	border-radius: 50%;
	transform: rotate(45deg);
	transform: translate(-50%, -50%);
}

/* -- custom checkbox, start -- */
/* The container */
.container_check {
	display: block;
	position: relative;
	padding-left: 2.5rem;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-weight: 400;
}

/* Hide the browser's default checkbox */
.container_check input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 4px;
	left: 0;
	height: 1.75rem;
	width: 1.75rem;
	background-color: #fff;
	border: 1px solid black;
	border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container_check:hover input ~ .checkmark {
	background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.container_check input:checked ~ .checkmark {
	background-color: black;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.container_check input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.container_check .checkmark:after {
	left: 9px;
	top: 4px;
	width: 8px;
	height: 14px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

@media ( max-width : 575px) {
	html, body {
		font-size: 0.875rem;
	}
	label.radio_paymentType .radio {
		height: 24px;
		width: 24px;
	}
	label.radio_paymentType .radio::after {
		width: 12px;
		height: 12px;
	}
	.container_check {
		padding-left: 2rem;
	}
	.checkmark {
		height: 1.35rem;
		width: 1.35rem;
	}
	.container_check .checkmark:after {
		left: 28%;
		top: 8%;
		width: 6px;
		height: 12px;
	}
} /*# sourceMappingURL=style.css.map */
.fixeder {
	direction: rtl;
}