
/***************** General Styles *****************/
body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 100vh;
}

:root {
  --primary: #fc8fa3 !important;
  --secondary: #d6198e !important;
  --danger: #bf0303 !important;
}

.btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn-primary:focus {
  border-color: var(--primary) !important;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 64, 239, 0.25) !important;
          box-shadow: 0 0 0 0.2rem rgba(255, 64, 239, 0.25) !important;
}

.text-danger {
  color: var(--danger) !important;
}

.form-control:focus {
  border-color: var(--primary) !important;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 64, 239, 0.25) !important;
          box-shadow: 0 0 0 0.2rem rgba(255, 64, 239, 0.25) !important;
}

.section-title {
  -webkit-padding-start: 23px;
          padding-inline-start: 23px;
  position: relative;
}

.section-title::before {
  content: "";
  height: 11px;
  width: 11px;
  border-radius: 50%;
  background: #fc889e;
  position: absolute;
  left: 4px;
  top: 6px;
}

.section-title:lang(ar)::before {
  left: unset;
  right: 4px;
}

/*Bootstrap Custom checbkox*/
.custom-checkbox
.custom-control-input:indeterminate
~ .custom-control-label::before {
  background: #fff;
  border-color: #adb5bd;
}

.custom-control-input:checked ~ .custom-control-label::before {
  border-color: var(--secondary);
  background-color: var(--secondary);
}

.custom-control-input:focus ~ .custom-control-label::before {
  border-color: var(--secondary) !important;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 64, 239, 0.25) !important;
          box-shadow: 0 0 0 0.2rem rgba(255, 64, 239, 0.25) !important;
}

.evaluation-list-rules {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 576px) {
  .evaluation-list-rules {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.evaluation-list-rules li {
  -webkit-padding-end: 2rem;
          padding-inline-end: 2rem;
}

.evaluation-list-rules li::marker {
  font-weight: bold;
}

.evaluation-list-rules .special-list-item {
  -webkit-margin-start: -17px;
          margin-inline-start: -17px;
}

header {
  background-color: #ececec;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 4px 2%;
  margin-bottom: 2rem;
}

header a {
  color: #000;
}

header .main-logo {
  margin: 0 14px;
  width: 100px;
}

header .main-logo img {
  width: 100%;
}

header .ar-logo,
header .en-logo {
  width: 150px;
}

header .ar-logo img,
header .en-logo img {
  width: 100%;
}

@media (max-width: 576px) {
  header {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .ar-logo,
  header .en-logo {
    display: none;
  }
}

footer {
  margin-top: 1rem;
}

.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 1rem 0;
}

.footer-link {
  margin: 5px;
}

.footer-link:hover {
  text-decoration: none;
}

/***************** End of General Styles *****************/
/***************** result Page *****************/
.progress-card {
  border-radius: 10px;
  padding: 1rem 0;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.progress-card__title {
  text-transform: uppercase;
  font-weight: 400;
}

.progress-card__result {
  font-weight: 400;
  text-decoration: underline;
}

#svg circle {
  stroke-dashoffset: 0;
  -webkit-transition: stroke-dashoffset 1s linear;
  transition: stroke-dashoffset 1s linear;
  stroke: #f5f5f5;
  stroke-width: 1em;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(-91deg);
          transform: rotate(-91deg);
}

.cont {
  display: block;
  height: 200px;
  width: 200px;
  margin: 2em auto;
  border-radius: 100%;
  position: relative;
}

.cont:after {
  position: absolute;
  font-weight: bold;
  display: block;
  height: 160px;
  width: 160px;
  left: 50%;
  top: 50%;
  content: attr(data-pct) "%";
  margin-top: -80px;
  margin-left: -80px;
  border-radius: 100%;
  line-height: 160px;
  font-size: 2em;
}

/***************** End of result Page *****************/
/***************** Evaluation Page *****************/
.evaluation-table tbody {
  background-color: #f4f7fc;
}

.evaluation-table .evaluate-input {
  width: unset !important;
  text-align: center;
  margin: auto;
  font-weight: bold;
}

/***************** End of Evaluation Page *****************/
/***************** Form Page *****************/
.form-box__bg {
  background-image: url(../images/form-image.jpg);
  background-position: center;
  background-size: cover;
}

.form-box .form-bg {
  background-color: #f1f0f3;
}

/***************** End of Form Page *****************/
/*# sourceMappingURL=index.css.map */