/* Google Fonts Import Link */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --primary-color: #00bc8b;
  --secondary-color: #f3be00;
  --accent-color: #ff5252;
  --blue: #037bff;
  --white: #fff;
  --black: #000;
  --primary-font: "Poppins";
}

/* Project Report Page Start */
#project_report {
  padding: 0px 30px 0px 45px;
}

.project_report_user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.project_cpmpliance_user {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.project_cpmpliance_user_avatar {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  margin-right: 15px;
}

.project_cpmpliance_user_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.project_cpmpliance_user_content h5 {
  margin-bottom: 5px;
  font-family: var(--primary-font);
  font-size: 1.2em;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
}

.project_cpmpliance_user_content p {
  margin-bottom: 0;
  font-family: var(--primary-font);
  font-size: 1em;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
}

.project_user_info {
  display: flex;
  align-items: center;
}

.project_user_info p {
  color: rgba(0, 0, 0, 0.8);
  font-family: var(--primary-font);
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 0;
}

.project_user_info p span {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
}

.project_user_info p:last-child {
  margin-left: 40px;
}

/* Project Report Chart Start */

.project_table_title_head h5 {
  color: rgba(30, 39, 73, 0.7);
  font-family: var(--primary-font);
  font-size: 1em;
  font-weight: 600;
}

.project_table_title_head h5 i {
  font-size: 0.8em;
}

.project_table_chart_labels {
  margin-top: 28px;
}

.project_table_chart_labels .label_items {
  height: 45px;
  display: flex;
  align-items: center;
  /* line-height: 45px; */
  padding-left: 10px;
}

.project_table_chart_labels .label_items img {
  width: 24px;
}

.project_table_chart_labels .label_items span {
  color: rgba(0, 0, 0, 0.9);
  font-family: var(--primary-font);
  font-size: 0.9em;
  padding-left: 6px;
  font-weight: 500;
}

.project_table_chart_btn button {
  color: var(--blue);
  font-family: var(--primary-font);
  font-size: 1em;
  font-weight: 400;
  border: none;
  outline: none;
  background: transparent;
  margin-left: 12px;
  margin-top: 10px;
}

.project_table_chart_btn button span {
  margin-right: 3px;
}

.project_table_chart_btn button .project_table_chart table td {
  width: 13%;
}

.table_row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}

.table_head .table_data {
  border: none !important;
  font-family: var(--primary-font);
  font-size: 1em;
  color: var(--black);
  font-weight: 600;
}
.table_head .table_row {
  border: none !important;
}

.table_row .table_data {
  position: relative;
  height: 45px;
  line-height: 45px;
  font-family: var(--primary-font);
  font-size: 1em;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: none;
  border-right: none;
}

.table_row .table_data span {
  position: absolute;
  top: 50%;
  color: var(--black);
  font-weight: 500;
  transform: translateY(-50%);
  right: 6px;
}

.table_row .table_data input {
  height: 30px;
  width: 75%;
  outline: none;
  border: none;
  float: left;
  padding-left: 10px;
  margin-top: 6px;
}

.table_row .table_data .chart_bar {
  position: absolute;
  height: 100%;
  background: #00bc8b;
  z-index: 99;
}

.table_row .table_data input::-webkit-input-placeholder {
  text-align: right;
  color: rgba(30, 39, 73, 0.4);
}

.table_row .table_data:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.table_row:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.chart_slider img {
  position: absolute;
  right: -10px;
  top: -15px;
  height: 440%;
  z-index: 999;
}

.chart_slider b {
  position: absolute;
  top: -45px;
  right: -20px;
  color: var(--blue);
}

@media screen and (max-width: 1580px) {
  .project_table_title_head h5 {
    font-size: 0.8em;
  }

  .table_row .table_data {
    font-size: 0.8em;
  }

  .project_table_chart_labels .label_items img {
    width: 20px;
  }

  .project_table_chart_labels .label_items span {
    font-size: 0.6em;
  }

  .project_table_chart_btn button {
    font-size: 0.8em;
  }
}

/* Project Report Chart End */

/* Project Report Page End  */
