@charset "UTF-8";
.container {
  padding-right: 1px;
  padding-left: 1px;
  margin-right: auto;
  margin-left: auto;
}

.chart_grid_container {
  display: grid;
  grid-template-columns: repeat(3, 33%);
  grid-template-rows: 22rem 25rem auto 22rem;
  gap: 1.2rem;
}
.chart_grid_container .table_block {
  text-align: center;
  margin: 0rem 0rem;
}
.chart_grid_container .table th {
  white-space: pre-wrap !important;
}
.chart_grid_container td {
  min-width: auto !important;
  max-height: auto !important;
}
.chart_grid_container .table {
  overflow-wrap: break-word;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #186ab7;
  display: inline-block;
}
.chart_grid_container .table th {
  border: 1px solid #186ab7;
  overflow-wrap: break-word !important;
}
.chart_grid_container .table th:not(:last-child) {
  border-right: 1px solid white;
}
.chart_grid_container .table td {
  padding: 0rem 0.75rem;
  border: 1px solid #186ab7;
}
.chart_grid_container .block_heading_block {
  clip-path: polygon(0% 0%, 100% 0%, 96% 100%, 0% 100%);
  background: #263e70;
  color: white;
  padding: 0.1rem 1rem;
  margin-left: -2rem;
  margin-bottom: 3rem;
  width: 26rem;
}
.chart_grid_container .block_heading {
  font-size: 1.4rem;
  margin: 0.5rem 2rem;
  text-transform: uppercase;
}
.chart_grid_container .block_heading.chart_header {
  margin-bottom: 2px;
}
.chart_grid_container .table-bordered {
  width: auto;
  margin: auto;
}
.chart_grid_container .item_1 {
  grid-area: 1/1/2/2;
}
.chart_grid_container .item_2 {
  grid-area: 1/3/2/4;
}
.chart_grid_container .item_3 {
  grid-area: -2/1/5/2;
}
.chart_grid_container .item_4 {
  grid-area: 1/2/2/3;
}
.chart_grid_container .item_5 {
  grid-area: 2/2/3/3;
}
.chart_grid_container .item_6 {
  grid-area: -2/2/5/3;
}
.chart_grid_container .item_7 {
  grid-area: 1/3/3/4;
}
.chart_grid_container .item_7a {
  grid-area: 2/1/3/2;
}
.chart_grid_container .item_7b {
  grid-area: 2/3/3/4;
}
.chart_grid_container .item_8 {
  grid-area: -2/-2/5/-1;
}
.chart_grid_container .item_12 {
  grid-area: 3/1/4/4;
}
.chart_grid_container .item {
  padding: 2rem;
  border: 1px solid gray;
  border-radius: 6px;
  overflow: hidden;
}
.chart_grid_container .clinical_risks_table {
  text-align: center;
}

.program_rag .programme_rag_block--item {
  margin: 0.5rem 0rem;
}
.program_rag .new_data {
  transform: scale(1.5) translateX(16.5%);
  margin-top: 3rem;
}
.program_rag .program_rag_color_block {
  background-color: green;
  position: relative;
  height: 4rem;
  width: 50%;
  border-radius: 0.3rem;
  color: white;
  box-shadow: 7px 9px 11px 1px rgba(0, 0, 0, 0.3);
}
.program_rag .program_rag_color_block .backgroung_image {
  position: absolute;
  font-size: 2rem;
  filter: opacity(0.5);
  top: 12%;
  right: 9%;
}
.program_rag .program_rag_color_block .sub_header {
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
}

.DCW_data_block .table-hover {
  width: 69%;
  display: inline-block;
}
.DCW_data_block th {
  width: 48%;
}

.Change_Request_chart_block,
.training_Booking_chart_block,
.smart_Card_chart_block {
  width: 30rem;
  height: 30rem;
  margin: auto;
}

.no_bottom_margin {
  margin-bottom: 0rem !important;
}

.dcw_status_table {
  display: flex;
  justify-content: space-evenly;
}
.dcw_status_table .table {
  margin: 0rem 1rem;
}

.clickable_table tbody tr {
  cursor: pointer;
}
.clickable_table tbody tr.table_active {
  color: white;
  background-color: rgba(24, 106, 183, 0.6);
}

#progress_bar_tab {
  display: flex;
  margin-top: 3rem;
}
#progress_bar_tab .nav-item {
  max-width: 12rem;
}
#progress_bar_tab .nav-item:not(:last-child) {
  border-right: 1px solid #263e70;
}

.enable_edit_current_row {
  width: 5rem;
}

.header_tab {
  margin-bottom: 1rem;
}

.table_container {
  background: white;
  padding: 1rem;
  overflow: auto;
  height: calc(100vh - 12rem);
  /* overflow: hidden; */
}

.table_container_block {
  overflow: auto;
  height: 100%;
  overflow-x: hidden;
  margin: .5rem 1.5rem;
  transition: transform 4s;
}

#table_container th {
  white-space: nowrap;
}

#chart_grid_container td {
  min-width: 10rem;
  max-width: 20rem;
}

.switch {
  display: inline-block;
  height: 34px;
  position: relative;
  width: 60px;
  margin: 0rem;
}

.switch input {
  display: none;
  margin: 0rem;
}

.slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.4s;
}

.slider:before {
  background-color: #fff;
  bottom: 4px;
  content: "";
  height: 26px;
  left: 4px;
  position: absolute;
  transition: 0.4s;
  width: 26px;
}

input:checked + .slider {
  background-color: #66bb6a;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.toggle_button_container {
  display: flex;
  width: 13.7rem;
  /* justify-content: space-between; */
  align-items: center;
  font-weight: 600;
}

.toggle_button_name {
  margin: 0rem;
  font-size: 1.2rem;
}

.programme_block_items {
  display: flex;
  width: 300%;
  justify-content: space-evenly;
  transition: transform 0.5s ease-in;
}

.programme_block_item {
  width: 100%;
  margin: 1rem 0rem;
}

.submit_button {
  margin-top: 2rem;
  text-align: right;
}

.submit_button .btn {
  font-size: 1.2rem;
}

.success_check_block {
  text-align: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 1rem 2rem;
  height: 100%;
  justify-content: center;
}
.success_check_block > * {
  margin: 1rem 0rem;
}
.success_check_block .btn-success {
  width: 8rem;
  border-radius: 2rem;
  /* position: absolute; */
  /* bottom: 0rem; */
  /* left: 50%; */
  /* transform: translate(-50%, -50%); */
}

.success_check {
  /* display: inline-block; */
  padding: 2rem;
  background: green;
  color: white;
  border-radius: 44rem;
  height: 8rem;
  width: 8rem;
  font-size: 3rem;
  text-align: center;
  position: relative;
  /* top: 50%; */
  left: 50%;
  transform: translate(-50%, 0%);
}

.modal-body {
  height: 21rem;
}

.message_text {
  /* position: absolute; */
  bottom: 2rem;
  left: 50%;
  /* transform: translate(-50%, -50%); */
  font-size: 1.4rem;
  /* width: 31rem; */
  /* text-align: center; */
}

.table_block {
  margin: 9rem 0rem;
}

.programme_block_items table {
  overflow-x: auto;
  display: block;
}

/* .programme_block_items .item_1.active{
transform: translateX(0%);
}
.programme_block_items .item_1.active{
transform: translateX(-33%);
}
.programme_block_items .item_1.active{
transform: translateX(-66%);
} */
@media only screen and (max-width: 2020px) {
  .programme_block_item {
    width: 92rem;
  }
  .programme_block_items table {
    width: 100%;
  }
}
@media only screen and (max-width: 1890px) {
  .programme_block_item {
    width: 84rem;
  }
  .programme_block_items table {
    width: 100%;
  }
}
@media only screen and (max-width: 1755px) {
  .programme_block_item {
    width: 81rem;
  }
  .programme_block_items table {
    width: 81rem;
  }
}
@media only screen and (max-width: 1690px) {
  .programme_block_item {
    width: 66rem;
  }
  .programme_block_items table {
    width: 66rem;
  }
}
@media only screen and (max-width: 1540px) {
  .programme_block_item {
    width: 58rem;
  }
  .programme_block_items table {
    width: 58rem;
  }
}
@media only screen and (max-width: 1365px) {
  .programme_block_item {
    width: 47rem;
  }
  .programme_block_items table {
    width: 47rem;
  }
}
/* @media only screen and (max-width: 1260px) {
.programme_block_item {
    width: 50rem;
}

.programme_block_items table{
    width: 50rem;
}
} */
@media only screen and (max-width: 1190px) {
  .programme_block_item {
    width: 45rem;
  }
  .programme_block_items table {
    width: 45rem;
  }
}
@media only screen and (max-width: 1120px) {
  .programme_block_item {
    width: 41rem;
  }
  .programme_block_items table {
    width: 41rem;
  }
}
@media only screen and (max-width: 1080px) {
  .programme_block_item {
    width: 38rem;
  }
  .programme_block_items table {
    width: 38rem;
  }
}
.display_table_data_block {
  overflow-x: auto;
}

/* #ul_adminConf {
margin-left: 3rem;
} */
.menu-toggle:after,
.menu-toggle:before {
  position: absolute;
  top: calc(50% - 16px);
  right: 17px;
  font-size: 19px;
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.menu-toggle:before {
  content: "+";
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.menu-toggle:after {
  content: "–";
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
}

.menu-toggle.toggled:before {
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
}

.menu-toggle.toggled:after {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.loader_container {
  background: rgba(0, 0, 0, 0.4196078431);
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 99;
  backdrop-filter: blur(10px);
}

#circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  z-index: 100;
}

.loader {
  width: calc(100% - 0px);
  height: calc(100% - 0px);
  border: 8px solid #ffffff;
  border-top: 8px solid #186ab7;
  border-radius: 50%;
  animation: rotate 5s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
.dcw_details_submit_tracker {
  padding: 1.5rem 2rem;
  border: 1px solid black;
  margin: 2rem 0.5rem;
  border-radius: 0.5rem;
  display: none;
}

.dcw_details_submit_tracker .row {
  justify-content: space-between;
}

.dcw_details_submit_tracker_show_button {
  margin: 1rem 2rem;
}

.dcw_details_submit_tracker_show_button .add_new {
  text-align: center;
  cursor: pointer;
}

.dcw_details_submit_tracker_show_button .add_new .fas {
  color: white;
  background: green;
  padding: 1rem;
  border-radius: 20rem;
  font-size: 1.2rem;
}

.dcw_details_submit_tracker .remove {
  text-align: center;
}

.dcw_details_submit_tracker .remove .fas {
  color: white;
  background: red;
  padding: 1rem;
  border-radius: 20rem;
  font-size: 1.2rem;
}

.nav-item ul {
  padding: 0.1rem 2rem;
}

.workStream_RAG {
  display: flex;
  align-items: center;
}

.dcw_submission_plan {
  margin: 2rem 1rem;
}

#exampleModalCenter .new_data_input,
#exampleModalCenter .update_date_input {
  min-width: 10rem !important;
}

.sub_single_complition_status {
  align-items: center;
  text-align: right;
  font-size: 1rem;
}

.sub_single_complition_status .progress {
  background-color: #b7b7b8;
}

/* .new_submission_display_table_data_block .display_table_data_block{
margin: 2rem 0rem;
} */
.new_submission_display_table_data_block,
.display_table_data_block {
  margin: 4rem 0.5rem;
}

.search_dcw_submission {
  margin-right: 1rem;
}

.new_submission_display_table_data_block {
  overflow-x: auto;
}

.container_block {
  /* width: 100%; */
  margin: auto;
  background-color: #f4f6f9;
  margin: 1.5rem 0;
}
.container_block .workstream_block--filter .form-group {
  background: white;
  padding: 1rem;
  margin-bottom: 0rem;
  border-radius: 0.8rem;
}
.container_block .rag_block_last,
.container_block .rag_block_this {
  height: 6rem;
}
.container_block .form-group label {
  font-size: 1.5rem;
}
.container_block > * {
  min-height: 6rem;
}
.container_block .rag_block {
  background: white;
  color: black;
  border: 2px solid green;
  position: relative;
}
.container_block .rag_block .header_block {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 99%;
  text-align: center;
}
.container_block .rag_block h5 {
  font-size: 2.2rem;
}
.container_block .rag_block,
.container_block .resource_block,
.container_block .message_block {
  height: 100%;
  border-radius: 0.5rem;
  border-radius: 10px;
  position: relative;
  margin-bottom: 20px;
  border: 1px solid #deebfd;
  box-shadow: -8px 12px 18px 0 #dadee8;
  padding: 10px 24px 14px 24px;
}
.container_block .resource_block {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  background: #c8c8c8;
}
.container_block .resource_block--heading {
  display: inline-block;
  flex: 1;
}
.container_block .resource_block--heading h5 {
  font-size: 1.5rem;
}
.container_block .resource_block--value {
  display: inline-block;
  background: rgba(128, 128, 128, 0.5803921569);
  height: 5rem;
  width: 5rem;
  border-radius: 20rem;
  position: relative;
  color: white;
}
.container_block .resource_block--value h5 {
  font-size: 2.2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.container_block .message_block {
  background-color: #186ab7;
}
.container_block .message_block--text {
  color: white;
  display: inline;
  top: 64%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
  width: 100%;
  overflow: auto;
  height: 66%;
  padding: 0rem 1rem 1rem 1rem;
}
.container_block .form-group {
  background: #f4f6f9;
  padding: 1rem;
  margin-bottom: 3rem;
  border-radius: 0.8rem;
}
.container_block .open_project_block .single_display_block {
  margin: 0rem;
}
.container_block .open_project_block,
.container_block .final_block {
  margin: 1.5rem 0;
}
.container_block .single_block_heading {
  display: inline-block;
  padding: 11px 10px;
  vertical-align: middle;
  line-height: 17px;
  font-size: 17px;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
}
.container_block .single_display_block {
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  margin-bottom: 20px;
  border: 1px solid #deebfd;
  box-shadow: -8px 12px 18px 0 #dadee8;
  padding: 10px 24px 14px 24px;
}
.container_block .cr_progress {
  border-radius: 10px;
  position: relative;
  margin-bottom: 20px;
  border: 1px solid #deebfd;
  box-shadow: -8px 12px 18px 0 #dadee8;
  padding: 10px 24px 14px 24px;
  background-color: white;
}
.container_block .cr_progress .dcw_main_heading {
  padding-bottom: 2rem;
}
.container_block .table th {
  white-space: normal !important;
  background-color: white;
  color: black !important;
}
.container_block .table tbody td:not(:first-child),
.container_block .table thead th:not(:first-child) {
  text-align: center;
}
.container_block .clinical_risks {
  padding-bottom: 2rem;
}
.container_block .clinical_risks .single_block_content {
  display: flex;
  justify-content: space-between;
}
.container_block .clinical_risks .single_block_content .single_display_block {
  flex: 1;
  margin: 0rem 0.4rem;
  margin-bottom: 2rem;
}
.container_block
  .clinical_risks
  .single_block_content
  .single_display_block
  .table
  th:first-child {
  width: 60%;
}
.container_block
  .clinical_risks
  .single_block_content
  .single_display_block
  .table
  th:last-child {
  width: 40%;
}
.container_block .no_file_founf_block {
  min-height: 10rem;
  font-size: 2.5rem;
  position: relative;
  scale: 0.7;
  opacity: 0.3;
  width: 100%;
}
.container_block .no_file_founf_block .image_icon {
  display: inline-block;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.container_block .no_file_founf_block .image_icon.empty_icon {
  font-size: 6rem;
}
.container_block .no_file_founf_block .no_file_text {
  display: inline-block;
  position: absolute;
  bottom: -13%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-size: 2rem;
}

.gray_background {
  background-color: #f4f6f9;
  padding: 0rem;
}

@media screen and (max-width: 1836px) {
  .clinical_risks {
    padding-bottom: 2rem;
  }
  .clinical_risks .single_block_content {
    flex-direction: column;
  }
}
@media screen and (max-width: 1520px) {
  .container_block .first_row {
    margin: 0rem 0rem;
  }
  .container_block .first_row .resource_block {
    padding: 0.2rem 0.8rem;
  }
  .container_block .first_row .resource_block--heading h5 {
    font-size: 1.2rem;
    margin: 0rem;
  }
  .container_block .first_row .resource_block--value {
    height: 3rem;
    width: 3rem;
  }
}
.container-fluid .page_header_block {
  justify-content: space-between;
}
.container-fluid .displayWithHeading .workstream_block--filter {
  display: inline-block;
  /* width: 61rem; */
}
.container-fluid .displayWithHeading .workstream_block--filter .row {
  justify-content: flex-end;
}

.progress_bar_block {
  margin: 2rem 1rem;
}
.progress_bar_block .form-group {
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  border: 1px solid #deebfd;
  box-shadow: 1px 20px 50px -25px #000000;
  padding: 10px 24px 10px 24px;
  margin: 1.2rem 2rem;
}
.progress_bar_block .form-group .single_complition_status {
  flex-direction: column;
  padding: 0.5rem 2rem 1rem 2rem;
  width: 96%;
  margin: auto;
}
.progress_bar_block .form-group .single_complition_status .block_text_area {
  display: flex;
  align-content: space-between;
}
.progress_bar_block .form-group .single_complition_status h4 {
  margin: 0.4rem 0rem 0.8rem 0rem;
  color: #186ab7;
  font-weight: 700;
  flex: 1;
}
.progress_bar_block
  .form-group
  .single_complition_status
  .complete_single_progress_bar {
  font-size: 1.2rem;
  height: 1.6rem;
  border-radius: 20rem;
  color: white;
  overflow: visible;
  align-items: center;
}
.progress_bar_block
  .form-group
  .single_complition_status
  .complete_single_progress_bar
  .progress-bar {
  overflow: visible;
  border-radius: 20rem;
  height: 1.9rem;
  font-size: 1.4rem;
  font-weight: 700;
  background-color: #186ab7;
}
.progress_bar_block
  .form-group
  .single_complition_status
  .target_submisstion_text {
  text-align: right;
  font-size: 1.2rem;
  margin: 0.5rem 0rem 0.5rem 0rem;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 500;
  display: flex;
  justify-content: end;
  align-items: center;
}
.progress_bar_block
  .form-group
  .single_complition_status
  .target_submisstion_text
  .far {
  font-size: 1.5rem;
  margin: 0rem 0.5rem;
}

.user_info_header {
  align-items: center;
}
.user_info_header .user_name_section {
  margin: 0rem;
  font-size: 1.1rem;
  font-weight: 500;
  margin-right: 1rem;
}

.print_button_block {
  display: inline-block;
  margin: 0rem 1rem;
  visibility: visible;
  opacity: 1;
}

.print_button_block_hidden {
  visibility: hidden;
  opacity: 0;
}

.print_button_style {
  width: 6rem;
  box-shadow: inset 0px 0px 7px rgba(0, 0, 0, 0.368627451);
  background-color: #8174e3;
}

.print_button_style:hover {
  background-color: #1325b0;
  border-color: #101f94;
}

@media print {
  .workstream_workflow_signoff,
  .workstream_clinical_risks {
    page-break-inside: avoid;
  }
  body .table_container_block,
  .container_block {
    background-color: white !important;
  }
  .table_container_block {
    padding-top: 5rem !important;
  }
  .print_header_block {
    display: flex;
    justify-content: space-between;
    height: 5rem !important;
    top: -10rem;
  }
  .print_header_block .brandLogo {
    filter: brightness(0);
  }
  .chartjs-size-monitor,
  .chartjs-size-monitor > * {
    display: none;
  }
  .rag_block_last,
  .rag_block_this,
  .workstream_block_rag,
  .workstream_block_resource {
    width: 40% !important;
  }
  .workstream_message_block .message_block{
    padding-left: 1rem;
  }
  .workstream_message_block .message_block_title{
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
  }
  .workstream_message_block .message_block--text {
    position: initial !important;
    height: auto;
    overflow: visible;
    padding: 0rem 1rem 1rem 1rem;
  }
  .open_project_risks_block,
  .open_project_issues_block,
  .project_change_req_block,
  .ddms_block,
  .training_booking_chart_block,
  .cr_status_chart_block,
  .smart_card_chart_block,
  .test_readiness_block,
  .workstream_open_project_risks,
  .workstream_open_project_issues,
  .workstream_ddms,
  .workstream_test_readiness,
  .workstream_workflow_signoff {
    width: 50% !important;
  }
  .dcw_table_content_block .single_display_block {
    width: 48% !important;
    margin: 0rem 0.5rem;
    display: inline-block;
  }
  .print_header_block h5 {
    text-align: center;
  }
  .workstreamBodyDiv {
    height: auto !important;
  }
}
.hide_current_field_in_tab {
  display: none !important;
}

.edit_current_dcw_submission_row {
  min-width: 8rem;
}

#programme_table_block th,
#programme_table_block td,
#workStream_table_block th,
#display_table_data th {
  min-width: 6rem;
}

select:disabled {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

#mdl_body,
#mdl_body_dcw_submission {
  overflow: auto;
}

/* #mitigatedRisk th:first-child,
#mitigatedRisk td:first-child,
#mitigatedIssues th:first-child,
#mitigatedIssues td:first-child {
  display: none !important;
} */
#mitigatedRisk th:nth-child(2),
#mitigatedRisk td:nth-child(2),
#mitigatedIssues th:nth-child(2),
#mitigatedIssues td:nth-child(2) {
  text-align: left !important;
}

.upload_file_input {
  width: 45%;
  display: inline-block;
}

/* .open_project_risks th:first-child,
.open_project_risks td:first-child,
.open_project_issues th:first-child,
.open_project_issues td:first-child {
  display: none !important;
} */
.open_project_risks th:nth-child(2),
.open_project_risks td:nth-child(2),
.open_project_issues th:nth-child(2),
.open_project_issues td:nth-child(2) {
  text-align: left !important;
}

.resource_block--value {
  cursor: pointer;
}

.program_portal_grid_layout th,
.program_portal_grid_layout td {
  white-space: break-spaces;
  overflow-wrap: normal;
  padding: 0.4rem;
}
.toggle_button_name {
  margin: 0rem .5rem;
}
/*# sourceMappingURL=charts.css.map */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.nav_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav_update_info {
  margin-right: 2rem;
}

.updated_by_name {
  font-size: 1.1rem;
  font-weight: bold;
}