@charset "UTF-8";
:root,
[data-bs-theme=light] {
  --bs-primary: #1d8b8f;
}

@font-face {
  font-family: "Inter";
  src: url("../font/Inter-VariableFont_opsz,wght.ttf");
}
* {
  margin: 0;
  padding: 0;
  font-family: "Inter";
}

.sidebar-links {
  margin-top: 30px;
}

body.shrink .sidebar-links {
  margin-top: 0px !important;
}

.content_area {
  padding: 50px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropbtn * {
  pointer-events: none; /* Ensures inner elements don't block the button click */
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown.show .dropdown-content {
  display: block;
}

.login-page {
  height: 100lvh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-page .login-card {
  width: 400px;
}
.login-page .login-card .logo-container {
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #1d8b8f;
}
.login-page .login-card .logo-container img {
  width: 100px;
  margin-bottom: 30px;
}

.total_form_sec {
  padding: 50px;
}
.total_form_sec .copy_btn,
.total_form_sec .delete_btn {
  background-color: green;
  color: #fff;
  margin-top: 50px;
  height: 50px;
  float: right;
}
.total_form_sec .delete_btn {
  background: red;
}
.total_form_sec .form_card {
  background-color: #f7f7f7;
  padding: 30px;
  margin: 30px 0px;
}
.total_form_sec .head {
  text-align: center;
  color: #394b6a;
}
.total_form_sec .title {
  font-weight: 600;
}
.total_form_sec .radio_sec_one .radio_input {
  display: flex;
  align-items: center;
}
.total_form_sec .radio_sec_one .radio_input label {
  cursor: pointer;
}
.total_form_sec .radio_sec_one .radio_input .input-radio {
  box-shadow: 0px 0px 0px 1px #6d6d6d;
  font-size: 3em;
  width: 25px;
  height: 25px;
  margin-right: 7px;
  border: 4px solid #fff;
  background-clip: border-box;
  border-radius: 50%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: background-color 0.3s, box-shadow 0.3s;
}
.total_form_sec .radio_sec_one .radio_input label {
  display: flex;
  margin: 10px 0px;
  font-weight: 600;
  font-size: 12px;
  align-items: center;
}
.total_form_sec .radio_sec_one .radio_input label:last-child {
  display: flex;
  margin-left: 20px;
}
.total_form_sec .radio_sec_one .input-radio.on:checked {
  box-shadow: 0px 0px 0px 4px #00eb27;
  background-color: #51ff6e;
}
.total_form_sec .radio_sec_one .input-radio.off:checked {
  box-shadow: 0px 0px 0px 4px #eb0000;
  background-color: #ff5151;
}
.total_form_sec .form_sec {
  margin-top: 20px;
}
.total_form_sec .form_sec label {
  font-weight: 600;
  color: #000;
  font-size: 14px;
}
.total_form_sec .form_sec textarea {
  width: 100%;
  resize: none;
  height: 200px;
  border: none;
  outline: none;
  box-shadow: none;
  color: #394b6a;
}
.total_form_sec .form_sec input,
.total_form_sec .form_sec select {
  border: none;
  box-shadow: none;
  outline: none;
  color: #000;
  font-weight: 500;
  height: 50px;
  font-size: 14px;
  padding-right: 30px;
}
.total_form_sec .form_sec input::-moz-placeholder, .total_form_sec .form_sec select::-moz-placeholder {
  color: #8c8f8f;
  font-size: 12px;
  font-weight: 400;
}
.total_form_sec .form_sec input::placeholder,
.total_form_sec .form_sec select::placeholder {
  color: #8c8f8f;
  font-size: 12px;
  font-weight: 400;
}
.total_form_sec .form_sec input::-webkit-inner-spin-button,
.total_form_sec .form_sec select::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.total_form_sec .form_sec2 label {
  font-weight: 600;
  color: #000;
  font-size: 14px;
}
.total_form_sec .form_sec2 textarea {
  width: 100%;
  resize: none;
  height: 200px;
  border: none;
  outline: none;
  box-shadow: none;
  color: #394b6a;
}
.total_form_sec .form_sec2 input,
.total_form_sec .form_sec2 select {
  border: none;
  box-shadow: none;
  outline: none;
  color: #000;
  font-weight: 500;
  height: 50px;
  font-size: 14px;
}
.total_form_sec .form_sec2 input::-moz-placeholder, .total_form_sec .form_sec2 select::-moz-placeholder {
  color: #8c8f8f;
  font-size: 12px;
  font-weight: 400;
}
.total_form_sec .form_sec2 input::placeholder,
.total_form_sec .form_sec2 select::placeholder {
  color: #8c8f8f;
  font-size: 12px;
  font-weight: 400;
}
.total_form_sec .form_sec2 input::-webkit-inner-spin-button,
.total_form_sec .form_sec2 select::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.total_form_sec .upload_sec_one {
  width: 100%;
  height: 200px;
  background-color: #fff;
  position: relative;
}
.total_form_sec .upload_sec_one .header_sec {
  background-color: red;
  padding: 5px;
}
.total_form_sec .upload_sec_one .header_sec h6 {
  text-align: center;
  color: #fff;
  margin-bottom: 0;
}
.total_form_sec .upload_sec_one .upload__box {
  padding: 0px;
  width: 100%;
}
.total_form_sec .upload_sec_one .upload__inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.total_form_sec .upload_sec_one .upload__btn {
  display: inline-block;
  font-weight: 600;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid;
  background-color: #4045ba;
  border-color: #4045ba;
  line-height: 26px;
  font-size: 14px;
  position: absolute;
  top: 0;
  height: 200px;
  opacity: 0;
}
.total_form_sec .upload_sec_one .upload__btn:hover {
  background-color: unset;
  color: #4045ba;
  transition: all 0.3s ease;
}
.total_form_sec .upload_sec_one .upload__btn-box {
  margin-bottom: 0px;
  width: 100%;
}
.total_form_sec .upload_sec_one .upload__img-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.total_form_sec .upload_sec_one .upload__img-box {
  width: 180px;
  padding: 0 10px;
  margin: auto;
}
.total_form_sec .upload_sec_one .upload__img-close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: center;
  line-height: 24px;
  z-index: 1;
  cursor: pointer;
}
.total_form_sec .upload_sec_one .upload__img-close:after {
  content: "✖";
  font-size: 14px;
  color: white;
}
.total_form_sec .upload_sec_one .img-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-bottom: 100%;
}
.total_form_sec .upload_sec_two {
  width: 100%;
  height: 200px;
  background-color: #fff;
  position: relative;
}
.total_form_sec .upload_sec_two .header_sec {
  background-color: green;
  padding: 5px;
}
.total_form_sec .upload_sec_two .header_sec h6 {
  text-align: center;
  color: #fff;
  margin-bottom: 0;
}
.total_form_sec .upload_sec_two .upload__box {
  padding: 0px;
  width: 100%;
}
.total_form_sec .upload_sec_two .upload__inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.total_form_sec .upload_sec_two .upload__btn {
  display: inline-block;
  font-weight: 600;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid;
  background-color: #4045ba;
  border-color: #4045ba;
  line-height: 26px;
  font-size: 14px;
  position: absolute;
  top: 0;
  height: 200px;
  opacity: 0;
}
.total_form_sec .upload_sec_two .upload__btn:hover {
  background-color: unset;
  color: #4045ba;
  transition: all 0.3s ease;
}
.total_form_sec .upload_sec_two .upload__btn-box {
  margin-bottom: 0px;
  width: 100%;
}
.total_form_sec .upload_sec_two .upload__img-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.total_form_sec .upload_sec_two .upload__img-box {
  width: 180px;
  padding: 0 10px;
  margin: auto;
}
.total_form_sec .upload_sec_two .upload__img-close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: center;
  line-height: 24px;
  z-index: 1;
  cursor: pointer;
}
.total_form_sec .upload_sec_two .upload__img-close:after {
  content: "✖";
  font-size: 14px;
  color: white;
}
.total_form_sec .upload_sec_two .img-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-bottom: 100%;
}
.total_form_sec .custom-select {
  position: relative;
  margin-top: 20px;
}
.total_form_sec select {
  -moz-appearance: none;
       appearance: none;
  /*  safari  */
  -webkit-appearance: none;
  /*  other styles for aesthetics */
  width: 100%;
  font-size: 16px;
  padding: 0.675em 6em 14.5px 1em;
  background-color: #fff;
  border: none;
  border-radius: 0.25rem;
  color: #000;
  cursor: pointer;
}
.total_form_sec .custom-select::before,
.total_form_sec .custom-select::after {
  --size: 0.3rem;
  content: "";
  position: absolute;
  right: 1rem;
  pointer-events: none;
}
.total_form_sec .custom-select::before {
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-bottom: var(--size) solid black;
  top: 60%;
}
.total_form_sec .custom-select::after {
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-top: var(--size) solid black;
  top: 70%;
}
.total_form_sec .custom-select.select2-form::before,
.total_form_sec .custom-select.select2-form::after {
  display: none !important;
}
.total_form_sec .table_select .custom-select {
  position: relative;
  margin-top: 0px !important;
}
.total_form_sec .table_select select {
  -moz-appearance: none;
       appearance: none;
  /*  safari  */
  -webkit-appearance: none;
  /*  other styles for aesthetics */
  width: 100%;
  font-size: 16px;
  padding: 0.675em 6em 14.5px 1em;
  background-color: #fff;
  border: none;
  border-radius: 0.25rem;
  color: #000;
  cursor: pointer;
  padding-right: 30px;
}
.total_form_sec .table_select .custom-select::before,
.total_form_sec .table_select .custom-select::after {
  --size: 0.3rem;
  content: "";
  position: absolute;
  right: 1rem;
  pointer-events: none;
}
.total_form_sec .table_select .custom-select::before {
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-bottom: var(--size) solid black;
  top: 42%;
}
.total_form_sec .table_select .custom-select::after {
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-top: var(--size) solid black;
  top: 56%;
}
.total_form_sec .custom-select.select2-form::before,
.total_form_sec .custom-select.select2-form::after {
  display: none !important;
}
@keyframes flip-in {
  from {
    opacity: 0;
    transform: rotateX(90deg);
  }
  to {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
@keyframes flip-out {
  from {
    opacity: 1;
    transform: rotateX(0deg);
  }
  to {
    opacity: 0;
    transform: rotateX(90deg);
  }
}
.total_form_sec .total_date_sec header {
  width: 100%;
  height: 60px;
  background-color: teal;
  line-height: 60px;
}
.total_form_sec .total_date_sec header h1 {
  margin: 0;
  padding: 0 28px;
  color: #fff;
}
.total_form_sec .total_date_sec section {
  padding: 0px;
}
.total_form_sec .total_date_sec form {
  padding: 50px;
  background-color: #fff;
  box-shadow: 2px 2px 2px #aaa;
}
.total_form_sec .total_date_sec label {
  display: block;
  width: 100%;
  max-width: 600px;
  margin-bottom: 7px;
}
.total_form_sec .total_date_sec label > span {
  width: 100%;
}
.total_form_sec .total_date_sec label > input {
  width: 100%;
  height: 50px;
  padding: 0 7px;
  background-color: #fff;
  border: none;
  border-radius: 3px;
  line-height: 28px;
  transition: 0.3s;
}
.total_form_sec .total_date_sec label > input:focus {
  outline: none;
  box-shadow: none;
}
.total_form_sec .total_date_sec label > input[type=date] {
  cursor: pointer;
}
.total_form_sec .total_date_sec div.date-picker {
  position: relative;
  z-index: 1;
  max-width: 600px;
  perspective: 1000px;
}
.total_form_sec .total_date_sec div.date-picker label div.default-blocker {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 56px;
  height: 28px;
}
.total_form_sec .total_date_sec div.date-picker div.date-picker-container {
  display: none;
  position: absolute;
  z-index: 1;
  top: 47px;
  left: 0;
  width: 254px;
  background-color: #fff;
  border: 1px solid #020202;
  opacity: 0;
  transform: rotateX(90deg);
  animation: 0.3s flip-in forwards;
}
.total_form_sec .total_date_sec div.date-picker div.date-picker-container.active {
  display: block;
}
.total_form_sec .total_date_sec .active {
  z-index: 10000 !important;
}
.total_form_sec .total_date_sec div.date-picker div.date-picker-container.active.closing {
  animation: 0.3s flip-out forwards;
}
.total_form_sec .total_date_sec .buttons {
  display: table;
}
.total_form_sec .total_date_sec .buttons .control,
.total_form_sec .total_date_sec .buttons .month {
  display: table-cell;
  vertical-align: top;
  line-height: 28px;
}
.total_form_sec .total_date_sec button {
  display: inline-block;
  vertical-align: top;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.total_form_sec .total_date_sec button.control {
  background-color: #fff;
  color: #333;
}
.total_form_sec .total_date_sec button.control:hover {
  background-color: darkgrey;
}
.total_form_sec .total_date_sec button.day {
  background-color: #c9d2d2;
  color: #fff;
}
.total_form_sec .total_date_sec button.day:hover {
  background-color: #000000;
  color: #fff;
}
.total_form_sec .total_date_sec button.day[disabled] {
  cursor: default;
}
.total_form_sec .total_date_sec button.day[disabled]:hover {
  background-color: teal;
}
.total_form_sec .total_date_sec p.month {
  display: inline-block;
  width: 140px;
  padding: 0 7px;
}
.total_form_sec .total_date_sec div.weekdays,
.total_form_sec .total_date_sec div.days {
  padding: 0 28px;
}
.total_form_sec .total_date_sec div.weekdays {
  display: table;
}
.total_form_sec .total_date_sec div.weekdays p {
  display: table-cell;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
}
.total_form_sec .total_date_sec .right {
  float: right;
}
.total_form_sec .total_date_sec .flip-container {
  perspective: 1000px;
}
.total_form_sec .total_date_sec .flip-out {
  width: 100%;
  height: 200px;
  background-color: #fff;
  transform: rotateX(90deg);
  position: absolute;
  display: none;
}
.total_form_sec .date_label {
  margin-top: 24px;
}
.total_form_sec .sub_head {
  color: #394b6a;
  margin-top: 50px;
}
.total_form_sec .input_table {
  vertical-align: middle;
  margin-top: 30px;
}
.total_form_sec .input_table .serial_col {
  text-align: center;
}
.total_form_sec .input_table .filename_preview {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-direction: column-reverse;
}
.total_form_sec .input_table .filename_preview input[type=file] {
  position: absolute;
  opacity: 0;
  max-width: 100px;
}
.total_form_sec .input_table .filename_preview input:focus + label {
  outline: 2px solid;
}
.total_form_sec .input_table .filename_preview .file_label {
  background-color: #394b6a;
  padding: 5px 10px;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
}
.total_form_sec .input_table .filename_preview .file_preview {
  margin-left: 10px;
  max-width: 300px;
  font-weight: 600;
  font-size: 12px;
}
.total_form_sec .preventive_table {
  vertical-align: middle;
}
.total_form_sec .preventive_table thead tr th {
  text-align: center;
}
.total_form_sec .preventive_table tbody tr td {
  text-align: center;
}
.total_form_sec .preventive_table .radio_btn_sec input[type=radio] {
  position: absolute;
  visibility: hidden;
  display: none;
}
.total_form_sec .preventive_table .radio_btn_sec label {
  color: #332f35;
  display: flex;
  cursor: pointer;
  font-weight: bold;
  padding: 5px 8px;
  font-size: 12px;
  align-items: center;
  justify-content: center;
}
.total_form_sec .preventive_table .radio_btn_sec input[type=radio]:checked + label.yes {
  color: #fff;
  background: green;
}
.total_form_sec .preventive_table .radio_btn_sec input[type=radio]:checked + label.no {
  color: #fff;
  background: tomato;
}
.total_form_sec .preventive_table .radio_btn_sec .radio-group {
  border: solid 3px black;
  display: inline-block;
  margin: 2px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.total_form_sec .chart_sec img {
  width: 70%;
}
.total_form_sec .save_btn {
  background-color: #394b6a;
  color: #fff;
  border: none;
  box-shadow: none;
  outline: none;
  margin-top: 20px;
  font-size: 12px;
}
.total_form_sec .save_btn2 {
  background-color: green;
  color: #fff;
  border: none;
  box-shadow: none;
  outline: none;
  margin-top: 52px;
  font-size: 12px;
  height: 46px;
}
.total_form_sec .submit_btn {
  background-color: green;
  color: #fff;
  border: none;
  box-shadow: none;
  outline: none;
  margin-top: 20px;
  font-size: 12px;
}
.total_form_sec .filename_preview {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
}
.total_form_sec .filename_preview input[type=file] {
  position: absolute;
  opacity: 0;
}
.total_form_sec .filename_preview input:focus + label {
  outline: 2px solid;
}
.total_form_sec .filename_preview .file_label {
  background-color: #394b6a;
  padding: 5px 10px;
  border-radius: 5px;
  color: #fff;
  font-size: 10px;
}
.total_form_sec .filename_preview .file_preview {
  margin-left: 10px;
  font-weight: 600;
  font-size: 10px;
}
.total_form_sec .filename_previewtwo {
  display: flex;
  align-items: flex-start;
  flex-direction: column-reverse;
  justify-content: space-between;
}
.total_form_sec .filename_previewtwo input[type=file] {
  position: absolute;
  opacity: 0;
}
.total_form_sec .filename_previewtwo input:focus + label {
  outline: 2px solid;
}
.total_form_sec .filename_previewtwo .file_label {
  background-color: #394b6a;
  padding: 5px 5px;
  border-radius: 5px;
  color: #fff;
  font-size: 10px;
}
.total_form_sec .filename_previewtwo .file_preview {
  max-width: 300px;
  font-weight: 600;
  font-size: 12px;
  text-align: left;
}
.total_form_sec .status_viewsec {
  display: flex;
}
.total_form_sec .status_viewsec .status_viewsec1 {
  width: 20%;
  background-color: #f7caac;
}
.total_form_sec .status_viewsec .status_viewsec2 {
  width: 20%;
  background-color: #ffe598;
}
.total_form_sec .status_viewsec .status_viewsec3 {
  width: 20%;
  background-color: #ed7d31;
}
.total_form_sec .chart_sec {
  transform: scale(0.7);
}
.total_form_sec .chart_sec .top_row {
  display: flex;
  justify-content: center;
}
.total_form_sec .chart_sec .top_row .first_categroy_sec {
  margin-right: 150px;
}
.total_form_sec .chart_sec .top_row .first_categroy_sec .header {
  color: #000;
  background-color: #9bddfe;
  padding: 5px 25px;
  border-radius: 15px;
  font-size: 14px;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 0;
  margin-left: 40px;
  font-weight: bold;
}
.total_form_sec .chart_sec .top_row .first_categroy_sec ul {
  position: relative;
}
.total_form_sec .chart_sec .top_row .first_categroy_sec ul::before {
  content: "";
  position: absolute;
  width: 377px;
  height: 2px;
  background-color: #0a40ac;
  left: -15%;
  bottom: 39%;
  transform: rotate(70deg);
  z-index: 1;
}
.total_form_sec .chart_sec .top_row .first_categroy_sec ul li {
  list-style-type: none;
  margin-top: 25px;
  font-size: 14px;
  text-align: right;
  position: relative;
  height: 21px;
}
.total_form_sec .chart_sec .top_row .first_categroy_sec ul li p {
  position: absolute;
  bottom: 0;
  margin-bottom: 0;
  white-space: nowrap;
  right: 0;
}
.total_form_sec .chart_sec .top_row .first_categroy_sec ul li .list_line1 {
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: #0a40ac;
  right: -71%;
  top: 30px;
}
.total_form_sec .chart_sec .top_row .first_categroy_sec ul li .list_line2 {
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: #0a40ac;
  right: -59%;
  top: 30px;
}
.total_form_sec .chart_sec .top_row .first_categroy_sec ul li .list_line3 {
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: #0a40ac;
  right: -51%;
  top: 30px;
}
.total_form_sec .chart_sec .top_row .first_categroy_sec ul li .list_line4 {
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: #0a40ac;
  right: -45%;
  top: 30px;
}
.total_form_sec .chart_sec .top_row .first_categroy_sec ul li .list_line5 {
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: #0a40ac;
  right: -40%;
  top: 30px;
}
.total_form_sec .chart_sec .top_row .first_categroy_sec ul li .list_line6 {
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: #0a40ac;
  right: -37%;
  top: 30px;
}
.total_form_sec .chart_sec .top_row .first_categroy_sec ul li .list_line11 {
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: #0a40ac;
  right: -28%;
  top: 30px;
}
.total_form_sec .chart_sec .top_row .first_categroy_sec ul li .list_line21 {
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: #0a40ac;
  right: -26%;
  top: 30px;
}
.total_form_sec .chart_sec .top_row .first_categroy_sec ul li .list_line31 {
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: #0a40ac;
  right: -24%;
  top: 30px;
}
.total_form_sec .chart_sec .top_row .first_categroy_sec ul li .list_line41 {
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: #0a40ac;
  right: -22%;
  top: 30px;
}
.total_form_sec .chart_sec .top_row .first_categroy_sec ul li .list_line51 {
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: #0a40ac;
  right: -20%;
  top: 30px;
}
.total_form_sec .chart_sec .top_row .first_categroy_sec ul li .list_line61 {
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: #0a40ac;
  right: -19%;
  top: 30px;
}
.total_form_sec .chart_sec .top_row .first_categroy_sec ul li:nth-child(1) {
  margin-right: 75px;
}
.total_form_sec .chart_sec .top_row .first_categroy_sec ul li:nth-child(2) {
  margin-right: 60px;
}
.total_form_sec .chart_sec .top_row .first_categroy_sec ul li:nth-child(3) {
  margin-right: 45px;
}
.total_form_sec .chart_sec .top_row .first_categroy_sec ul li:nth-child(4) {
  margin-right: 30px;
}
.total_form_sec .chart_sec .top_row .first_categroy_sec ul li:nth-child(5) {
  margin-right: 15px;
}
.total_form_sec .chart_sec .bottom_row {
  display: flex;
  justify-content: center;
}
.total_form_sec .chart_sec .bottom_row .first_categroy_sec {
  margin-right: 150px;
}
.total_form_sec .chart_sec .bottom_row .first_categroy_sec .header {
  color: #000;
  background-color: #9bddfe;
  padding: 5px 25px;
  border-radius: 15px;
  font-size: 14px;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 0;
  margin-top: 35px;
  font-weight: bold;
}
.total_form_sec .chart_sec .bottom_row .first_categroy_sec ul {
  position: relative;
}
.total_form_sec .chart_sec .bottom_row .first_categroy_sec ul::before {
  content: "";
  position: absolute;
  width: 363px;
  height: 2px;
  background-color: #0a40ac;
  left: -19%;
  bottom: 59%;
  transform: rotate(110deg);
  z-index: 1;
}
.total_form_sec .chart_sec .bottom_row .first_categroy_sec ul li {
  list-style-type: none;
  margin-top: 20px;
  font-size: 14px;
  text-align: right;
  position: relative;
  height: 21px;
}
.total_form_sec .chart_sec .bottom_row .first_categroy_sec ul li p {
  position: absolute;
  bottom: 0;
  margin-bottom: 0;
  white-space: nowrap;
  right: 0;
}
.total_form_sec .chart_sec .bottom_row .first_categroy_sec ul li .list_line1 {
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: #0a40ac;
  right: -9%;
  top: 30px;
}
.total_form_sec .chart_sec .bottom_row .first_categroy_sec ul li .list_line2 {
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: #0a40ac;
  right: -10%;
  top: 30px;
}
.total_form_sec .chart_sec .bottom_row .first_categroy_sec ul li .list_line3 {
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: #0a40ac;
  right: -11%;
  top: 30px;
}
.total_form_sec .chart_sec .bottom_row .first_categroy_sec ul li .list_line4 {
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: #0a40ac;
  right: -12%;
  top: 30px;
}
.total_form_sec .chart_sec .bottom_row .first_categroy_sec ul li .list_line5 {
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: #0a40ac;
  right: -16%;
  top: 30px;
}
.total_form_sec .chart_sec .bottom_row .first_categroy_sec ul li .list_line6 {
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: #0a40ac;
  right: -20%;
  top: 30px;
}
.total_form_sec .chart_sec .bottom_row .first_categroy_sec ul li .list_line11 {
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: #0a40ac;
  right: -28%;
  top: 30px;
}
.total_form_sec .chart_sec .bottom_row .first_categroy_sec ul li .list_line21 {
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: #0a40ac;
  right: -26%;
  top: 30px;
}
.total_form_sec .chart_sec .bottom_row .first_categroy_sec ul li .list_line31 {
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: #0a40ac;
  right: -24%;
  top: 30px;
}
.total_form_sec .chart_sec .bottom_row .first_categroy_sec ul li .list_line41 {
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: #0a40ac;
  right: -22%;
  top: 30px;
}
.total_form_sec .chart_sec .bottom_row .first_categroy_sec ul li .list_line51 {
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: #0a40ac;
  right: -20%;
  top: 30px;
}
.total_form_sec .chart_sec .bottom_row .first_categroy_sec ul li .list_line61 {
  position: absolute;
  width: 150px;
  height: 2px;
  background-color: #0a40ac;
  right: -19%;
  top: 30px;
}
.total_form_sec .chart_sec .bottom_row .first_categroy_sec ul li:nth-child(2) {
  margin-right: 15px;
}
.total_form_sec .chart_sec .bottom_row .first_categroy_sec ul li:nth-child(3) {
  margin-right: 30px;
}
.total_form_sec .chart_sec .bottom_row .first_categroy_sec ul li:nth-child(4) {
  margin-right: 45px;
}
.total_form_sec .chart_sec .bottom_row .first_categroy_sec ul li:nth-child(5) {
  margin-right: 60px;
}
.total_form_sec .chart_sec .bottom_row .first_categroy_sec ul li:nth-child(6) {
  margin-right: 75px;
}
.total_form_sec .chart_sec .center_row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0px;
  background: #f7f7f7;
  z-index: 10 !important;
}
.total_form_sec .chart_sec .center_row .line {
  width: 93%;
  height: 2px;
  background-color: #0a40ac;
  z-index: 2;
  margin-top: 3px;
}
.total_form_sec .chart_sec .center_row .problem {
  width: 8%;
  height: 60px;
  background-color: #9bddfe;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  flex-wrap: wrap;
  text-align: center;
  padding: 2px 4px;
}
.total_form_sec .chart_sec .center_row .problem p {
  margin-bottom: 0;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
  color: #000;
}

.disabled {
  cursor: not-allowed !important;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

.graph-sec {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  transform: scale(0.7);
  margin-top: -50px;
}
.graph-sec .button-sec span {
  width: 150px;
  height: 70px;
  background: #9bddfe;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: black;
  font-weight: bold;
}
.graph-sec .graph-container-sec {
  width: 80%;
}
.graph-sec .graph-container-sec .graph-holder .line-middle {
  background: #1f41a7;
  height: 3px;
  width: 120%;
}
.graph-sec .graph-container-sec .graph-holder .graph-container {
  display: flex;
  gap: 50px;
  width: 100%;
  justify-content: space-around;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec {
  position: relative;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec .graph-item {
  position: relative;
  margin-bottom: 20px;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec .graph-item p {
  margin-bottom: 0;
  border-bottom: 2px solid #9bddfe;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 200px;
  min-width: 200px;
  height: 30px;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec .graph-item p span {
  font-size: 18px;
  font-weight: bold;
  line-height: 1px;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec .graph-item p span.effect {
  font-size: 25px;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec .graph-item p span.effect.direct {
  color: green;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec .graph-item p span.effect.potential {
  color: red;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec .graph-item p span.effect.no {
  color: blue;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec .graph-item.top {
  padding-right: 20px;
  text-align: right;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec .graph-item.top p {
  padding-right: 20px;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec .graph-item.top:nth-child(2) {
  margin-right: 50px;
  margin-left: -50px;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec .graph-item.top:nth-child(3) {
  margin-right: 40px;
  margin-left: -40px;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec .graph-item.top:nth-child(4) {
  margin-right: 27px;
  margin-left: -27px;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec .graph-item.top:nth-child(5) {
  margin-right: 15px;
  margin-left: -15px;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec .graph-item.top:nth-child(6) {
  margin-right: 3px;
  margin-left: -3px;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec .graph-item.top:nth-child(7) {
  margin-right: -10px;
  margin-left: 10px;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec .graph-item.bottom {
  padding-right: 20px;
  text-align: right;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec .graph-item.bottom p {
  padding-right: 20px;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec .graph-item.bottom:nth-child(2) {
  margin-right: -5px;
  margin-left: 5px;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec .graph-item.bottom:nth-child(3) {
  margin-right: 7px;
  margin-left: -7px;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec .graph-item.bottom:nth-child(4) {
  margin-right: 20px;
  margin-left: -20px;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec .graph-item.bottom:nth-child(5) {
  margin-right: 32px;
  margin-left: -32px;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec .graph-item.bottom:nth-child(6) {
  margin-right: 46px;
  margin-left: -46px;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec .graph-item.bottom:nth-child(7) {
  margin-right: 60px;
  margin-left: -60px;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec .graph-item-title {
  background: #9bddfe;
  padding: 10px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-weight: bold;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec.top .line {
  content: "";
  height: 90%;
  width: 3px;
  background-color: #9bddfe;
  position: absolute;
  transform: skew(15deg);
  bottom: 0;
  right: 45px;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec.top .graph-item-title {
  margin-bottom: 30px;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec.top .graph-item {
  margin-bottom: 20px;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec.bottom .line {
  content: "";
  height: 90%;
  width: 3px;
  background-color: #9bddfe;
  position: absolute;
  transform: skew(-15deg);
  top: 0;
  right: 45px;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec.bottom .graph-item {
  margin-top: 20px;
}
.graph-sec .graph-container-sec .graph-holder .graph-container .graph-tree-sec.bottom .graph-item-title {
  margin-top: 30px;
}

:root {
  --main-color: #3d5af1;
  --main-color-dark: #3651d4;
  --main-color-light: #5872f5;
  --text-color: #cfcde7;
}

body {
  min-height: 100vh;
  display: flex;
  position: relative;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

nav.sidebar,
nav.navbar {
  position: sticky;
  top: 0;
  left: 0;
  height: 100vh;
  background-color: #243544;
  width: 15%;
  padding: 1.8rem 0rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  transition: width 0.5s ease-in-out;
  z-index: 100;
}

main {
  color: #1f2027;
  display: flex;
  flex-direction: column;
}

main h1 {
  margin-bottom: 1rem;
}

main .copyright {
  margin-top: auto;
  font-size: 0.9rem;
}

main .copyright span {
  color: var(--main-color);
  font-weight: 500;
  cursor: pointer;
}

.sidebar-top {
  position: relative;
  display: flex;
  align-items: center;
  height: 100px;
}

.sidebar-top .logo {
  width: 40%;
  margin: auto;
}

.sidebar-top h3 {
  padding-left: 0.5rem;
  font-weight: 600;
  font-size: 1.15rem;
}

.shrink-btn {
  position: absolute;
  top: 14%;
  height: 50px;
  padding: 0 0.3rem;
  background-color: transparent;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: none;
  right: -4.65rem;
  transform: translateY(-50%) translateX(-8px);
  transition: 0.3s;
  padding: 15px;
  z-index: 100;
}

.shrink-btn i {
  line-height: 27px;
  transition: 0.3s;
  font-size: 28px;
}

.shrink-btn:hover {
  background-color: transparent;
}

nav:hover .shrink-btn,
.shrink-btn.hovered {
  opacity: 1;
  pointer-events: all;
}

.search {
  min-height: 2.7rem;
  background-color: var(--main-color-light);
  margin: 2rem 0.5rem 1.7rem;
  display: grid;
  grid-template-columns: 2.7rem 1fr;
  align-items: center;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
}

.search input {
  height: 100%;
  border: none;
  background: none;
  outline: none;
  color: #fff;
  caret-color: #fff;
  font-family: inherit;
}

.search input::-moz-placeholder {
  color: var(--text-color);
}

.search input::placeholder {
  color: var(--text-color);
}

.sidebar-links ul {
  position: relative;
  margin-top: 15px;
  padding-left: 0;
}

.sidebar-links li {
  position: relative;
  padding: 2.5px 0;
}

.sidebar-links a {
  color: var(--text-color);
  font-weight: 400;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  height: 53px;
}

.icon {
  font-size: 1.3rem;
  text-align: center;
  min-width: 3.7rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.icon i {
  grid-column: 1/2;
  grid-row: 1/2;
  transition: 0.3s;
}

.icon i:last-child {
  opacity: 0;
  color: #fff;
}

.sidebar-links a.active,
.sidebar-links a:hover {
  color: #fff;
}

.sidebar-links a .link {
  transition: opacity 0.3s 0.2s, color 0.3s;
}

.sidebar-links a.active i:first-child {
  opacity: 0;
}

.sidebar-links a.active i:last-child {
  opacity: 1;
}

.active-tab {
  width: 100%;
  height: 53px;
  background-color: #3597DA;
  position: absolute;
  top: 2.5px;
  left: 0;
  transition: top 0.3s;
}

.sidebar-links h4 {
  position: relative;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0 0.8rem;
  color: var(--text-color);
  letter-spacing: 0.5px;
  height: 45px;
  line-height: 45px;
  transition: opacity 0.3s 0.2s, height 0.5s 0s;
}

.sidebar-footer {
  position: relative;
  margin-top: auto;
}

.account {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--text-color);
  height: 53px;
  width: 3.7rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s 0s, color 0.3s 0s;
}

.account:hover {
  color: #fff;
}

.admin-user {
  display: flex;
  align-items: center;
}

.admin-profile {
  white-space: nowrap;
  max-width: 100%;
  transition: opacity 0.3s 0.2s, max-width 0.7s 0s ease-in-out;
  display: flex;
  align-items: center;
  flex: 1;
  overflow: hidden;
}

.admin-user img {
  width: 2.9rem;
  border-radius: 50%;
  margin: 0 0.4rem;
}

.admin-info {
  padding-left: 0.3rem;
}

.admin-info h3 {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
}

.admin-info h5 {
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--text-color);
  margin-top: 0.3rem;
  line-height: 1;
}

.log-out {
  display: flex;
  height: 40px;
  min-width: 2.4rem;
  background-color: var(--main-color-dark);
  color: var(--text-color);
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  border-radius: 10px;
  margin: 0 0.65rem;
  transition: color 0.3s;
}

.log-out:hover {
  color: #fff;
}

.tooltip {
  background-color: var(--main-color);
  position: absolute;
  right: -1.2rem;
  top: 0;
  transform: translateX(100%) translateY(-50%);
  padding: 0 0.8rem;
  font-size: 0.85rem;
  display: none;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  height: 30px;
  align-items: center;
  border-radius: 7px;
  box-shadow: 0 3px 10px -3px rgba(70, 46, 118, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  text-align: center;
  white-space: nowrap;
}

.tooltip span {
  grid-column: 1/2;
  grid-row: 1/2;
  opacity: 0;
  transition: 0.3s;
}

.tooltip span.show {
  opacity: 1;
}

.tooltip-element:hover ~ .tooltip {
  opacity: 1;
  pointer-events: all;
}

/* When the menu shrinks */
.hide {
  transition: opacity 0.3s 0.2s;
}

body.shrink nav {
  width: 5%;
}

body.shrink .hide {
  opacity: 0;
  pointer-events: none;
  transition-delay: 0s;
}

body.shrink .shrink-btn i {
  transform: rotate(-180deg);
}

body.shrink .sidebar-links h4 {
  height: 10px;
}

body.shrink .account {
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.3s 0.3s, color 0.3s 0s;
}

body.shrink .admin-profile {
  max-width: 0;
  transition: opacity 0.3s 0s, max-width 0.7s 0s ease-in-out;
}

body.shrink .tooltip {
  display: grid;
}

.main_div {
  position: relative;
  padding-top: 60px;
  width: 85%;
  margin-left: auto;
}
.main_div .top_bar {
  background-color: #1d8b8f;
  width: 100%;
  position: fixed;
  top: 0;
  display: flex;
  width: 100%;
  height: 90px;
  left: 15%;
  flex-direction: row;
  align-items: center;
  z-index: 99;
  padding-left: 5%;
  padding-right: 18%;
  justify-content: space-between;
  transition: 0.6s ease-in;
}
.main_div .top_bar .page_header {
  margin-bottom: 0;
}
.main_div .top_bar ul {
  margin-left: auto;
}
.main_div .top_bar .dropbtn {
  background-color: transparent;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  width: 200px;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: flex-end;
}
.main_div .top_bar .dropbtn h6 {
  margin-bottom: 0;
  margin-right: 10px;
}
.main_div .top_bar .dropbtn img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.main_div .top_bar .dropbtn img.avatar {
  width: 40px;
  height: 40px;
}
.main_div .top_bar .dropdown {
  position: relative;
  display: inline-block;
}
.main_div .top_bar .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.main_div .top_bar .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.main_div .top_bar .dropdown a:hover {
  background-color: #ddd;
}
.main_div .top_bar .show {
  display: block;
}

.menu-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: not-allowed;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-toggle::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 4px;
  background: #000;
  box-shadow: 0 8px 0 #000, 0 -8px 0 #000;
}

.profile {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-align: end;
}

.profile h3 {
  text-align: end;
  line-height: 1;
  margin-bottom: 4px;
  font-weight: 600;
}

.profile p {
  line-height: 1;
  font-size: 14px;
  opacity: 0.6;
}

.profile .img-box {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}

.profile .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* menu (the right one) */
.menu {
  position: absolute;
  top: calc(100% + 24px);
  right: 16px;
  width: 200px;
  min-height: 100px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  transition: 300ms;
}

.menu::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 14px;
  width: 20px;
  height: 20px;
  background: #fff;
  transform: rotate(45deg);
  z-index: -1;
}

.menu.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* menu links */
.menu ul {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 10;
  background: #fff;
}

.menu ul li {
  list-style: none;
}

.menu ul li:hover {
  background: #eee;
}

.menu ul li a {
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  gap: 6px;
}

.menu ul li a i {
  font-size: 1.2em;
}

body.shrink .main_div {
  width: 95%;
}

body.shrink .top_bar {
  background-color: #1d8b8f;
  position: fixed;
  top: 0;
  display: flex;
  width: 100% !important;
  height: 90px;
  flex-direction: row;
  align-items: center;
  z-index: 99;
  left: 2%;
  padding-left: 8%;
  padding-right: 2%;
  justify-content: space-between;
  transition: 0.6s ease-in;
}
body.shrink .top_bar .page_header {
  margin-bottom: 0;
}
body.shrink .top_bar ul {
  margin-left: auto;
}
body.shrink .top_bar .dropbtn {
  background-color: transparent;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  width: 200px;
  display: flex;
  align-items: center;
  position: relative;
}
body.shrink .top_bar .dropbtn h6 {
  margin-bottom: 0;
  margin-right: 10px;
}
body.shrink .top_bar .dropbtn img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
body.shrink .top_bar .dropbtn img.avatar {
  width: 40px;
  height: 40px;
}
body.shrink .top_bar .dropdown {
  position: relative;
  display: inline-block;
}
body.shrink .top_bar .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
body.shrink .top_bar .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
body.shrink .top_bar .dropdown a:hover {
  background-color: #ddd;
}
body.shrink .top_bar .show {
  display: block;
}

.grey_head {
  background: #d8d8d8 !important;
}

.header_text_one {
  text-align: left !important;
}

.total_report_sec a {
  text-decoration: underline;
}
.total_report_sec .nok_head {
  background: rgb(201, 36, 36);
  color: #fff;
}
.total_report_sec .ok_head {
  background: green;
  color: #fff;
}
.total_report_sec .report_header {
  text-align: center;
  font-weight: 600;
}
.total_report_sec .table_header {
  display: flex;
}
.total_report_sec .table_header table tbody tr th,
.total_report_sec .table_header table tbody tr td {
  border: 2px solid #000000;
}
.total_report_sec .table_header table tbody tr td {
  text-align: center;
  font-weight: 500;
}
.total_report_sec .problem_description_table .table_description_table thead tr th {
  white-space: nowrap;
  border: 2px solid #000000;
  text-align: center;
}
.total_report_sec .problem_description_table .table_description_table tbody tr td {
  border: 2px solid #000000;
}
.total_report_sec .problem_description_table .table_description_table tbody tr td .table_img {
  width: 100%;
}
.total_report_sec .containement_sec .containement_table thead tr th {
  white-space: nowrap;
  border: 2px solid #000000;
  text-align: left;
}
.total_report_sec .containement_sec .containement_table tbody tr td {
  border: 2px solid #000000;
  vertical-align: middle;
  text-align: left;
  font-weight: 500;
}
.total_report_sec .containement_sec .containement_table tbody tr .decription {
  width: 40%;
  text-align: left;
}
.total_report_sec .root_cause_analysis_sec .root_cause_analysis thead tr th {
  white-space: nowrap;
  border: 2px solid #000000;
  text-align: left;
}
.total_report_sec .root_cause_analysis_sec .root_cause_analysis tbody tr td {
  border: 2px solid #000000;
  vertical-align: middle;
  text-align: left;
  font-weight: 500;
}
.total_report_sec .root_cause_analysis_sec .root_cause_analysis tbody tr .ques_ans_data {
  text-align: left;
  width: 40%;
}
.total_report_sec .root_cause_Verification_sec .root_cause_Verification thead tr th {
  white-space: nowrap;
  border: 2px solid #000000;
  text-align: left;
}
.total_report_sec .root_cause_Verification_sec .root_cause_Verification tbody tr td {
  border: 2px solid #000000;
  vertical-align: middle;
  text-align: left;
  font-weight: 500;
}
.total_report_sec .root_cause_Verification_sec .root_cause_Verification tbody tr .ques_ans_data {
  text-align: left;
  width: 40%;
}
.total_report_sec .corrective_action .root_cause_Verification thead tr th {
  white-space: nowrap;
  border: 2px solid #000000;
  text-align: left;
}
.total_report_sec .corrective_action .root_cause_Verification tbody tr td {
  border: 2px solid #000000;
  vertical-align: middle;
  text-align: left;
  font-weight: 500;
  white-space: nowrap;
}
.total_report_sec .corrective_action .root_cause_Verification tbody tr .ques_ans_data {
  text-align: left;
  width: 40%;
  white-space: wrap;
}
.total_report_sec .verified_table_sec {
  display: flex;
}
.total_report_sec .verified_table_sec .verify_table tbody tr th {
  border: 1px solid #000000;
}
.total_report_sec .verified_table_sec .verify_table.graph-table {
  max-width: 150px;
  margin-top: 25px;
}
.total_report_sec .verified_table_sec .verify_table.graph-table tbody tr th,
.total_report_sec .verified_table_sec .verify_table.graph-table tbody tr td {
  font-size: 0.7rem;
  padding: 0;
  vertical-align: middle;
  text-align: center;
}

.ok_not_icon {
  display: flex;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin: 0 auto;
}

.table_card {
  padding: 20px;
  background-color: #f7f7f7;
  border-radius: 5px;
  box-shadow: 0px 0px 9px 3px rgba(211, 211, 211, 0.7803921569);
}

table.dataTable {
  font-size: 0.9rem;
}

.dt-search {
  display: none;
}

div#dataTable_wrapper {
  width: 100%;
  overflow-x: scroll;
}

div#dataTable_info {
  font-size: 10px;
}

.dt-paging {
  font-size: 10px;
}

table.dataTable .btn-sm {
  font-size: 8px;
  padding: 0.2rem 0.3rem;
}
table.dataTable .dt-orderable-none .dt-column-order {
  display: none;
}
table.dataTable thead tr {
  background: #1d8b8f;
  color: white;
}
table.dataTable span.dt-column-title {
  font-size: 10px;
  text-align: left !important;
}
table.dataTable .capa-number-field {
  white-space: nowrap;
}
table.dataTable td {
  font-size: 12px;
}
table.dataTable .table-search {
  width: 100px;
  padding: 0 0.3rem;
  font-size: 10px;
}

@media print {
  .navbar {
    display: none !important;
  }
  nav {
    display: none !important;
  }
  .main_div {
    width: 100%;
    padding-top: 0;
  }
  .graph-sec-printable-container {
    page-break-before: always;
  }
  .graph-sec {
    width: 1200px;
    margin: auto;
    margin-left: -100px;
    margin-top: 0;
  }
  .report_header {
    margin-bottom: 30px;
    font-weight: bolder;
  }
}
.filename_preview > input {
  width: 100px;
}

.total_report_sec .table_header table.td-left tbody tr td {
  text-align: left;
}

table .badge {
  width: 100px;
}
table .date {
  width: 100px;
  display: block;
}
table .link {
  width: 200px;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
}
table .link.prevent {
  width: 100px;
}
table .responsible {
  width: 200px;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
}
table .responsible.prevent {
  width: 100px;
}
table .sno {
  width: 50px;
  display: block;
  text-align: center;
}
table .content {
  width: 300px;
  display: block;
}
table .prevent-document {
  width: 200px;
  display: block;
}
table .prevent-updated {
  width: 120px;
  display: block;
}
table .prevent-remarks {
  width: 100px;
  display: block;
}

@media print {
  table .content {
    word-break: break-all;
    white-space: wrap;
  }
  table .prevent-updated {
    width: 50px;
  }
  table .prevent-document,
  table .prevent-updated,
  table .prevent-remarks,
  table .prevent {
    word-break: break-all;
    white-space: wrap;
  }
}/*# sourceMappingURL=style.css.map */