/* Reset ================================================================================= */

* {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  background-color: #f1f2ff;
}
a {
  text-decoration: none;
  background-color: transparent;
  color: inherit;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  border: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
:focus {
  outline: none;
}
a:focus {
  outline: none;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

.none {
  display: none ;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.35;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 28px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 20px;
}
h6 {
  font-size: 16px;
}
.relative {
  position: relative;
}

/* Forms */
form {
  display: block;
}
fieldset {
  border: 0;
}
legend {
  display: none;
}

/* Table */
table {
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  font-size: 100%;
}
caption,
th,
td {
  vertical-align: top;
  text-align: left;
  font-weight: normal;
}

/* Lists */
ul,
ol {
  list-style: none;
  margin: 0;
}

.img-center {
  display: block;
  margin: 0 auto;
}

/* Global Styles ========================================================================= */

.wrapper-content {
  background-color: #ffffff;
  padding: 0;
  box-shadow: 0 0 30px 0 rgb(0 0 0 / 3%);
  -webkit-box-shadow: 0 0 30px 0 rgb(0 0 0 / 3%);
  border-radius: 30px;
  position: relative;
}
.header {
  padding-top: 20px;
  padding-bottom: 25px;
}
.footer {
  padding-top: 20px;
  padding-bottom: 20px;
}
.footer p {
  color: #999cc1;
  font-size: 14px;
}
.header .logo a {
  display: inline-block;
}

.header .logo img {
  height: 50px;
}

.content-section {
  padding: 40px 20px;
  position: relative;
}

.page-title {
  margin-bottom: 30px;
}
.page-title h2 {
  font-weight: 700;
  font-size: 28px;
  color: #040739;
}
.company-logo img {
  height: 120px;
}

.company-name {
  margin: 30px 0;
}
.company-name h4 {
  font-weight: 500;
  color: #666666;
}
.company-name p {
  margin-bottom: 0;
  margin-top: 20px;
  color: #999cc1;
}
.company-name a {
  display: inline-block;
  color: #753984;
  font-weight: 600;
}
.form-section .form-group {
  margin-bottom: 20px;
}
.form-section .form-group .bg_box {
  background-color: #f1f2ff;
  padding: 20px 30px;
  border-radius: 10px;
}
.form-section .form-group .control-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  color: #080439;
  font-size: 14px;
  line-height: 16px;
}

.radio-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.radio-list .radio-btn {
  position: relative;
  margin-right: 40px;
}
.radio-list .radio-btn label {
  margin: 0;
  cursor: pointer;
  display: block;
}

.radio-list .radio-btn input[type="radio"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.radio-list .radio-btn span {
  margin: 0;
  padding-left: 25px;
  line-height: 16px;
  font-weight: 500;
  font-size: 16px;
  position: relative;
}
.radio-list .radio-btn span::before {
  border: 2px solid #999999;
  content: "";
  height: 16px;
  width: 16px;
  display: block;
  border-radius: 30px;
  position: absolute;
  left: 0;
  top: 4px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.radio-list .radio-btn span::after {
  content: "";
  height: 8px;
  width: 8px;
  display: block;
  border-radius: 30px;
  position: absolute;
  left: 4px;
  background-color: #753984;
  top: 8px;
  transform: scale(0);
  -webkit-transform: scale(0);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.radio-list .radio-btn input[type="radio"]:checked + span {
  color: #753984;
}
.radio-list .radio-btn input[type="radio"]:checked + span::before {
  border-color: #753984;
}
.radio-list .radio-btn input[type="radio"]:checked + span::after {
  transform: scale(1);
}

.form-button .theme-btn {
  background-color: #753984;
  text-transform: uppercase;
  color: #ffffff;
  outline: none;
  padding: 10px 0;
  width: 100%;
  display: block;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  border: 2px solid #753984;
}
.form-button .theme-btn:hover {
  color: #753984;
  background-color: #ffffff;
}
.form-button .theme-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-button .theme-btn:disabled:hover {
  color: #ffffff;
  background-color: #753984;
}

.form-button .theme-btn.orange-btn {
  background-color: #ff8a16;
  border-color: #ff8a16;
}
.form-button .theme-btn.orange-btn:hover {
  color: #ff8a16;
  border-color: #ff8a16;
  background-color: #ffffff;
}
.form-section .form-group .iti {
  width: 100%;
}
.form-section .form-group .form-control {
  width: 100%;
  border-left: 0;
  border-top: 0;
  border-right: 0;
  border-radius: 0;
  border-bottom: 1px solid #d6d6d6;
  box-shadow: none;
  color: #000000;
  height: 30px;
  padding: 0;
}
.form-group .iti--separate-dial-code .iti__selected-flag {
  background-color: transparent !important;
}

.price-box h2 {
  color: #753984;
  font-weight: 700;
}

.radio-list .radio-btn span img {
  height: 32px;
}
.radio-list .radio-btn:last-child {
  margin-right: 0;
}
.payment_box .radio-list .radio-btn span::before {
  top: 4px;
}
.payment_box .radio-list .radio-btn span::after {
  top: 8px;
}
.form-section .form-group .bg_box .control-label {
  margin-bottom: 10px;
}

.checkbox-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.checkbox-list .checkbox-btn {
  position: relative;
}
.checkbox-list .checkbox-btn label {
  margin: 0;
  cursor: pointer;
  display: block;
}

.checkbox-list .checkbox-btn input[type="checkbox"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.checkbox-list .checkbox-btn span {
  margin: 0;
  padding-left: 30px;
  line-height: 14px;
  font-weight: 500;
  font-size: 14px;
  color: #666666;
}
.checkbox-list a {
  color: #753984;
  font-weight: 500;
    font-size: 14px;
}
.checkbox-list .checkbox-btn span::before {
  border: 2px solid #bbbbbb;
  content: "";
  height: 20px;
  width: 20px;
  display: block;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 3px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.checkbox-list .checkbox-btn span::after {
  content: "\f00c";
  font-family: fontawesome;
  position: absolute;
  left: 4px;
  top: 6px;
  color: #ffffff;
  transform: scale(1);
  -webkit-transform: scale(0);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-size: 12px;
}

.checkbox-list .checkbox-btn input[type="checkbox"]:checked + span::before {
  border-color: #753984;
  background-color: #753984;
}
.checkbox-list .checkbox-btn input[type="checkbox"]:checked + span::after {
  transform: scale(1);
}

.form-section .form-group .iti .form-control {
  padding: 0 !important;
  margin-left: 100px;
  width: calc(100% - 100px);
}
.form-section .form-group .iti.iti--allow-dropdown .iti__flag-container {
  border-bottom: 1px solid #d6d6d6;
}

.otp_box {
  display: flex;
  direction: ltr;
}
.otp_box .form-control {
  margin-left: 10px;
  margin-right: 10px;
  text-align: center;
}

.form-link-button .login_form,
.form-link-button .form_link {
  color: #753984;
  border: 0;
  background-color: transparent;
  outline: none;
  font-size: 14px;
  font-weight: 600;
}

.back-page {
  position: absolute;
  left: 0;
  top: 5px;
}

.radio-list.address_box {
  margin-left: -5px;
  margin-right: -5px;
}
.radio-list.address_box .col-4 {
  padding-right: 5px;
  padding-left: 5px;
}
.address_box .radio-btn .radio_bg_box img {
  height: 44px;
  filter: invert(68%) sepia(4%) saturate(0%) hue-rotate(62deg) brightness(87%)
    contrast(89%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.address_box .radio-btn .radio_bg_box {
  background-color: #f1f2ff;
  width: 100%;
  min-height: 132px;
  padding: 15px 10px;
  border-radius: 10px;
  text-align: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.radio-list .radio-btn input[type="radio"]:checked + .radio_bg_box {
  background-color: #753984;
}
.address_box .radio-btn .radio_bg_box span {
  margin-top: 10px;
  display: inline-block;
  line-height: 24px;
  padding: 0;
}
.address_box .radio-btn .radio_bg_box span::before,
.address_box .radio-btn .radio_bg_box span::after {
  display: none;
}
.radio-list .radio-btn input[type="radio"]:checked + .radio_bg_box img {
  filter: invert(95%) sepia(85%) saturate(1%) hue-rotate(351deg)
    brightness(110%) contrast(101%);
}

.radio-list .radio-btn input[type="radio"]:checked + .radio_bg_box span {
  color: #ffffff;
}

.form-group.invalid-number {
  position: relative;
}
.form-group.verify-number {
  position: relative;
}

.form-group.verify-number::after {
  content: "";
  background-image: url(../images/check.svg);
  height: 17px;
  width: 17px;
  display: block;
  position: absolute;
  bottom: 5px;
  right: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.form-group.invalid-number::after {
  content: "";
  background-image: url(../images/invalid.svg);
  height: 17px;
  width: 17px;
  display: block;
  position: absolute;
  bottom: 5px;
  right: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.payment-summary li {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.payment-summary li span {
  margin-left: auto;
  font-weight: 600;
  color: #080439;
  font-size: 16px;
}

.payment-summary li label {
  margin: 0;
  font-size: 16px;
  color: #999999;
  font-weight: 400;
}

.payment-summary li.price_box label {
  font-size: 24px;
  color: #753984;
}

.payment-summary li.price_box span {
  font-size: 24px;
  font-weight: 700;
  color: #753984;
}
.payment-summary li.highlight label,
.payment-summary li.highlight span {
  color: #753984;
}

.payment-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 30px;
}

.payment-section.payment-failed h2 {
  color: #f30000;
}
.payment-section h6 {
  color: #666666;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
}
.payment-section.payment-successful h2 {
  color: #46c527;
}

li.highlight-danger {background-color:#F40000;}
li.highlight-danger > span{color:#fff;}
li.highlight-danger > label{color:#fff;}


.item-list .table thead th {
  border: 0;
  padding: 0;
  color: #753984;
  font-weight: 600;
}
.item-list .table tbody td {
  border: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.loader-wrapper {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 30px;
  width: 100%;
  height: 100%;
  z-index: 5;
  cursor: wait;
}
.loader-wrapper .loader-spinner{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.loader-wrapper .spinner {
  margin: 0 auto;
  width: 50px;
  height: 50px;
  border: 5px solid #ffffff;
  border-bottom-color: #753984;
  border-radius: 50%;
  -webkit-font-smoothing: antialiased !important;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  -webkit-animation: spin 0.8s linear infinite;
  animation: spin 0.8s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.content-section .form-control[readonly] {
    background-color: transparent;
}

#reader video {
    width: 100% !important;
}

.payment-img img {
  width: 96px;
}

.payment-summary li {
	margin-bottom:5px;
	padding: 5px;
}  
.video-box .video-link {
	    margin-top: 10px;
}
.video-box .video-link a {
    color: #753984;
    text-decoration: underline;
}
.video-box .video-link.ar-link a {
    font-family: 'Neo Sans Arabic';
}
.box_info_content .box_info{
   background-color: #f1f2ff;
    padding: 10px;
    border-radius: 10px;
}
.box_info_content .box_info p {
	margin:0;
	display: flex;
	align-items: center; 
}
.box_info_content .box_info p + p{
	margin-top:10px;
}
.box_info_content .box_info p label {
    margin: 0;
	font-size: 16px;
    font-weight: 700;
    color: #753984; 
}
.box_info_content .box_info p img {
    height: 25px;
	filter: invert(43%) sepia(60%) saturate(880%) hue-rotate(241deg) brightness(83%) contrast(83%);
}

.box_info_content .box_info p  span {
	margin: 0 5px;
	font-weight: 600;
    color: #080439;
    font-size: 16px;
}
