@font-face {
  font-family: "Inter";
  src: url("/inter.ttf") format("truetype");
}
body {
  background-color: #fff;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  margin: 0;
}
body * {
  color: #363740;
}
body #dash_page,
body #psur_page,
body #dsur_page,
body #clinic_page,
body #qos_page,
body #create_page,
body #man_page {
  width: 100%;
  height: 100%;
  flex: 1;
  display: none;
}

#create_page {
  display: flex;
  flex-direction: column;
}

#create_1,
#create_2,
#create_3 {
  display: flex;
}

.create_top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.create_top p {
  font-size: 12px;
}

form {
  flex: 1;
  height: 70vh;
}

.create_bar {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.create_bar .completed {
  height: 8px;
  background-color: #b2b8a1;
  border-radius: 5px;
}
.create_bar .uncompleted {
  height: 8px;
  background-color: #f7f7f7;
  border-radius: 5px;
}

.form_page {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.form_page span {
  width: 100%;
  border-top: 1px #fafafa solid;
  margin: 0;
}

#create_1 {
  width: 100%;
}
#create_1 h3 {
  margin: 0;
  font-weight: 500;
}
#create_1 .completed {
  width: 33%;
}
#create_1 .uncompleted {
  width: 66%;
}
#create_1 .create_header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 60%;
}
#create_1 .create_header .create_left p {
  margin: 0;
  font-size: 12px;
  color: rgba(54, 55, 64, 0.5019607843);
}
#create_1 .create_header .create_right input {
  padding: 15px;
  width: 20vw;
  border-radius: 8px;
  border: 1px rgba(54, 55, 64, 0.2) solid;
}
#create_1 .create_content {
  width: 100%;
  height: 60vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#create_1 .create_content .create_content_left {
  background-color: #fafafa;
  height: 100%;
  flex: 2;
  margin-right: 1em;
  border-radius: 15px;
}
#create_1 .create_content .create_content_left .create_copy {
  border-top: 1px solid rgba(54, 55, 64, 0.2);
  padding: 17px 20px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
#create_1 .create_content .create_content_left .create_copy .create_copy_radio {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#create_1 .create_content .create_content_left .create_copy .create_copy_radio input:checked ~ label {
  border: 0;
  background-color: #959e79;
  color: #fff;
  background-image: url("/images/list_chevron_white.svg");
}
#create_1 .create_content .create_content_left .create_copy .create_copy_radio label {
  flex: 1;
  margin: 1em;
}
#create_1 .create_content .create_content_left .create_copy .create_copy_radio label {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid rgba(54, 55, 64, 0.2);
  border-radius: 10px;
  background-color: transparent;
  color: rgba(54, 55, 64, 0.5019607843);
  appearance: none;
  background-image: url("/images/list_chevron.svg");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}
#create_1 .create_content .create_content_left .create_list .create_list_header {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
#create_1 .create_content .create_content_left .create_list .create_list_header > div {
  padding: 1em;
}
#create_1 .create_content .create_content_left .create_list .create_list_header > div:first-child {
  padding-right: 1em;
}
#create_1 .create_content .create_content_left .create_list .create_list_header > div p {
  font-weight: 400;
  color: rgba(54, 55, 64, 0.5019607843);
  font-size: 12px;
  margin: 0;
}
#create_1 .create_content .create_content_left .create_list .create_list_header > div p img {
  margin-left: 5px;
  height: 12px;
}
#create_1 .create_content .create_content_left .create_list .create_list_header > div h4 {
  font-weight: 400;
  margin: 0;
  font-size: 13px;
}
#create_1 .create_content .create_content_left .create_list .create_list_header > div a {
  color: #959e79;
  font-size: 12px;
  font-weight: 400;
}
#create_1 .create_content .create_content_left .create_list .create_list_body .create_ul_header {
  border-top: 1px solid rgba(54, 55, 64, 0.2);
  display: flex;
  padding: 10px 10px;
  padding-left: 3em;
  font-weight: 400;
}
#create_1 .create_content .create_content_left .create_list .create_list_body .create_ul_header p {
  width: 40%;
  font-size: 12px;
  margin: 2px;
}
#create_1 .create_content .create_content_left .create_list .create_list_body .create_ul_header p:first-child {
  width: 70%;
}
#create_1 .create_content .create_content_left .create_list .create_list_body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#create_1 .create_content .create_content_left .create_list .create_list_body ul li {
  display: flex;
}
#create_1 .create_content .create_content_left .create_list .create_list_body ul li:nth-child(2n) label {
  background-color: #fafafa;
}
#create_1 .create_content .create_content_left .create_list .create_list_body ul li input {
  position: absolute;
  margin: 17px 20px;
  background-color: transparent;
}
#create_1 .create_content .create_content_left .create_list .create_list_body ul li input:checked ~ label {
  background-color: #959e79;
  color: #fff;
}
#create_1 .create_content .create_content_left .create_list .create_list_body ul li label {
  display: flex;
  width: 100%;
  color: rgba(54, 55, 64, 0.5019607843);
  padding: 15px 10px;
  padding-left: 3em;
  background-color: #f0f0f0;
}
#create_1 .create_content .create_content_left .create_list .create_list_body ul li label p {
  width: 40%;
  font-size: 12px;
  margin: 2px;
}
#create_1 .create_content .create_content_left .create_list .create_list_body ul li label p:first-child {
  width: 70%;
}
#create_1 .create_content .create_content_right {
  height: 100%;
  flex: 1.8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#create_1 .create_content .create_content_right .create_content_right_top {
  height: 100%;
  background-color: #fafafa;
  border-radius: 15px;
  padding: 10px 20px;
}
#create_1 .create_content .create_content_right .create_content_right_top p {
  font-size: 12px;
  color: rgba(54, 55, 64, 0.5019607843);
  margin-bottom: 2em;
}
#create_1 .create_content .create_content_right .create_content_right_top .create_marks {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
#create_1 .create_content .create_content_right .create_content_right_top .create_marks div {
  display: flex;
  align-items: center;
}
#create_1 .create_content .create_content_right .create_content_right_top .create_marks div p {
  margin: 0;
  margin-left: 10px;
}
#create_1 .create_content .create_content_right .create_content_right_top .create_marks img {
  height: 1em;
}
#create_1 .create_content .create_content_right .create_content_right_buttons {
  margin-top: 1em;
  display: flex;
  flex-direction: row;
  gap: 1em;
  justify-content: space-between;
}
#create_1 .create_content .create_content_right .create_content_right_buttons button {
  flex: 1;
  padding: 15px;
  border-radius: 10px;
  border: 0;
}
#create_1 .create_content .create_content_right .create_content_right_buttons .back {
  background-color: #fafafa;
  color: rgba(54, 55, 64, 0.2);
}
#create_1 .create_content .create_content_right .create_content_right_buttons .next {
  background-color: #5d6b2b;
  color: #fff;
}

#create_2 {
  display: none;
  width: 100%;
}
#create_2 h3 {
  margin: 0;
  font-weight: 500;
}
#create_2 .create_bar {
  gap: 0;
}
#create_2 .completed {
  width: 66%;
}
#create_2 .uncompleted {
  width: 33%;
}
#create_2 .create_header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 60%;
}
#create_2 .create_header .create_left p {
  margin: 0;
  font-size: 12px;
  color: rgba(54, 55, 64, 0.5019607843);
}
#create_2 .create_header .create_right input {
  padding: 15px;
  width: 20vw;
  border-radius: 8px;
  border: 1px rgba(54, 55, 64, 0.2) solid;
}
#create_2 .create_content {
  width: 100%;
  height: 60vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#create_2 .create_content .create_content_left {
  background-color: #fafafa;
  height: 100%;
  flex: 2;
  margin-right: 1em;
  padding: 20px 0;
  border-radius: 15px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}
#create_2 .create_content .create_content_left h3 {
  width: 90%;
}
#create_2 .create_content .create_content_left .create_upload {
  flex: 1;
  width: 90%;
  background-color: #fff;
  border: 1px solid rgba(54, 55, 64, 0.2);
  border-radius: 10px;
  padding: 20px 25px;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 1em;
  height: 1000px;
}
#create_2 .create_content .create_content_left .create_upload .drag {
  height: 50%;
  border: 1px dashed rgba(54, 55, 64, 0.2);
  border-radius: 7.5px;
  background-image: url("/images/dragdrop.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40%;
}
#create_2 .create_content .create_content_left .create_upload .dragtodrop {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#create_2 .create_content .create_content_left .create_upload .dragtodrop p {
  font-size: 12px;
  margin: 0;
  color: rgba(54, 55, 64, 0.5019607843);
}
#create_2 .create_content .create_content_left .create_upload .dropped {
  height: 50%;
}
#create_2 .create_content .create_content_left .create_upload .dropped .dropitem {
  border: 1px dashed rgba(54, 55, 64, 0.2);
  border-radius: 7.5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#create_2 .create_content .create_content_left .create_upload .dropped .dropitem p {
  font-size: 12px;
  margin: 0;
}
#create_2 .create_content .create_content_left .create_upload .dropped .dropitem .dropitem_left {
  padding: 10px 12.5px;
}
#create_2 .create_content .create_content_left .create_upload .dropped .dropitem .dropitem_left .dropitem_title {
  font-weight: 500;
  margin-bottom: 0.5em;
}
#create_2 .create_content .create_content_left .create_upload .dropped .dropitem .dropitem_left .dropitem_sub {
  display: flex;
  flex-direction: row;
  gap: 0.1em;
}
#create_2 .create_content .create_content_left .create_upload .dropped .dropitem .dropitem_left .dropitem_sub p {
  color: rgba(54, 55, 64, 0.5019607843);
}
#create_2 .create_content .create_content_left .create_upload .dropped .dropitem .dropitem_left .dropitem_sub p:last-of-type {
  color: #9CAFE8;
}
#create_2 .create_content .create_content_left .create_upload .dropped .dropitem img {
  height: 2em;
  margin-right: 1em;
}
#create_2 .create_content .create_content_right {
  height: 100%;
  flex: 1.8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#create_2 .create_content .create_content_right .create_content_right_top {
  height: 100%;
  background-color: #fafafa;
  border-radius: 15px;
  padding: 10px 20px;
}
#create_2 .create_content .create_content_right .create_content_right_top p {
  font-size: 12px;
  color: rgba(54, 55, 64, 0.5019607843);
  margin-bottom: 2em;
}
#create_2 .create_content .create_content_right .create_content_right_top .create_marks {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
#create_2 .create_content .create_content_right .create_content_right_top .create_marks div {
  display: flex;
  align-items: center;
}
#create_2 .create_content .create_content_right .create_content_right_top .create_marks div p {
  margin: 0;
  margin-left: 10px;
}
#create_2 .create_content .create_content_right .create_content_right_top .create_marks img {
  height: 1em;
}
#create_2 .create_content .create_content_right .create_content_right_buttons {
  margin-top: 1em;
  display: flex;
  flex-direction: row;
  gap: 1em;
  justify-content: space-between;
}
#create_2 .create_content .create_content_right .create_content_right_buttons button {
  flex: 1;
  padding: 15px;
  border-radius: 10px;
  border: 0;
}
#create_2 .create_content .create_content_right .create_content_right_buttons .back {
  background-color: #363740;
  color: #fff;
}
#create_2 .create_content .create_content_right .create_content_right_buttons .next {
  background-color: #5d6b2b;
  color: #fff;
}

#create_3 {
  display: none;
  width: 100%;
}
#create_3 h3 {
  margin: 0;
  font-weight: 500;
}
#create_3 .completed {
  width: 100%;
}
#create_3 .uncompleted {
  width: 0%;
}
#create_3 .create_header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 60%;
}
#create_3 .create_header .create_left p {
  margin: 0;
  font-size: 12px;
  color: rgba(54, 55, 64, 0.5019607843);
}
#create_3 .create_header .create_right input {
  padding: 15px;
  width: 20vw;
  border-radius: 8px;
  border: 1px rgba(54, 55, 64, 0.2) solid;
}
#create_3 span {
  margin: 0;
  margin-bottom: 1em;
}
#create_3 .create_content {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#create_3 .create_content .create_content_left {
  background-color: #b2b8a1;
  height: 100%;
  flex: 2;
  margin-right: 1em;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#create_3 .create_content .create_content_left .create_d {
  margin-left: 1.5vw;
  margin-right: 4.8vw;
  padding-bottom: 3em;
  color: #fff;
}
#create_3 .create_content .create_content_left .create_d .create_d_title {
  display: flex;
  gap: 7.5px;
}
#create_3 .create_content .create_content_left .create_d .create_d_title img {
  height: 1.4em;
}
#create_3 .create_content .create_content_left .create_d p {
  font-size: 12px;
}
#create_3 .create_content .create_content_right {
  height: 100%;
  flex: 1.8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#create_3 .create_content .create_content_right .create_content_right_top {
  height: 100%;
  background-color: #fafafa;
  border-radius: 15px;
  padding: 10px 20px;
}
#create_3 .create_content .create_content_right .create_content_right_top p {
  font-size: 12px;
  color: rgba(54, 55, 64, 0.5019607843);
  margin-bottom: 2em;
}
#create_3 .create_content .create_content_right .create_content_right_top .create_marks {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
#create_3 .create_content .create_content_right .create_content_right_top .create_marks div {
  display: flex;
  align-items: center;
}
#create_3 .create_content .create_content_right .create_content_right_top .create_marks div p {
  margin: 0;
  margin-left: 10px;
}
#create_3 .create_content .create_content_right .create_content_right_top .create_marks img {
  height: 1em;
}
#create_3 .create_content .create_content_right .create_content_right_buttons {
  margin-top: 1em;
  display: flex;
  flex-direction: row;
  gap: 1em;
  justify-content: space-between;
}
#create_3 .create_content .create_content_right .create_content_right_buttons button {
  flex: 1;
  padding: 15px;
  border-radius: 10px;
  border: 0;
}
#create_3 .create_content .create_content_right .create_content_right_buttons .back {
  background-color: #363740;
  color: #fff;
}
#create_3 .create_content .create_content_right .create_content_right_buttons .next {
  background-color: #5d6b2b;
  color: #fff;
}/*# sourceMappingURL=create.css.map */