/* ============================================= Tooltip CSS ============================================= */
.custom_tooltip {
  position: absolute;
  background-color: #FFF9F2;
  top: 0;
  z-index: 11;
  left: 90px;
  border-radius: 8px;
}

.custom_tooltip .custom_tooltip_container {
  padding: 15px 28px;
  border-radius: 8px;
}

.custom_tooltip .custom_tooltip_container:after {
  content: "";
  position: absolute;
  background-image: url(../image/svg_icons/tooltip_arrow.svg);
  width: 9px;
  height: 16px;
  top: 20px;
  left: -8px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 5;
}

.custom_tooltip p {
  font-weight: 500;
  color: #000000;
  margin: 0;
}

.custom_tooltip span.inprogress {
  color: #EC754B;
}

.custom_tooltip span.complete {
  color: #67BC93;
}

/* ============================================= Login Screen ============================================= */
.login_page .login_box.login_left {
  width: 50%;
}

.login_page .login_box.login_right {
  width: 50%;
  height: 100%;
  background: #FFF9F2;
}
.login_page .water_fill {
  max-width: 100%;
  align-items: center;
  align-content: center ;
  background: #FFF9F2;
}
.login_page .login_box.login_left .contianer_box {
  max-width: 90%;
  width: 100%;
  padding: 0 15px;
}

.login_page .login_box.login_left .contianer_box .box_img {
  margin-bottom: 100px;
}

.login_page .login_box.login_right .login_right_container {
  background-image: url(../image/login_page/login_bg.svg);
  background-position: bottom right -22px;
  background-repeat: no-repeat;
  background-size: 45%;
}


.login_page .login_box .right_text_box {
  padding: 0 0px 0 75px;
  max-width: 490px;
}

.login_page .login_box .right_text_box h2 {
  font-weight: 500;
  font-size: 60px;
  line-height: 70px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 20px;
}

.login_page .login_box .right_text_box h2 strong {
  font-weight: 500;
  color: #AF4EA6;
}

.login_page .login_box .right_text_box p {
  font-size: 24px;
  line-height: 20px;
  text-transform: capitalize;
  color: #000000;
  opacity: 0.5;
  padding-left: 5px;
}

.login_page .login_box .right_progress_box {
  padding: 0 0px 0 75px;
  position: absolute;
  bottom: 40px;
}

.login_page .login_box .right_progress_box .box_content {
  width: 125px;
  margin-right: 20px;
}

.login_page .login_box .right_progress_box .box_content:last-of-type {
  margin-right: 0;
}

.login_page .login_box .right_progress_box .box_content .green_text {
  font-weight: 500;
  font-size: 60px;
  line-height: 70px;
  color: #67BC93;
  margin-bottom: -8px;
}

.login_page .login_box .right_progress_box .box_content .gray_text {
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
  opacity: 0.5;
}
/* ============================================= Result Screen ============================================= */
.result_screen{
  background: #FFFFFF;
}

.result_screen .graph_bg{
  background: #303F93;
}

@media print {

  @page {
    size: A4 portrait;
    margin: 10mm;
  }


  table {}

  tr {
    page-break-inside: avoid;
  }

  td {
    font-size: 18px;
  }

  thead {
    display: table-header-group
  }

  tfoot {
    display: table-footer-group
  }

  .avoidBreak {
    border: 2px solid;
    border-color: #F6F6F9;
    page-break-inside: avoid;
  }

  .page-break {
    page-break-after: always;
  }
}