@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.header_menu {
  display: flex;
  position: absolute;
  justify-content: space-between;
  width: 80%;
  align-items: center;
  top: 20px;
  z-index: 10000000000000000;
}
.header_menu li {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.header_menu li button {
  background: none;
  border: none;
  outline: none;
  color: #24b5ff;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease-in-out all;
  border-radius: 50%;
}
.header_menu li button:hover {
  color: #000100;
  background: #24b5ff;
  box-shadow: 0px 0px 13px 0px rgba(242, 218, 191, 0.75);
  -webkit-box-shadow: 0px 0px 13px 0px rgba(242, 218, 191, 0.75);
  -moz-box-shadow: 0px 0px 13px 0px rgba(242, 218, 191, 0.75);
}
.header_menu li button.active {
  box-shadow: none;
  color: #000100;
  background: #24b5ff;
}
.header_menu li button.user_btn {
  color: #000100;
  background: #24b5ff;
}
.header_menu li button.user_btn.active, .header_menu li button.user_btn:hover {
  background: rgba(0, 1, 0, 0.5019607843);
  border: 1px solid #24b5ff;
  color: #24b5ff;
}
.header_menu li button.user_btn.active {
  box-shadow: none;
  transform: rotate(360deg);
}
.header_menu li button span {
  font-size: 25px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.header_menu li button span.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}
.header_menu li button.active_notifi span::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  top: 10px;
  right: 10px;
  border-radius: 50%;
  background: #000;
}
.header_menu li button.notif_btn, .header_menu li button.chat-btn, .header_menu li button.menu-btn {
  pointer-events: none;
  opacity: 0.5;
}

.main-menu {
  display: flex;
  background: rgba(0, 1, 0, 0.5019607843);
  padding: 10px 30px;
  border-radius: 10px;
  position: absolute;
  gap: 30px;
  border-radius: 50px;
  bottom: 20px;
  z-index: 1000000000000000000000000;
}
.main-menu .indicator {
  position: absolute;
  width: 70px;
  height: 70px;
  background: #000100;
  left: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -40px;
  border-radius: 50%;
  transition: 0.5s ease-in-out all;
}
.main-menu .indicator i {
  background: #24b5ff;
  width: 60px;
  height: 60px;
  border-radius: inherit;
}
.main-menu .indicator::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: transparent;
  right: -7px;
  top: 40px;
  border-top-left-radius: 10px;
  box-shadow: -1px -5px 0 #000100;
}
.main-menu .indicator::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: transparent;
  left: -7px;
  top: 40px;
  border-top-right-radius: 10px;
  box-shadow: 1px -5px 0 #000100;
}
.main-menu li {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 70px;
  height: 50px;
  position: relative;
}
.main-menu li.active span.icon {
  top: -15px;
  color: #000100;
}
.main-menu li.active span.icon.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}
.main-menu li.active span.title {
  opacity: 1;
}
.main-menu li.active:nth-child(1) ~ .indicator {
  left: 30px;
}
.main-menu li.active:nth-child(2) ~ .indicator {
  left: 130px;
}
.main-menu li.active:nth-child(3) ~ .indicator {
  left: 230px;
}
.main-menu li span {
  color: #24b5ff;
}
.main-menu li span.icon {
  font-size: 30px;
  position: absolute;
  color: #24b5ff;
  z-index: 5;
  transition: 0.5s ease-in-out all;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main-menu li span.icon.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}
.main-menu li span.icon:hover {
  text-shadow: 0px 0px 29px rgba(242, 218, 191, 0.74);
}
.main-menu li span.title {
  font-size: 12px;
  transform: translateY(10px);
  transition: 0.5s ease-in-out all;
  opacity: 0;
  transition-delay: 0.2s;
}

.tools_menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  left: 20px;
  background: rgba(0, 1, 0, 0.5019607843);
  padding: 20px 10px;
  border-radius: 50px;
  transition: 0.5s ease-in-out all;
  opacity: 0;
  pointer-events: none;
}
.tools_menu.active {
  opacity: 1;
  pointer-events: auto;
}
.tools_menu .l-ind,
.tools_menu .r-ind {
  position: absolute;
  background: #000100;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: 0.5s ease-in-out all;
}
.tools_menu .l-ind {
  left: -20px;
}
.tools_menu .r-ind {
  right: -20px;
}
.tools_menu .r-ind i {
  width: 0px;
  height: 0px;
  transition: 0.5s ease-in-out all;
  transition-delay: 0.5s;
  background: #24b5ff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.tools_menu li {
  list-style: none;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s ease-in-out all;
  border-radius: 50%;
}
.tools_menu li i {
  position: absolute;
  width: 0;
  height: 0;
  background: #24b5ff;
  opacity: 0;
  transition: 0.5s ease-in-out opacity;
  transition-delay: 0.6s;
  border-radius: 50%;
  z-index: 101;
}
.tools_menu li span {
  font-size: 30px;
  transition: 0.5s ease-in-out all;
  color: rgba(36, 181, 255, 0.5);
}
.tools_menu li span.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}
.tools_menu li:hover span {
  color: rgba(242, 218, 191, 0.5);
  text-shadow: 0px 0px 29px rgba(242, 218, 191, 0.5);
}
.tools_menu li.active i {
  height: 12px;
  width: 12px;
  right: -12px;
  opacity: 1;
}
.tools_menu li.active span {
  color: #24b5ff;
}
.tools_menu li.active span.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}
.tools_menu li.active:nth-child(1) ~ span.r-ind, .tools_menu li.active:nth-child(1) ~ span.l-ind {
  top: 30px;
}
.tools_menu li.active:nth-child(2) ~ span.r-ind, .tools_menu li.active:nth-child(2) ~ span.l-ind {
  top: 90px;
}
.tools_menu li.active:nth-child(3) ~ span.r-ind, .tools_menu li.active:nth-child(3) ~ span.l-ind {
  top: 150px;
}

.control_charts_menu {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: rgba(0, 1, 0, 0.5019607843);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0, 1, 0, 0.5019607843);
  padding: 20px 10px;
  border-radius: 50px;
  transition: 0.5s ease-in-out all;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
}
.control_charts_menu.active {
  opacity: 1;
  pointer-events: auto;
}
.control_charts_menu ul li {
  list-style: none;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s ease-in-out all;
  border-radius: 50%;
}
.control_charts_menu ul li span {
  font-size: 30px;
  transition: 0.5s ease-in-out all;
  color: rgba(36, 181, 255, 0.5);
}
.control_charts_menu ul li span.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}
.control_charts_menu ul li:hover span {
  color: rgba(242, 218, 191, 0.5);
  text-shadow: 0px 0px 29px rgba(242, 218, 191, 0.5);
}
.control_charts_menu ul li.fix_chart_btn {
  width: 0;
  height: 0;
  overflow: hidden;
}
.control_charts_menu ul li.fix_chart_btn:hover span {
  color: #24b5ff;
}
.control_charts_menu ul li.fix_chart_btn:hover span.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 200, "GRAD" 0, "opsz" 24;
}
.control_charts_menu ul li.fix_chart_btn.active {
  width: 50px;
  height: 50px;
}
.control_charts_menu ul:nth-child(1) li {
  background: rgba(0, 1, 0, 0.5);
  position: relative;
  transition: 0.5s ease-in-out all;
}
.control_charts_menu ul:nth-child(1) li span {
  z-index: 9;
  transition: 0.5s ease-in-out all;
}
.control_charts_menu ul:nth-child(1) li::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  z-index: 0;
  transition: 0.5s ease-in-out all;
  background: #24b5ff;
  border-radius: 50%;
}
.control_charts_menu ul:nth-child(1) li:hover {
  background: transparent;
}
.control_charts_menu ul:nth-child(1) li:hover span {
  color: #000100;
}
.control_charts_menu ul:nth-child(1) li:hover span.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}
.control_charts_menu ul:nth-child(1) li:hover::before {
  width: 100%;
  height: 100%;
}
.control_charts_menu ul:last-child li {
  background: rgba(0, 1, 0, 0.5);
  position: relative;
  transition: 0.5s ease-in-out all;
}
.control_charts_menu ul:last-child li span {
  z-index: 9;
  transition: 0.5s ease-in-out all;
}
.control_charts_menu ul:last-child li::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  z-index: 0;
  transition: 0.5s ease-in-out all;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}
.control_charts_menu ul:last-child li:hover {
  background: transparent;
}
.control_charts_menu ul:last-child li:hover span {
  color: #24b5ff;
}
.control_charts_menu ul:last-child li:hover span.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}
.control_charts_menu ul:last-child li:hover::before {
  width: 100%;
  height: 100%;
}
.control_charts_menu ul:nth-child(2) {
  position: relative;
}
.control_charts_menu ul:nth-child(2) i {
  position: absolute;
}
.control_charts_menu ul:nth-child(2) i.right, .control_charts_menu ul:nth-child(2) i.left {
  background: #000100;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: 0.5s ease-in-out all;
  top: 10px;
}
.control_charts_menu ul:nth-child(2) i.left {
  left: -30px;
}
.control_charts_menu ul:nth-child(2) i.right {
  right: -30px;
}
.control_charts_menu ul:nth-child(2) li {
  position: relative;
  transition: 0.5s ease-in-out all;
}
.control_charts_menu ul:nth-child(2) li i.circle {
  position: absolute;
  width: 0;
  height: 0;
  background: #24b5ff;
  opacity: 0;
  transition: 0.5s ease-in-out opacity;
  transition-delay: 0.6s;
  border-radius: 50%;
  z-index: 101;
}
.control_charts_menu ul:nth-child(2) li.active i.circle {
  height: 12px;
  width: 12px;
  left: -21px;
  opacity: 1;
}
.control_charts_menu ul:nth-child(2) li.active span {
  color: #24b5ff;
}
.control_charts_menu ul:nth-child(2) li.active span.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 200, "GRAD" 0, "opsz" 24;
}
.control_charts_menu ul:nth-child(2) li:nth-child(1).active ~ i {
  top: 10px;
}
.control_charts_menu ul:nth-child(2) li:nth-child(2).active ~ i {
  top: 60px;
}

.hospital_comparison_menu {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: rgba(0, 1, 0, 0.5019607843);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0, 1, 0, 0.5019607843);
  padding: 20px 10px;
  border-radius: 50px;
  transition: 0.5s ease-in-out all;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
}
.hospital_comparison_menu.active {
  opacity: 1;
  pointer-events: auto;
}
.hospital_comparison_menu ul li {
  list-style: none;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s ease-in-out all;
  border-radius: 50%;
}
.hospital_comparison_menu ul li span {
  font-size: 30px;
  transition: 0.5s ease-in-out all;
  color: rgba(36, 181, 255, 0.5);
}
.hospital_comparison_menu ul li span.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}
.hospital_comparison_menu ul li:hover span {
  color: rgba(242, 218, 191, 0.5);
  text-shadow: 0px 0px 29px rgba(242, 218, 191, 0.5);
}
.hospital_comparison_menu ul:nth-child(1) li {
  background: rgba(0, 1, 0, 0.5);
  position: relative;
  transition: 0.5s ease-in-out all;
}
.hospital_comparison_menu ul:nth-child(1) li span {
  z-index: 9;
  transition: 0.5s ease-in-out all;
}
.hospital_comparison_menu ul:nth-child(1) li::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  z-index: 0;
  transition: 0.5s ease-in-out all;
  background: #24b5ff;
  border-radius: 50%;
}
.hospital_comparison_menu ul:nth-child(1) li:hover {
  background: transparent;
}
.hospital_comparison_menu ul:nth-child(1) li:hover span {
  color: #000100;
}
.hospital_comparison_menu ul:nth-child(1) li:hover span.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}
.hospital_comparison_menu ul:nth-child(1) li:hover::before {
  width: 100%;
  height: 100%;
}
.hospital_comparison_menu ul:last-child li {
  background: rgba(0, 1, 0, 0.5);
  position: relative;
  transition: 0.5s ease-in-out all;
}
.hospital_comparison_menu ul:last-child li span {
  z-index: 9;
  transition: 0.5s ease-in-out all;
}
.hospital_comparison_menu ul:last-child li::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  z-index: 0;
  transition: 0.5s ease-in-out all;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}
.hospital_comparison_menu ul:last-child li:hover {
  background: transparent;
}
.hospital_comparison_menu ul:last-child li:hover span {
  color: #24b5ff;
}
.hospital_comparison_menu ul:last-child li:hover span.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}
.hospital_comparison_menu ul:last-child li:hover::before {
  width: 100%;
  height: 100%;
}
.hospital_comparison_menu ul:nth-child(2) {
  position: relative;
}
.hospital_comparison_menu ul:nth-child(2) i {
  position: absolute;
}
.hospital_comparison_menu ul:nth-child(2) i.right, .hospital_comparison_menu ul:nth-child(2) i.left {
  background: #000100;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: 0.5s ease-in-out all;
  top: 10px;
}
.hospital_comparison_menu ul:nth-child(2) i.left {
  left: -30px;
}
.hospital_comparison_menu ul:nth-child(2) i.right {
  right: -30px;
}
.hospital_comparison_menu ul:nth-child(2) li {
  position: relative;
  transition: 0.5s ease-in-out all;
}
.hospital_comparison_menu ul:nth-child(2) li i.circle {
  position: absolute;
  width: 0;
  height: 0;
  background: #24b5ff;
  opacity: 0;
  transition: 0.5s ease-in-out opacity;
  transition-delay: 0.6s;
  border-radius: 50%;
  z-index: 101;
}
.hospital_comparison_menu ul:nth-child(2) li.active i.circle {
  height: 12px;
  width: 12px;
  left: -21px;
  opacity: 1;
}
.hospital_comparison_menu ul:nth-child(2) li.active span {
  color: #24b5ff;
}
.hospital_comparison_menu ul:nth-child(2) li.active span.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 200, "GRAD" 0, "opsz" 24;
}
.hospital_comparison_menu ul:nth-child(2) li:nth-child(1).active ~ i {
  top: 10px;
}
.hospital_comparison_menu ul:nth-child(2) li:nth-child(2).active ~ i {
  top: 60px;
}

.outpatient_department_menu {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: rgba(0, 1, 0, 0.5019607843);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0, 1, 0, 0.5019607843);
  padding: 20px 10px;
  border-radius: 50px;
  transition: 0.5s ease-in-out all;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
}
.outpatient_department_menu.active {
  opacity: 1;
  pointer-events: auto;
}
.outpatient_department_menu ul li {
  list-style: none;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s ease-in-out all;
  border-radius: 50%;
}
.outpatient_department_menu ul li span {
  font-size: 30px;
  transition: 0.5s ease-in-out all;
  color: rgba(36, 181, 255, 0.5);
}
.outpatient_department_menu ul li span.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}
.outpatient_department_menu ul li:hover span {
  color: rgba(242, 218, 191, 0.5);
  text-shadow: 0px 0px 29px rgba(242, 218, 191, 0.5);
}
.outpatient_department_menu ul:nth-child(1) li {
  background: rgba(0, 1, 0, 0.5);
  position: relative;
  transition: 0.5s ease-in-out all;
}
.outpatient_department_menu ul:nth-child(1) li span {
  z-index: 9;
  transition: 0.5s ease-in-out all;
}
.outpatient_department_menu ul:nth-child(1) li::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  z-index: 0;
  transition: 0.5s ease-in-out all;
  background: #24b5ff;
  border-radius: 50%;
}
.outpatient_department_menu ul:nth-child(1) li:hover {
  background: transparent;
}
.outpatient_department_menu ul:nth-child(1) li:hover span {
  color: #000100;
}
.outpatient_department_menu ul:nth-child(1) li:hover span.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}
.outpatient_department_menu ul:nth-child(1) li:hover::before {
  width: 100%;
  height: 100%;
}
.outpatient_department_menu ul:last-child li {
  background: rgba(0, 1, 0, 0.5);
  position: relative;
  transition: 0.5s ease-in-out all;
}
.outpatient_department_menu ul:last-child li span {
  z-index: 9;
  transition: 0.5s ease-in-out all;
}
.outpatient_department_menu ul:last-child li::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  z-index: 0;
  transition: 0.5s ease-in-out all;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}
.outpatient_department_menu ul:last-child li:hover {
  background: transparent;
}
.outpatient_department_menu ul:last-child li:hover span {
  color: #24b5ff;
}
.outpatient_department_menu ul:last-child li:hover span.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}
.outpatient_department_menu ul:last-child li:hover::before {
  width: 100%;
  height: 100%;
}
.outpatient_department_menu ul:nth-child(2) {
  position: relative;
}
.outpatient_department_menu ul:nth-child(2) i {
  position: absolute;
}
.outpatient_department_menu ul:nth-child(2) i.right, .outpatient_department_menu ul:nth-child(2) i.left {
  background: #000100;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: 0.5s ease-in-out all;
  top: 10px;
}
.outpatient_department_menu ul:nth-child(2) i.left {
  left: -30px;
}
.outpatient_department_menu ul:nth-child(2) i.right {
  right: -30px;
}
.outpatient_department_menu ul:nth-child(2) li {
  position: relative;
  transition: 0.5s ease-in-out all;
}
.outpatient_department_menu ul:nth-child(2) li i.circle {
  position: absolute;
  width: 0;
  height: 0;
  background: #24b5ff;
  opacity: 0;
  transition: 0.5s ease-in-out opacity;
  transition-delay: 0.6s;
  border-radius: 50%;
  z-index: 101;
}
.outpatient_department_menu ul:nth-child(2) li.active i.circle {
  height: 12px;
  width: 12px;
  left: -21px;
  opacity: 1;
}
.outpatient_department_menu ul:nth-child(2) li.active span {
  color: #24b5ff;
}
.outpatient_department_menu ul:nth-child(2) li.active span.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 200, "GRAD" 0, "opsz" 24;
}
.outpatient_department_menu ul:nth-child(2) li:nth-child(1).active ~ i {
  top: 10px;
}
.outpatient_department_menu ul:nth-child(2) li:nth-child(2).active ~ i {
  top: 60px;
}

section {
  overflow: hidden;
  width: 80%;
  height: 80vh;
  bottom: -80vh;
  transition: 0.5s ease-in-out bottom;
  opacity: 0;
  position: absolute;
  justify-content: center;
  align-items: center;
}
section h1 {
  opacity: 0;
  transition: 0.5s ease-in-out all;
  transition-delay: 0.5s;
}
section.active {
  display: flex;
  opacity: 1;
  overflow: auto;
  bottom: 50%;
  transform: translateY(50%);
}
section.active h1 {
  color: #24b5ff;
  font-size: 70px;
  font-weight: 200;
  opacity: 1;
}
section#home_sec {
  flex-direction: column;
  gap: 10px;
}
section#home_sec h1 {
  font-size: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section#home_sec h1 span {
  font-size: 70px;
  color: #24b5ff;
  font-weight: 400;
  opacity: 0;
  transition: 0.5s ease-in-out all;
  transition-delay: 0.5s;
}
section#home_sec h2 {
  color: #24b5ff;
  font-weight: 300;
  font-size: 30px;
  transition: 0.5s ease-in-out all;
  transition-delay: 0.6s;
  opacity: 0;
}
section#home_sec h2 img {
  width: 85px;
  transition: 0.5s ease-in-out all;
  opacity: 0;
  transition-delay: 0.7s;
}
section#home_sec p {
  opacity: 0;
  transition: 0.5s ease-in-out all;
  transition-delay: 0.8s;
  color: #24b5ff;
  font-size: 22px;
  text-align: center;
  width: 600px;
}
section#home_sec p.project_stat {
  letter-spacing: 0;
  font-size: 16px;
  color: #24b5ff;
  text-align: center;
  width: 700px;
  margin-bottom: 10px;
}
section#home_sec button {
  background: none;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 20px;
  cursor: pointer;
  opacity: 0;
  transition: 0.5s ease-in-out all;
  transition-delay: 0.9s;
  position: relative;
}
section#home_sec button span {
  color: #24b5ff;
  transition: 0.5s ease-in-out all;
}
section#home_sec button .material-symbols-outlined {
  color: #000100;
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}
section#home_sec button::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: #24b5ff;
  z-index: -1;
  right: 0;
  border-radius: 20px;
  transition: 0.5s ease-in-out width;
}
section#home_sec button:hover {
  color: #000100;
}
section#home_sec button:hover::after {
  width: 100%;
  border-radius: 20px;
}
section#home_sec button:hover span {
  color: #000100;
}
section#home_sec button:hover span:last-child {
  rotate: 45deg;
}
section#home_sec.active h1 span {
  letter-spacing: 10px;
  opacity: 1;
}
section#home_sec.active h2 {
  opacity: 1;
}
section#home_sec.active h2 img {
  opacity: 1;
}
section#home_sec.active p {
  opacity: 1;
}
section#home_sec.active button {
  opacity: 1;
}
section#tools_sec {
  flex-direction: column;
  gap: 10px;
}
section#tools_sec h1 {
  font-size: 40px;
  font-weight: 400;
}
section#tools_sec p {
  text-align: center;
  opacity: 0;
  transition: 0.5s ease-in-out all;
  transition-delay: 0.6s;
  font-size: 16px;
  width: 700px;
  color: #24b5ff;
}
section#tools_sec ul.tools_list {
  display: flex;
  gap: 20px;
  opacity: 0;
  transition: 0.5s ease-in-out all;
  transition-delay: 0.7s;
}
section#tools_sec ul.tools_list li {
  display: flex;
  flex-direction: column;
  list-style: none;
  align-items: center;
  text-align: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px;
}
section#tools_sec ul.tools_list li span {
  transition: 0.5s ease-in-out all;
}
section#tools_sec ul.tools_list li span:nth-child(1) {
  font-size: 50px;
  padding: 10px;
  border-radius: 50%;
  color: #24b5ff;
}
section#tools_sec ul.tools_list li span:nth-child(1).material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}
section#tools_sec ul.tools_list li span:nth-child(2) {
  font-size: 12px;
  width: 150px;
  color: #24b5ff;
  transform: translateY(-10px);
  opacity: 0;
  transition: 0.5s ease-in-out all;
}
section#tools_sec ul.tools_list li:hover span:nth-child(1) {
  background: #24b5ff;
  color: #000100;
}
section#tools_sec ul.tools_list li:hover span:nth-child(1).material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 200, "GRAD" 0, "opsz" 24;
}
section#tools_sec ul.tools_list li:hover span:nth-child(2) {
  transform: translateY(0);
  opacity: 1;
}
section#tools_sec.active ul.tools_list {
  opacity: 1;
  transform: translateY(0);
}
section#tools_sec.active h1 {
  letter-spacing: 10px;
}
section#tools_sec.active p {
  opacity: 1;
}
section#control_charts_sec {
  padding: 0;
}
section#control_charts_sec .upload_file_sec {
  display: none;
  position: absolute;
}
section#control_charts_sec .upload_file_sec .upload_side,
section#control_charts_sec .upload_file_sec .det-side {
  opacity: 0;
  width: 45%;
  display: flex;
  flex-direction: column;
}
section#control_charts_sec .upload_file_sec .det-side {
  gap: 30px;
  width: 55%;
  padding: 20px;
}
section#control_charts_sec .upload_file_sec .det-side h1 {
  font-size: 42px;
  text-align: center;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  font-weight: 400;
  color: #24b5ff;
}
section#control_charts_sec .upload_file_sec .det-side h1 img {
  width: 100px;
}
section#control_charts_sec .upload_file_sec .det-side h1 span {
  position: relative;
  padding: 0 20px;
  line-height: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  line-height: 35px;
}
section#control_charts_sec .upload_file_sec .det-side h1 span i {
  font-size: 13px;
  font-style: normal;
  line-height: 20px;
}
section#control_charts_sec .upload_file_sec .det-side h1 span::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background: rgba(36, 181, 255, 0.7);
  left: 0;
}
section#control_charts_sec .upload_file_sec .det-side p {
  font-size: 16px;
  color: #24b5ff;
  width: 90%;
}
section#control_charts_sec .upload_file_sec .det-side p b {
  color: #24b5ff;
}
section#control_charts_sec .upload_file_sec .upload_side {
  gap: 10px;
  background: rgba(0, 1, 0, 0.5019607843);
  padding: 10px;
  border-radius: 20px;
  position: relative;
}
section#control_charts_sec .upload_file_sec .upload_side .material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}
section#control_charts_sec .upload_file_sec .upload_side .upload_form {
  height: 200px;
  background: rebeccapurple;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: rgba(0, 1, 0, 0.5);
  color: rgba(36, 181, 255, 0.5);
  gap: 10px;
}
section#control_charts_sec .upload_file_sec .upload_side .upload_form span.upload_icon {
  font-size: 70px;
  margin-top: -20px;
}
section#control_charts_sec .upload_file_sec .upload_side .upload_form input {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
}
section#control_charts_sec .upload_file_sec .upload_side .upload_form p {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -10px;
}
section#control_charts_sec .upload_file_sec .upload_side .upload_form p span:nth-child(2) {
  font-size: 12px;
}
section#control_charts_sec .upload_file_sec .upload_side .upload_form p span:nth-child(3) {
  background: rgba(36, 181, 255, 0.5);
  padding: 5px 10px;
  border-radius: 20px;
  color: #000100;
  position: absolute;
  bottom: 22px;
  cursor: pointer;
  transition: 0.5s ease-in-out all;
}
section#control_charts_sec .upload_file_sec .upload_side .upload_form p span:nth-child(3):hover {
  background: #24b5ff;
}
section#control_charts_sec .upload_file_sec .upload_side .uploaded_file_more {
  display: flex;
  align-items: center;
  gap: 10px;
}
section#control_charts_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: rgba(0, 1, 0, 0.2);
  border-radius: 30px;
  gap: 20px;
  color: #24b5ff;
  position: relative;
  cursor: pointer;
  width: 0;
  padding: 0;
  overflow: hidden;
  height: 57px;
  opacity: 0;
  transition: 0.5s ease-in-out all;
}
section#control_charts_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file.active {
  width: calc(100% - 114px - 20px);
  padding: 10px;
  opacity: 1;
}
section#control_charts_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file::after {
  content: "";
  position: absolute;
  width: 57px;
  height: 57px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
  right: 0;
  top: 0;
  border-radius: 30px;
  transition: 0.5s ease-in-out all;
}
section#control_charts_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file span {
  z-index: 2;
  transition: 0.5s ease-in-out all;
}
section#control_charts_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file span:nth-child(1) {
  font-size: 30px;
}
section#control_charts_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file span:nth-child(2) {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
section#control_charts_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file span:nth-child(2) i {
  font-size: 10px;
  color: rgba(36, 181, 255, 0.2);
}
section#control_charts_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file span:nth-child(3) {
  position: absolute;
  right: 10px;
  cursor: pointer;
  padding: 8px;
}
section#control_charts_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file.hover::after {
  width: 100%;
}
section#control_charts_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file.hover .material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 200, "GRAD" 0, "opsz" 24;
}
section#control_charts_sec .upload_file_sec .upload_side .uploaded_file_more button {
  width: 57px;
  height: 57px;
  border: transparent 1px solid;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: none;
  outline: none;
  transition: 0.5s ease-in-out all;
  cursor: pointer;
}
section#control_charts_sec .upload_file_sec .upload_side .uploaded_file_more button.show_more_files {
  background: rgba(0, 1, 0, 0.2);
  color: #24b5ff;
}
section#control_charts_sec .upload_file_sec .upload_side .uploaded_file_more button.show_more_files span {
  transition: 0.5s ease-in-out all;
}
section#control_charts_sec .upload_file_sec .upload_side .uploaded_file_more button.show_more_files:hover {
  background: #24b5ff;
}
section#control_charts_sec .upload_file_sec .upload_side .uploaded_file_more button.show_more_files:hover span.material-symbols-outlined {
  color: #000100;
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}
section#control_charts_sec .upload_file_sec .upload_side .uploaded_file_more button.submit_file {
  border: 1px solid rgba(36, 181, 255, 0.5);
  color: rgba(36, 181, 255, 0.5);
}
section#control_charts_sec .upload_file_sec .upload_side .uploaded_file_more button.submit_file.inactive {
  opacity: 0.5;
  pointer-events: none;
}
section#control_charts_sec .upload_file_sec .upload_side .uploaded_file_more button.submit_file span {
  transition: 0.5s ease-in-out all;
}
section#control_charts_sec .upload_file_sec .upload_side .uploaded_file_more button.submit_file:hover {
  border: transparent 1px solid;
  background: #000100;
  color: #24b5ff;
}
section#control_charts_sec .upload_file_sec .upload_side .uploaded_file_more button.submit_file:hover span {
  transform: rotate(45deg);
}
section#control_charts_sec .upload_file_sec .upload_side .files_holder {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 1, 0, 0.5019607843);
  left: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 10px;
  display: flex;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  height: 0;
  transition: 0.5s ease-in-out all;
  padding: 0;
}
section#control_charts_sec .upload_file_sec .upload_side .files_holder.active {
  height: 100%;
  padding: 10px;
}
section#control_charts_sec .upload_file_sec .upload_side .files_holder .files_holder_header {
  display: flex;
  padding: 10px;
  position: relative;
}
section#control_charts_sec .upload_file_sec .upload_side .files_holder .files_holder_header::before {
  content: "";
  position: absolute;
  background: rgba(36, 181, 255, 0.2);
  width: 50%;
  height: 1px;
  left: 10px;
  bottom: -5px;
}
section#control_charts_sec .upload_file_sec .upload_side .files_holder .files_holder_header p {
  font-size: 20px;
  color: #24b5ff;
}
section#control_charts_sec .upload_file_sec .upload_side .files_holder .files_holder_header span {
  position: absolute;
  right: 0;
  font-size: 25px;
  background: rgba(0, 1, 0, 0.5);
  padding: 10px;
  top: 0;
  border-radius: 50%;
  color: rgba(36, 181, 255, 0.5);
  transition: 0.5s ease-in-out all;
  cursor: pointer;
}
section#control_charts_sec .upload_file_sec .upload_side .files_holder .files_holder_header span:hover {
  background: #000100;
  rotate: 90deg;
  color: #24b5ff;
}
section#control_charts_sec .upload_file_sec .upload_side .files_holder .files ul {
  color: #24b5ff;
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 10px;
  height: 197px;
  overflow-y: scroll;
  overflow-x: hidden;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
section#control_charts_sec .upload_file_sec .upload_side .files_holder .files ul::-webkit-scrollbar {
  width: 10px;
}
section#control_charts_sec .upload_file_sec .upload_side .files_holder .files ul::-webkit-scrollbar-track {
  background: rgba(0, 1, 0, 0.2);
}
section#control_charts_sec .upload_file_sec .upload_side .files_holder .files ul::-webkit-scrollbar-thumb {
  background: rgba(36, 181, 255, 0.2);
  -webkit-transition: 0.5s ease-in-out all;
  transition: 0.5s ease-in-out all;
}
section#control_charts_sec .upload_file_sec .upload_side .files_holder .files ul::-webkit-scrollbar-thumb:hover {
  background: rgba(36, 181, 255, 0.5);
}
section#control_charts_sec .upload_file_sec .upload_side .files_holder .files ul li {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 10px;
  padding-left: 20px;
  background: rgba(0, 1, 0, 0.2);
  border-radius: 30px;
  position: relative;
  align-items: center;
  height: 57px;
  transition: 0.5s ease-in-out all;
  cursor: pointer;
}
section#control_charts_sec .upload_file_sec .upload_side .files_holder .files ul li span {
  transition: 0.5s ease-in-out all;
}
section#control_charts_sec .upload_file_sec .upload_side .files_holder .files ul li span:nth-child(1) {
  font-size: 30px;
}
section#control_charts_sec .upload_file_sec .upload_side .files_holder .files ul li span:nth-child(2) {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
section#control_charts_sec .upload_file_sec .upload_side .files_holder .files ul li span:nth-child(2) i {
  font-size: 10px;
  color: rgba(36, 181, 255, 0.2);
}
section#control_charts_sec .upload_file_sec .upload_side .files_holder .files ul li span:nth-child(3) {
  position: absolute;
  right: 0;
  padding: 20px;
  cursor: pointer;
}
section#control_charts_sec .upload_file_sec .upload_side .files_holder .files ul li:hover {
  transform: translateX(5px);
}
section#control_charts_sec .upload_file_sec .upload_side .files_holder .files ul li:hover span:nth-child(1).material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}
section#control_charts_sec .upload_file_sec .upload_side .files_holder .files ul li.selected {
  background: #000100;
}
section#control_charts_sec .upload_file_sec .upload_side .files_holder .files ul li.selected span.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}
section#control_charts_sec .upload_file_sec.active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
section#control_charts_sec .upload_file_sec.active .upload_side,
section#control_charts_sec .upload_file_sec.active .det-side {
  opacity: 1;
}
section#control_charts_sec .workspace_sec {
  display: none;
  position: absolute;
}
section#control_charts_sec .workspace_sec .wrk-sections {
  position: absolute;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s ease-in-out opacity;
}
section#control_charts_sec .workspace_sec .wrk-sections.active {
  padding: 10px;
  opacity: 1;
  width: 100%;
  padding-left: 30px;
}
section#control_charts_sec .workspace_sec .wrk-sections.active .cnt {
  height: 200px;
  overflow: hidden;
  overflow-y: auto;
  max-width: 700px;
  padding-left: 20px;
}
section#control_charts_sec .workspace_sec .wrk-sections#summary_window {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 30px;
}
section#control_charts_sec .workspace_sec .wrk-sections#summary_window h1 {
  font-size: 50px;
  position: relative;
}
section#control_charts_sec .workspace_sec .wrk-sections#summary_window h1::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 50px;
  bottom: -10px;
  background: #24b5ff;
}
section#control_charts_sec .workspace_sec .wrk-sections#summary_window p {
  font-size: 18px;
  font-weight: 300;
  color: #24b5ff;
}
section#control_charts_sec .workspace_sec .wrk-sections#summary_window p b {
  color: #24b5ff;
}
section#control_charts_sec .workspace_sec .wrk-sections#summary_window p i {
  color: #24b5ff;
  text-decoration: underline;
}
section#control_charts_sec .workspace_sec .wrk-sections#summary_window p.hint {
  color: black;
}
section#control_charts_sec .workspace_sec .wrk-sections#control_charts_window {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  height: 100%;
}
section#control_charts_sec .workspace_sec .wrk-sections#control_charts_window h1 {
  font-size: 40px;
}
section#control_charts_sec .workspace_sec .wrk-sections#control_charts_window .graphs_menu {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 30px));
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
  border-radius: 40px;
  height: 140px;
  width: 70px;
  display: none;
  z-index: 999;
}
section#control_charts_sec .workspace_sec .wrk-sections#control_charts_window .graphs_menu li {
  list-style: none;
  padding: 10px;
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(0, 1, 0, 0.5019607843);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.5s ease-in-out all;
  color: #000100;
}
section#control_charts_sec .workspace_sec .wrk-sections#control_charts_window .graphs_menu li span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
section#control_charts_sec .workspace_sec .wrk-sections#control_charts_window .graphs_menu li span.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}
section#control_charts_sec .workspace_sec .wrk-sections#control_charts_window .graphs_menu li span:nth-child(2) {
  color: #24b5ff;
  font-size: 30px;
  left: 20px;
}
section#control_charts_sec .workspace_sec .wrk-sections#control_charts_window .graphs_menu li::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(36, 181, 255, 0.5);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
section#control_charts_sec .workspace_sec .wrk-sections#control_charts_window .graphs_menu.active {
  display: flex;
}
section#control_charts_sec .workspace_sec .wrk-sections#control_charts_window .graphs_menu.active li.active, section#control_charts_sec .workspace_sec .wrk-sections#control_charts_window .graphs_menu.active li:hover {
  background: #24b5ff;
  color: #24b5ff;
}
section#control_charts_sec .workspace_sec .wrk-sections#control_charts_window .graphs_menu.active li.active::before, section#control_charts_sec .workspace_sec .wrk-sections#control_charts_window .graphs_menu.active li:hover::before {
  background: #000100;
}
section#control_charts_sec .workspace_sec .wrk-sections#control_charts_window .graphs_menu.active li:first-child {
  top: 0;
}
section#control_charts_sec .workspace_sec .wrk-sections#control_charts_window .graphs_menu.active li:last-child {
  bottom: 0;
}
section#control_charts_sec .workspace_sec .wrk-sections#control_charts_window .charts_cont {
  height: 400px;
  position: relative;
}
section#control_charts_sec .workspace_sec .wrk-sections#control_charts_window .charts_cont .control_chart_graph {
  height: 0%;
  width: 0%;
  position: absolute;
  opacity: 0;
  transition: 0.5s ease-in-out opacity;
  overflow: hidden;
}
section#control_charts_sec .workspace_sec .wrk-sections#control_charts_window .charts_cont .control_chart_graph.active {
  display: flex;
  height: 100%;
  width: 100%;
  opacity: 1;
}
section#control_charts_sec .workspace_sec.active {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 100%;
}
section#hospital_assessment_sec {
  padding: 0;
}
section#hospital_assessment_sec .upload_file_sec {
  display: none;
  position: absolute;
}
section#hospital_assessment_sec .upload_file_sec .upload_side,
section#hospital_assessment_sec .upload_file_sec .det-side {
  opacity: 0;
  width: 45%;
  display: flex;
  flex-direction: column;
}
section#hospital_assessment_sec .upload_file_sec .det-side {
  gap: 30px;
  width: 55%;
  padding: 20px;
}
section#hospital_assessment_sec .upload_file_sec .det-side h1 {
  font-size: 42px;
  text-align: center;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  font-weight: 400;
  color: #24b5ff;
}
section#hospital_assessment_sec .upload_file_sec .det-side h1 img {
  width: 100px;
}
section#hospital_assessment_sec .upload_file_sec .det-side h1 span {
  position: relative;
  padding: 0 20px;
  line-height: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  line-height: 35px;
}
section#hospital_assessment_sec .upload_file_sec .det-side h1 span i {
  font-size: 13px;
  font-style: normal;
  line-height: 20px;
}
section#hospital_assessment_sec .upload_file_sec .det-side h1 span::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background: rgba(36, 181, 255, 0.7);
  left: 0;
}
section#hospital_assessment_sec .upload_file_sec .det-side p {
  font-size: 16px;
  color: #24b5ff;
  width: 90%;
}
section#hospital_assessment_sec .upload_file_sec .det-side p b {
  color: #24b5ff;
}
section#hospital_assessment_sec .upload_file_sec .upload_side {
  gap: 10px;
  background: rgba(0, 1, 0, 0.5019607843);
  padding: 10px;
  border-radius: 20px;
  position: relative;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .upload_form {
  height: 250px;
  background: rebeccapurple;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: rgba(0, 1, 0, 0.5);
  color: rgba(36, 181, 255, 0.5);
  gap: 30px;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .upload_form span.upload_icon {
  font-size: 70px;
  margin-top: -40px;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .upload_form input {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .upload_form p {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -20px;
  padding: 0 40px;
  text-align: center;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .upload_form p span:nth-child(2) {
  font-size: 12px;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .upload_form p span:nth-child(3) {
  background: rgba(36, 181, 255, 0.5);
  padding: 5px 10px;
  border-radius: 20px;
  color: #000100;
  position: absolute;
  bottom: 30px;
  cursor: pointer;
  transition: 0.5s ease-in-out all;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .upload_form p span:nth-child(3):hover {
  background: #24b5ff;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .uploaded_file_more {
  display: flex;
  align-items: center;
  gap: 10px;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: rgba(0, 1, 0, 0.2);
  border-radius: 30px;
  gap: 20px;
  color: #24b5ff;
  position: relative;
  cursor: pointer;
  width: 0;
  padding: 0;
  overflow: hidden;
  height: 57px;
  opacity: 0;
  transition: 0.5s ease-in-out all;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file.active {
  width: calc(100% - 114px - 20px);
  padding: 10px;
  opacity: 1;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file::after {
  content: "";
  position: absolute;
  width: 57px;
  height: 57px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
  right: 0;
  top: 0;
  border-radius: 30px;
  transition: 0.5s ease-in-out all;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file span {
  z-index: 2;
  transition: 0.5s ease-in-out all;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file span:nth-child(1) {
  font-size: 30px;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file span:nth-child(2) {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file span:nth-child(2) i {
  font-size: 10px;
  color: rgba(36, 181, 255, 0.2);
}
section#hospital_assessment_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file span:nth-child(3) {
  position: absolute;
  right: 10px;
  cursor: pointer;
  padding: 8px;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file.hover::after {
  width: 100%;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file.hover .material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 200, "GRAD" 0, "opsz" 24;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .uploaded_file_more button {
  width: 57px;
  height: 57px;
  border: transparent 1px solid;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: none;
  outline: none;
  transition: 0.5s ease-in-out all;
  cursor: pointer;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .uploaded_file_more button.show_more_files {
  background: rgba(0, 1, 0, 0.2);
  color: #24b5ff;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .uploaded_file_more button.show_more_files span {
  transition: 0.5s ease-in-out all;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .uploaded_file_more button.show_more_files:hover {
  background: #24b5ff;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .uploaded_file_more button.show_more_files:hover span.material-symbols-outlined {
  color: #000100;
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .uploaded_file_more button.submit_file {
  border: 1px solid rgba(36, 181, 255, 0.5);
  color: rgba(36, 181, 255, 0.5);
}
section#hospital_assessment_sec .upload_file_sec .upload_side .uploaded_file_more button.submit_file.inactive {
  opacity: 0.5;
  pointer-events: none;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .uploaded_file_more button.submit_file span {
  transition: 0.5s ease-in-out all;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .uploaded_file_more button.submit_file:hover {
  border: transparent 1px solid;
  background: #000100;
  color: #24b5ff;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .uploaded_file_more button.submit_file:hover span {
  transform: rotate(45deg);
}
section#hospital_assessment_sec .upload_file_sec .upload_side .files_holder {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 1, 0, 0.5019607843);
  left: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 10px;
  display: flex;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  height: 0;
  transition: 0.5s ease-in-out all;
  padding: 0;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .files_holder.active {
  height: 100%;
  padding: 10px;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .files_holder .files_holder_header {
  display: flex;
  padding: 10px;
  position: relative;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .files_holder .files_holder_header::before {
  content: "";
  position: absolute;
  background: rgba(36, 181, 255, 0.2);
  width: 50%;
  height: 1px;
  left: 10px;
  bottom: -5px;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .files_holder .files_holder_header p {
  font-size: 20px;
  color: #24b5ff;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .files_holder .files_holder_header span {
  position: absolute;
  right: 0;
  font-size: 25px;
  background: rgba(0, 1, 0, 0.5);
  padding: 10px;
  top: 0;
  border-radius: 50%;
  color: rgba(36, 181, 255, 0.5);
  transition: 0.5s ease-in-out all;
  cursor: pointer;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .files_holder .files_holder_header span:hover {
  background: #000100;
  rotate: 90deg;
  color: #24b5ff;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .files_holder .files ul {
  color: #24b5ff;
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 10px;
  height: 197px;
  overflow-y: scroll;
  overflow-x: hidden;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
section#hospital_assessment_sec .upload_file_sec .upload_side .files_holder .files ul::-webkit-scrollbar {
  width: 10px;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .files_holder .files ul::-webkit-scrollbar-track {
  background: rgba(0, 1, 0, 0.2);
}
section#hospital_assessment_sec .upload_file_sec .upload_side .files_holder .files ul::-webkit-scrollbar-thumb {
  background: rgba(36, 181, 255, 0.2);
  -webkit-transition: 0.5s ease-in-out all;
  transition: 0.5s ease-in-out all;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .files_holder .files ul::-webkit-scrollbar-thumb:hover {
  background: rgba(36, 181, 255, 0.5);
}
section#hospital_assessment_sec .upload_file_sec .upload_side .files_holder .files ul li {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 10px;
  padding-left: 20px;
  background: rgba(0, 1, 0, 0.2);
  border-radius: 30px;
  position: relative;
  align-items: center;
  height: 57px;
  transition: 0.5s ease-in-out all;
  cursor: pointer;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .files_holder .files ul li span {
  transition: 0.5s ease-in-out all;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .files_holder .files ul li span:nth-child(1) {
  font-size: 30px;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .files_holder .files ul li span:nth-child(2) {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .files_holder .files ul li span:nth-child(2) i {
  font-size: 10px;
  color: rgba(36, 181, 255, 0.2);
}
section#hospital_assessment_sec .upload_file_sec .upload_side .files_holder .files ul li span:nth-child(3) {
  position: absolute;
  right: 0;
  padding: 20px;
  cursor: pointer;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .files_holder .files ul li:hover {
  transform: translateX(5px);
}
section#hospital_assessment_sec .upload_file_sec .upload_side .files_holder .files ul li:hover span:nth-child(1).material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .files_holder .files ul li.selected {
  background: #000100;
}
section#hospital_assessment_sec .upload_file_sec .upload_side .files_holder .files ul li.selected span.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}
section#hospital_assessment_sec .upload_file_sec.active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
section#hospital_assessment_sec .upload_file_sec.active .upload_side,
section#hospital_assessment_sec .upload_file_sec.active .det-side {
  opacity: 1;
}
section#hospital_assessment_sec .workspace_sec {
  display: none;
  position: absolute;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections {
  position: absolute;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s ease-in-out opacity;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections.active {
  padding: 10px;
  opacity: 1;
  width: 100%;
  padding-left: 30px;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections.active .cnt {
  height: 200px;
  overflow: hidden;
  overflow-y: auto;
  max-width: 700px;
  padding-left: 20px;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospital_comparison_summary_window {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 30px;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospital_comparison_summary_window h1 {
  font-size: 50px;
  position: relative;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospital_comparison_summary_window h1::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 50px;
  bottom: -10px;
  background: #24b5ff;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospital_comparison_summary_window p {
  font-size: 18px;
  font-weight: 300;
  color: #24b5ff;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospital_comparison_summary_window p b {
  color: #24b5ff;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospital_comparison_summary_window p i {
  color: #24b5ff;
  text-decoration: underline;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospital_comparison_summary_window p.hint {
  color: black;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window {
  position: relative;
  display: flex;
  padding-top: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  height: 100%;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window h1 {
  font-size: 40px;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window h1 span:nth-child(2) i:nth-child(2), section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window h1 span:nth-child(3) i:nth-child(2) {
  font-size: 12px;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_header {
  display: flex;
  justify-content: space-between;
  align-content: center;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_header ul {
  display: flex;
  gap: 20px;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_header ul li {
  cursor: default;
  list-style: none;
  background: rgba(0, 1, 0, 0.5019607843);
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  gap: 30px;
  padding: 10px;
  padding-left: 20px;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease-in-out all;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_header ul li span {
  color: #24b5ff;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_header ul li span:nth-child(2) {
  background: rgba(36, 181, 255, 0.7);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000100;
  font-weight: 600;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_header ul li:nth-child(2) span:nth-child(2) {
  background: rgba(0, 0, 0, 0.5);
  color: #24b5ff;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_header ul li:hover {
  gap: 40px;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info {
  width: 100%;
  height: 70%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospitals_container {
  width: 50%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospitals_container::-webkit-scrollbar {
  width: 10px;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospitals_container::-webkit-scrollbar-track {
  background: rgba(0, 1, 0, 0.2);
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospitals_container::-webkit-scrollbar-thumb {
  background: rgba(36, 181, 255, 0.2);
  -webkit-transition: 0.5s ease-in-out all;
  transition: 0.5s ease-in-out all;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospitals_container::-webkit-scrollbar-thumb:hover {
  background: rgba(36, 181, 255, 0.5);
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospitals_container ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px;
  padding-bottom: 30px;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospitals_container ul li {
  width: 100%;
  display: flex;
  background: rgba(0, 1, 0, 0.5019607843);
  height: 57px;
  border-radius: 35px;
  padding: 10px;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  color: #24b5ff;
  font-size: 20px;
  position: relative;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospitals_container ul li span.num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000100;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospitals_container ul li span.show_more_detailes_btn {
  position: absolute;
  right: 10px;
  transition: 0.5s ease-in-out all;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000100;
  color: rgba(36, 181, 255, 0.5);
  cursor: pointer;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospitals_container ul li span.show_more_detailes_btn.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospitals_container ul li span.show_more_detailes_btn:hover {
  color: #000100;
  background: #24b5ff;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospitals_container ul li span.show_more_detailes_btn:hover.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 200, "GRAD" 0, "opsz" 24;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospitals_container ul li p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospitals_container ul li p span:nth-child(2) {
  font-size: 12px;
  color: rgba(36, 181, 255, 0.5);
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospitals_container ul li.out {
  background: rgba(0, 0, 0, 0.5);
  font-weight: 400;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospitals_container ul li.out span.show_more_detailes_btn {
  color: rgba(0, 0, 0, 0.5);
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospitals_container ul li.out span.show_more_detailes_btn:hover {
  color: #000100;
  background: black;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospital_detailes {
  width: 50%;
  height: 90%;
  padding: 10px;
  color: #24b5ff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 20px;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospital_detailes h2,
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospital_detailes h3 {
  font-weight: 400;
  letter-spacing: 2px;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospital_detailes .hos_data_cont {
  height: 100%;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospital_detailes .hos_data_cont p {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 10px;
  transition: 0.5s ease-in-out all;
  gap: 20px;
  cursor: default;
  position: relative;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospital_detailes .hos_data_cont p span {
  transition: 0.5s ease-in-out all;
  height: 100%;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospital_detailes .hos_data_cont p span:nth-child(1) {
  font-size: 15px;
  color: rgba(36, 181, 255, 0.7);
  padding-top: 5px;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospital_detailes .hos_data_cont p span.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospital_detailes .hos_data_cont p span:nth-child(2) {
  width: 60%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  color: rgba(36, 181, 255, 0.7);
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospital_detailes .hos_data_cont p span:nth-child(3) {
  position: absolute;
  right: 10px;
  width: 25%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospital_detailes .hos_data_cont p:hover span {
  color: #24b5ff;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospital_detailes .hos_data_cont p:hover span:nth-child(1) {
  transform: translateX(10px);
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospital_detailes .hos_data_cont::-webkit-scrollbar {
  width: 10px;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospital_detailes .hos_data_cont::-webkit-scrollbar-track {
  background: rgba(0, 1, 0, 0.2);
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospital_detailes .hos_data_cont::-webkit-scrollbar-thumb {
  background: rgba(36, 181, 255, 0.2);
  -webkit-transition: 0.5s ease-in-out all;
  transition: 0.5s ease-in-out all;
}
section#hospital_assessment_sec .workspace_sec .wrk-sections#hospitals_window .hospitals_more_info .hospital_detailes .hos_data_cont::-webkit-scrollbar-thumb:hover {
  background: rgba(36, 181, 255, 0.5);
}
section#hospital_assessment_sec .workspace_sec.active {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 100%;
}
section#outpatient_dep_sec {
  padding: 0;
}
section#outpatient_dep_sec .upload_file_sec {
  display: none;
  position: absolute;
}
section#outpatient_dep_sec .upload_file_sec .upload_side,
section#outpatient_dep_sec .upload_file_sec .det-side {
  opacity: 0;
  width: 45%;
  display: flex;
  flex-direction: column;
}
section#outpatient_dep_sec .upload_file_sec .det-side {
  gap: 30px;
  width: 55%;
  padding: 20px;
}
section#outpatient_dep_sec .upload_file_sec .det-side h1 {
  font-size: 42px;
  text-align: center;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  font-weight: 400;
  color: #24b5ff;
}
section#outpatient_dep_sec .upload_file_sec .det-side h1 img {
  width: 100px;
}
section#outpatient_dep_sec .upload_file_sec .det-side h1 span {
  position: relative;
  padding: 0 20px;
  line-height: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  line-height: 35px;
}
section#outpatient_dep_sec .upload_file_sec .det-side h1 span i {
  font-size: 13px;
  font-style: normal;
  line-height: 20px;
}
section#outpatient_dep_sec .upload_file_sec .det-side h1 span::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background: rgba(36, 181, 255, 0.7);
  left: 0;
}
section#outpatient_dep_sec .upload_file_sec .det-side p {
  font-size: 16px;
  color: #24b5ff;
  width: 90%;
}
section#outpatient_dep_sec .upload_file_sec .det-side p b {
  color: #24b5ff;
}
section#outpatient_dep_sec .upload_file_sec .upload_side {
  gap: 10px;
  background: rgba(0, 1, 0, 0.5019607843);
  padding: 10px;
  border-radius: 20px;
  position: relative;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .upload_form {
  height: 250px;
  background: rebeccapurple;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: rgba(0, 1, 0, 0.5);
  color: rgba(36, 181, 255, 0.5);
  gap: 30px;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .upload_form span.upload_icon {
  font-size: 70px;
  margin-top: -40px;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .upload_form input {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .upload_form p {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -20px;
  padding: 0 40px;
  text-align: center;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .upload_form p span:nth-child(2) {
  font-size: 12px;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .upload_form p span:nth-child(3) {
  background: rgba(36, 181, 255, 0.5);
  padding: 5px 10px;
  border-radius: 20px;
  color: #000100;
  position: absolute;
  bottom: 30px;
  cursor: pointer;
  transition: 0.5s ease-in-out all;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .upload_form p span:nth-child(3):hover {
  background: #24b5ff;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .uploaded_file_more {
  display: flex;
  align-items: center;
  gap: 10px;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: rgba(0, 1, 0, 0.2);
  border-radius: 30px;
  gap: 20px;
  color: #24b5ff;
  position: relative;
  cursor: pointer;
  width: 0;
  padding: 0;
  overflow: hidden;
  height: 57px;
  opacity: 0;
  transition: 0.5s ease-in-out all;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file.active {
  width: calc(100% - 114px - 20px);
  padding: 10px;
  opacity: 1;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file::after {
  content: "";
  position: absolute;
  width: 57px;
  height: 57px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
  right: 0;
  top: 0;
  border-radius: 30px;
  transition: 0.5s ease-in-out all;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file span {
  z-index: 2;
  transition: 0.5s ease-in-out all;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file span:nth-child(1) {
  font-size: 30px;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file span:nth-child(2) {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file span:nth-child(2) i {
  font-size: 10px;
  color: rgba(36, 181, 255, 0.2);
}
section#outpatient_dep_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file span:nth-child(3) {
  position: absolute;
  right: 10px;
  cursor: pointer;
  padding: 8px;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file.hover::after {
  width: 100%;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .uploaded_file_more .uploaded_file.hover .material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 200, "GRAD" 0, "opsz" 24;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .uploaded_file_more button {
  width: 57px;
  height: 57px;
  border: transparent 1px solid;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: none;
  outline: none;
  transition: 0.5s ease-in-out all;
  cursor: pointer;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .uploaded_file_more button.show_more_files {
  background: rgba(0, 1, 0, 0.2);
  color: #24b5ff;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .uploaded_file_more button.show_more_files span {
  transition: 0.5s ease-in-out all;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .uploaded_file_more button.show_more_files:hover {
  background: #24b5ff;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .uploaded_file_more button.show_more_files:hover span.material-symbols-outlined {
  color: #000100;
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .uploaded_file_more button.submit_file {
  border: 1px solid rgba(36, 181, 255, 0.5);
  color: rgba(36, 181, 255, 0.5);
}
section#outpatient_dep_sec .upload_file_sec .upload_side .uploaded_file_more button.submit_file.inactive {
  opacity: 0.5;
  pointer-events: none;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .uploaded_file_more button.submit_file span {
  transition: 0.5s ease-in-out all;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .uploaded_file_more button.submit_file:hover {
  border: transparent 1px solid;
  background: #000100;
  color: #24b5ff;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .uploaded_file_more button.submit_file:hover span {
  transform: rotate(45deg);
}
section#outpatient_dep_sec .upload_file_sec .upload_side .files_holder {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 1, 0, 0.5019607843);
  left: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 10px;
  display: flex;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  height: 0;
  transition: 0.5s ease-in-out all;
  padding: 0;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .files_holder.active {
  height: 100%;
  padding: 10px;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .files_holder .files_holder_header {
  display: flex;
  padding: 10px;
  position: relative;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .files_holder .files_holder_header::before {
  content: "";
  position: absolute;
  background: rgba(36, 181, 255, 0.2);
  width: 50%;
  height: 1px;
  left: 10px;
  bottom: -5px;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .files_holder .files_holder_header p {
  font-size: 20px;
  color: #24b5ff;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .files_holder .files_holder_header span {
  position: absolute;
  right: 0;
  font-size: 25px;
  background: rgba(0, 1, 0, 0.5);
  padding: 10px;
  top: 0;
  border-radius: 50%;
  color: rgba(36, 181, 255, 0.5);
  transition: 0.5s ease-in-out all;
  cursor: pointer;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .files_holder .files_holder_header span:hover {
  background: #000100;
  rotate: 90deg;
  color: #24b5ff;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .files_holder .files ul {
  color: #24b5ff;
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 10px;
  height: 197px;
  overflow-y: scroll;
  overflow-x: hidden;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
section#outpatient_dep_sec .upload_file_sec .upload_side .files_holder .files ul::-webkit-scrollbar {
  width: 10px;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .files_holder .files ul::-webkit-scrollbar-track {
  background: rgba(0, 1, 0, 0.2);
}
section#outpatient_dep_sec .upload_file_sec .upload_side .files_holder .files ul::-webkit-scrollbar-thumb {
  background: rgba(36, 181, 255, 0.2);
  -webkit-transition: 0.5s ease-in-out all;
  transition: 0.5s ease-in-out all;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .files_holder .files ul::-webkit-scrollbar-thumb:hover {
  background: rgba(36, 181, 255, 0.5);
}
section#outpatient_dep_sec .upload_file_sec .upload_side .files_holder .files ul li {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 10px;
  padding-left: 20px;
  background: rgba(0, 1, 0, 0.2);
  border-radius: 30px;
  position: relative;
  align-items: center;
  height: 57px;
  transition: 0.5s ease-in-out all;
  cursor: pointer;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .files_holder .files ul li span {
  transition: 0.5s ease-in-out all;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .files_holder .files ul li span:nth-child(1) {
  font-size: 30px;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .files_holder .files ul li span:nth-child(2) {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .files_holder .files ul li span:nth-child(2) i {
  font-size: 10px;
  color: rgba(36, 181, 255, 0.2);
}
section#outpatient_dep_sec .upload_file_sec .upload_side .files_holder .files ul li span:nth-child(3) {
  position: absolute;
  right: 0;
  padding: 20px;
  cursor: pointer;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .files_holder .files ul li:hover {
  transform: translateX(5px);
}
section#outpatient_dep_sec .upload_file_sec .upload_side .files_holder .files ul li:hover span:nth-child(1).material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .files_holder .files ul li.selected {
  background: #000100;
}
section#outpatient_dep_sec .upload_file_sec .upload_side .files_holder .files ul li.selected span.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}
section#outpatient_dep_sec .upload_file_sec.active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
section#outpatient_dep_sec .upload_file_sec.active .upload_side,
section#outpatient_dep_sec .upload_file_sec.active .det-side {
  opacity: 1;
}
section#outpatient_dep_sec .workspace_sec {
  display: none;
  position: absolute;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections {
  position: absolute;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s ease-in-out opacity;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections.active {
  padding: 10px;
  opacity: 1;
  width: 100%;
  padding-left: 30px;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections.active .cnt {
  height: 200px;
  overflow: hidden;
  overflow-y: auto;
  max-width: 700px;
  padding-left: 20px;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 30px;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window h1 {
  font-size: 30px;
  font-weight: 400;
  width: 80%;
  position: relative;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window h1::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 50px;
  bottom: -10px;
  background: #24b5ff;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window p {
  font-size: 18px;
  font-weight: 300;
  color: #24b5ff;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window p b {
  color: #24b5ff;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window p i {
  color: #24b5ff;
  text-decoration: underline;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window p.hint {
  color: rgba(0, 0, 0, 0.5);
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary {
  width: 100%;
  height: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary::-webkit-scrollbar {
  width: 10px;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary::-webkit-scrollbar-track {
  background: rgba(0, 1, 0, 0.2);
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary::-webkit-scrollbar-thumb {
  background: rgba(36, 181, 255, 0.2);
  -webkit-transition: 0.5s ease-in-out all;
  transition: 0.5s ease-in-out all;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary::-webkit-scrollbar-thumb:hover {
  background: rgba(36, 181, 255, 0.5);
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary .graph {
  width: 100%;
  height: 340px;
  display: flex;
  gap: 10px;
  height: -moz-fit-content;
  height: fit-content;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary .graph #outpatient_clinics_graph {
  width: 70%;
  height: 360px;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary .graph .outpatient_graph_btns {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary .graph .outpatient_graph_btns button {
  width: 80%;
  display: flex;
  gap: 25px;
  padding: 10px;
  padding-left: 7px;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  background: none;
  outline: none;
  border: none;
  color: #24b5ff;
  position: relative;
  transition: 0.5s ease-in-out all;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary .graph .outpatient_graph_btns button span {
  color: #000100;
  transition: 0.5s ease-in-out all;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary .graph .outpatient_graph_btns button span.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary .graph .outpatient_graph_btns button::before {
  transition: 0.5s ease-in-out all;
  background: rgba(0, 1, 0, 0.5019607843);
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  z-index: -1;
  left: 0;
  background: rgba(36, 181, 255, 0.8);
  border-radius: 30px;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary .graph .outpatient_graph_btns button:hover, section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary .graph .outpatient_graph_btns button.active {
  color: #000100;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary .graph .outpatient_graph_btns button:hover::before, section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary .graph .outpatient_graph_btns button.active::before {
  width: 100%;
  background: #24b5ff;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary .graph .outpatient_graph_btns button:hover span, section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary .graph .outpatient_graph_btns button.active span {
  color: #000100;
  transition: 0.5s ease-in-out all;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary .graph .outpatient_graph_btns button:hover span.material-symbols-outlined, section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary .graph .outpatient_graph_btns button.active span.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary .graph .outpatient_graph_btns button:hover::before {
  background: rgba(36, 181, 255, 0.8);
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary .graph .outpatient_graph_btns button.active:hover::before {
  background: #24b5ff;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary .main_summary p {
  font-size: 15px;
  color: #24b5ff;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary .main_summary p i {
  color: #24b5ff;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary .main_summary h2,
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary .main_summary h3,
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary .main_summary h4,
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary .main_summary b {
  color: #24b5ff;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#outpatient_department_summary_window .full_summary .main_summary li {
  padding: 10px 20px;
  width: 70%;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window {
  position: relative;
  display: flex;
  padding-top: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  height: 100%;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window h1 {
  font-size: 40px;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window h1 span:nth-child(2) i:nth-child(2), section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window h1 span:nth-child(3) i:nth-child(2) {
  font-size: 12px;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_header {
  display: flex;
  justify-content: space-between;
  align-content: center;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_header .simulation_btns {
  display: flex;
  align-items: center;
  gap: 10px;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_header .simulation_btns .booking_period {
  position: relative;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_header .simulation_btns .booking_period label {
  position: absolute;
  color: #24b5ff;
  top: -25px;
  font-size: 12px;
  left: 0px;
  border-radius: 20px;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_header .simulation_btns .booking_period input {
  padding: 7px 20px;
  background: rgba(0, 1, 0, 0.5);
  border-radius: 25px;
  width: 200px;
  border: none;
  outline: none;
  font-size: 16px;
  transition: 0.5s ease-in-out all;
  color: #24b5ff;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_header .simulation_btns .booking_period input:focus {
  outline: none;
  background: #000100;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_header .simulation_btns select {
  padding: 10px;
  color: #24b5ff;
  cursor: pointer;
  border: none;
  outline: none;
  background: rgba(0, 1, 0, 0.5);
  border-radius: 20px;
  transition: 0.5s ease-in-out all;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_header .simulation_btns select:focus {
  outline: none;
  background: #000100;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_header .simulation_btns button {
  padding: 10px;
  cursor: pointer;
  border-radius: 30px;
  color: #24b5ff;
  background: #000100;
  border: none;
  transition: 0.5s ease-in-out all;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_header .simulation_btns button:hover {
  color: #000100;
  background: #24b5ff;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body {
  width: 100%;
  height: 65%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary {
  width: 70%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary h1,
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary h2,
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary h3 {
  color: #24b5ff;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary p {
  color: #24b5ff;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary p b {
  color: #24b5ff;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary p i {
  color: #24b5ff;
  text-decoration: underline;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary::-webkit-scrollbar {
  width: 10px;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary::-webkit-scrollbar-track {
  background: rgba(0, 1, 0, 0.2);
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary::-webkit-scrollbar-thumb {
  background: rgba(36, 181, 255, 0.2);
  -webkit-transition: 0.5s ease-in-out all;
  transition: 0.5s ease-in-out all;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary::-webkit-scrollbar-thumb:hover {
  background: rgba(36, 181, 255, 0.5);
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary .cl_graph {
  width: 100%;
  height: 340px;
  display: flex;
  gap: 10px;
  height: -moz-fit-content;
  height: fit-content;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary .cl_graph #cl_graph {
  width: 50%;
  height: 360px;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary .cl_graph #cl_graph h1 {
  font-size: 20px;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary .cl_graph .cl_graph_btns {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary .cl_graph .cl_graph_btns button {
  width: 80%;
  display: flex;
  gap: 25px;
  padding: 10px;
  padding-left: 7px;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  background: none;
  outline: none;
  border: none;
  color: #24b5ff;
  position: relative;
  transition: 0.5s ease-in-out all;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary .cl_graph .cl_graph_btns button span {
  color: #000100;
  transition: 0.5s ease-in-out all;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary .cl_graph .cl_graph_btns button span.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary .cl_graph .cl_graph_btns button::before {
  transition: 0.5s ease-in-out all;
  background: rgba(0, 1, 0, 0.5019607843);
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  z-index: -1;
  left: 0;
  background: rgba(36, 181, 255, 0.8);
  border-radius: 30px;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary .cl_graph .cl_graph_btns button:hover, section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary .cl_graph .cl_graph_btns button.active {
  color: #000100;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary .cl_graph .cl_graph_btns button:hover::before, section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary .cl_graph .cl_graph_btns button.active::before {
  width: 100%;
  background: #24b5ff;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary .cl_graph .cl_graph_btns button:hover span, section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary .cl_graph .cl_graph_btns button.active span {
  color: #000100;
  transition: 0.5s ease-in-out all;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary .cl_graph .cl_graph_btns button:hover span.material-symbols-outlined, section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary .cl_graph .cl_graph_btns button.active span.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary .cl_graph .cl_graph_btns button:hover::before {
  background: rgba(36, 181, 255, 0.8);
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary .cl_graph .cl_graph_btns button.active:hover::before {
  background: #24b5ff;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary .cl_sum {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary .cl_sum ul {
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .clinic_summary .cl_sum ul li {
  list-style: none;
  margin-bottom: 10px;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .simulation_graphs {
  width: 0;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  transition: 0.5s ease-in-out all;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .simulation_graphs.active {
  width: 30%;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .simulation_graphs h1 {
  font-size: 20px;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .simulation_graphs p {
  font-size: 15px;
  color: #24b5ff;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .simulation_graphs p b {
  color: #24b5ff;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .simulation_graphs p i {
  color: rgba(36, 181, 255, 0.8);
  text-decoration: underline;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .simulation_graphs .simulation_graph {
  height: 300px;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .simulation_graphs::-webkit-scrollbar {
  width: 10px;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .simulation_graphs::-webkit-scrollbar-track {
  background: rgba(0, 1, 0, 0.2);
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .simulation_graphs::-webkit-scrollbar-thumb {
  background: rgba(36, 181, 255, 0.2);
  -webkit-transition: 0.5s ease-in-out all;
  transition: 0.5s ease-in-out all;
}
section#outpatient_dep_sec .workspace_sec .wrk-sections#clinics_window .clinics_body .simulation_graphs::-webkit-scrollbar-thumb:hover {
  background: rgba(36, 181, 255, 0.5);
}
section#outpatient_dep_sec .workspace_sec.active {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 100%;
}
section#about_sec {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  height: 80vh;
  padding-bottom: 40px;
  padding-top: 20px;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
section#about_sec::-webkit-scrollbar {
  width: 10px;
}
section#about_sec::-webkit-scrollbar-track {
  background: rgba(0, 1, 0, 0.2);
  margin-top: 50px;
  margin-bottom: 50px;
}
section#about_sec::-webkit-scrollbar-thumb {
  background: rgba(36, 181, 255, 0.2);
  -webkit-transition: 0.5s ease-in-out all;
  transition: 0.5s ease-in-out all;
}
section#about_sec::-webkit-scrollbar-thumb:hover {
  background: rgba(36, 181, 255, 0.5);
}
section#about_sec .team_info,
section#about_sec .about_features,
section#about_sec .about_info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section#about_sec .team_info h1,
section#about_sec .about_features h1,
section#about_sec .about_info h1 {
  font-size: 42px;
  text-align: center;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}
section#about_sec .team_info h1 span,
section#about_sec .about_features h1 span,
section#about_sec .about_info h1 span {
  position: relative;
  padding: 0 20px;
  text-align: center;
  line-height: 42px;
}
section#about_sec .team_info h1 span::before,
section#about_sec .about_features h1 span::before,
section#about_sec .about_info h1 span::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background: rgba(36, 181, 255, 0.7);
  left: 0;
}
section#about_sec .team_info img,
section#about_sec .about_features img,
section#about_sec .about_info img {
  width: 100px;
}
section#about_sec .team_info p,
section#about_sec .about_features p,
section#about_sec .about_info p {
  width: 800px;
  color: #24b5ff;
  text-align: center;
}
section#about_sec .demo_display {
  margin-top: 20px;
}
section#about_sec .demo_display .demo {
  width: 700px;
  height: 360px;
}
section#about_sec .demo_display .demo .demo_cont {
  width: 100%;
  height: 100%;
  position: relative;
}
section#about_sec .demo_display .demo .demo_cont img {
  width: 100%;
  position: absolute;
}
section#about_sec .demo_display .demo .demo_cont video {
  top: 9px;
  left: 90px;
  width: 74%;
  position: absolute;
}
section#about_sec .about_features {
  margin-top: 30px;
  padding: 20px 0;
}
section#about_sec .about_features .features_list {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  transition: 0.5s ease-in-out all;
  transition-delay: 0.7s;
  justify-content: center;
}
section#about_sec .about_features .features_list li {
  display: flex;
  flex-direction: column;
  list-style: none;
  align-items: center;
  text-align: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px;
}
section#about_sec .about_features .features_list li span {
  transition: 0.5s ease-in-out all;
}
section#about_sec .about_features .features_list li span:nth-child(1) {
  font-size: 50px;
  padding: 10px;
  border-radius: 50%;
  color: #24b5ff;
}
section#about_sec .about_features .features_list li span:nth-child(1).material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}
section#about_sec .about_features .features_list li span:nth-child(2) {
  font-size: 12px;
  width: 150px;
  color: #24b5ff;
  transform: translateY(-10px);
  opacity: 0;
  transition: 0.5s ease-in-out all;
}
section#about_sec .about_features .features_list li:hover span:nth-child(1) {
  background: #24b5ff;
  color: #000100;
}
section#about_sec .about_features .features_list li:hover span:nth-child(1).material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 200, "GRAD" 0, "opsz" 24;
}
section#about_sec .about_features .features_list li:hover span:nth-child(2) {
  transform: translateY(0);
  opacity: 1;
}
section#about_sec .team_info ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
section#about_sec .team_info ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  width: 250px;
  height: 300px;
  padding: 20px;
  border-radius: 20px;
  cursor: pointer;
}
section#about_sec .team_info ul li:hover .personal_links {
  transform: translateY(0);
  opacity: 1;
}
section#about_sec .team_info ul li:hover span:nth-child(1) {
  transform: translateY(0px);
  opacity: 1;
}
section#about_sec .team_info ul li:hover span:nth-child(3) {
  transform: translateY(0px);
  opacity: 1;
  letter-spacing: 0px;
}
section#about_sec .team_info ul li:hover span:nth-child(4) {
  transform: translateY(0px);
  opacity: 1;
}
section#about_sec .team_info ul li .personal_links {
  margin-top: 20px;
  color: rgba(36, 181, 255, 0.7);
  font-size: 15px;
  transform: translateY(-20px);
  opacity: 0;
  transition: 0.5s ease-in-out all;
  transition-delay: 0.5s;
}
section#about_sec .team_info ul li .personal_links a {
  color: rgba(36, 181, 255, 0.7);
  transition: 0.5s ease-in-out all;
}
section#about_sec .team_info ul li .personal_links a:hover {
  color: #24b5ff;
}
section#about_sec .team_info ul li span {
  color: rgba(36, 181, 255, 0.7);
  font-size: 12px;
  text-align: center;
  transition: 0.5s ease-in-out all;
}
section#about_sec .team_info ul li span:nth-child(1) {
  font-weight: 400;
  color: #24b5ff;
  margin-bottom: 10px;
  transform: translateY(20px);
  opacity: 0;
}
section#about_sec .team_info ul li span:nth-child(3) {
  color: #24b5ff;
  font-size: 20px;
  margin-top: 10px;
  line-height: 21px;
  transform: translateY(-20px);
  opacity: 0;
  transition-delay: 0.1s;
}
section#about_sec .team_info ul li span:nth-child(3) i {
  font-size: 15px;
}
section#about_sec .team_info ul li span:nth-child(4) {
  transform: translateY(-20px);
  opacity: 0;
  transition-delay: 0.3s;
}
section#about_sec .team_info ul li .img_cont {
  width: 120px;
  height: 120px;
  padding: 10px;
  border: 1px solid #24b5ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
section#about_sec .team_info ul li .img_cont .img {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
  background: #24b5ff;
  color: #000100;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
}
section#about_sec .team_info ul li .img_cont .img img {
  width: 100px;
  height: 100px;
}
section#about_sec .team_info ul li:nth-child(3) {
  padding-bottom: 40px;
}

.user-menu {
  position: absolute;
  z-index: 9999999999;
  background: rgba(0, 1, 0, 0.5019607843);
  border-radius: 20px;
  top: 13%;
  right: 10%;
  padding: 0;
  width: 400px;
  height: 0px;
  transition: 0.5s ease-in-out height;
  overflow: hidden;
}
.user-menu .menu-cont {
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.5s ease-in-out left;
  transition-delay: 0.5s;
}
.user-menu.active {
  height: 210px;
}
.user-menu.active .menu-cont {
  left: 0;
}
.user-menu .menu-header {
  display: flex;
  gap: 20px;
  padding: 10px;
  align-items: center;
}
.user-menu .menu-header .user-icon {
  background: #24b5ff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.user-menu .menu-header .user-det {
  display: flex;
  flex-direction: column;
}
.user-menu .menu-header .user-det span:nth-child(1) {
  font-size: 25px;
  color: #24b5ff;
}
.user-menu .menu-header .user-det span:nth-child(2) {
  font-size: 14px;
  color: rgba(36, 181, 255, 0.5);
}
.user-menu ul {
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 10px;
}
.user-menu ul li {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  padding: 10px;
  transition: 0.5s ease-in-out all;
}
.user-menu ul li span {
  transition: 0.5s ease-in-out all;
}
.user-menu ul li span:nth-child(1).material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}
.user-menu ul li:not(:last-child) {
  color: rgba(36, 181, 255, 0.5);
  border-radius: 50px;
}
.user-menu ul li:not(:last-child):hover {
  background: #24b5ff;
}
.user-menu ul li:not(:last-child):hover span {
  color: rgba(0, 1, 0, 0.5019607843);
  transform: translateX(10px);
}
.user-menu ul li:not(:last-child):hover span.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}
.user-menu ul li:last-child {
  background: rgba(0, 1, 0, 0.5);
  border-radius: 50px;
  color: rgba(36, 181, 255, 0.5);
}
.user-menu ul li:last-child:hover span {
  color: #24b5ff;
  transform: translateX(10px);
}

.control_charts_graph_menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  right: 100px;
  background: rgba(0, 1, 0, 0.5019607843);
  padding: 20px 10px;
  border-radius: 50px;
  transition: 0.5s ease-in-out all;
  opacity: 0;
  pointer-events: none;
  top: 50%;
  transform: translateY(calc(-50% - 30px));
}
.control_charts_graph_menu.active {
  opacity: 1;
  pointer-events: auto;
}
.control_charts_graph_menu .l-ind,
.control_charts_graph_menu .r-ind {
  position: absolute;
  background: #000100;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: 0.5s ease-in-out all;
}
.control_charts_graph_menu .l-ind {
  left: -20px;
}
.control_charts_graph_menu .r-ind {
  right: -20px;
}
.control_charts_graph_menu .r-ind i {
  width: 0px;
  height: 0px;
  transition: 0.5s ease-in-out all;
  transition-delay: 0.5s;
  background: #24b5ff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.control_charts_graph_menu li {
  list-style: none;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s ease-in-out all;
  border-radius: 50%;
}
.control_charts_graph_menu li i {
  position: absolute;
  width: 0;
  height: 0;
  background: #24b5ff;
  opacity: 0;
  transition: 0.5s ease-in-out opacity;
  transition-delay: 0.6s;
  border-radius: 50%;
  z-index: 101;
}
.control_charts_graph_menu li span {
  font-size: 30px;
  transition: 0.5s ease-in-out all;
  color: rgba(36, 181, 255, 0.5);
}
.control_charts_graph_menu li span.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}
.control_charts_graph_menu li:hover span {
  color: rgba(242, 218, 191, 0.5);
  text-shadow: 0px 0px 29px rgba(242, 218, 191, 0.5);
}
.control_charts_graph_menu li.active i {
  height: 12px;
  width: 12px;
  left: -12px;
  opacity: 1;
}
.control_charts_graph_menu li.active span {
  color: #24b5ff;
}
.control_charts_graph_menu li.active span.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}
.control_charts_graph_menu li.active:nth-child(1) ~ i.l-ind {
  top: 30px;
}
.control_charts_graph_menu li.active:nth-child(2) ~ i.l-ind {
  top: 90px;
}

.features_detailes {
  background: #24b5ff;
  position: absolute;
  z-index: 1000000000000000000000000000000;
  background: rgba(0, 1, 0, 0.5);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  top: 50%;
  left: 50%;
  width: 0%;
  height: 0%;
  transition: 0.5s ease-in-out all;
  transform: translate(-50%, -50%);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.features_detailes.active {
  width: 100%;
  height: 100%;
}
.features_detailes .detailes_container {
  width: 900px;
  height: 600px;
  background: rgba(0, 1, 0, 0.5019607843);
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: 0.5s ease-in-out all;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  gap: 20px;
}
.features_detailes .detailes_container .fes {
  position: absolute;
  transition: 0.5s ease-in-out all;
  top: 100%;
}
.features_detailes .detailes_container .fes.active {
  top: 50%;
  transform: translateY(-50%);
}
.features_detailes .detailes_container h1 {
  font-size: 42px;
  text-align: center;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  color: #24b5ff;
}
.features_detailes .detailes_container h1 span {
  position: relative;
  padding: 0 20px;
  line-height: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  line-height: 35px;
}
.features_detailes .detailes_container h1 span i {
  font-size: 13px;
  font-style: normal;
  line-height: 20px;
}
.features_detailes .detailes_container h1 span::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background: rgba(36, 181, 255, 0.7);
  left: 0;
}
.features_detailes .detailes_container img {
  width: 100px;
}
.features_detailes .detailes_container p {
  font-size: 16px;
  color: #24b5ff;
  text-align: center;
  width: 700px;
}
.features_detailes .detailes_container .img_demo {
  position: relative;
  width: 700px;
  height: 310px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.features_detailes .detailes_container .img_demo img {
  width: 100%;
}
.features_detailes .cls_fes_det_win {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: none;
  border-radius: 20px;
  outline: none;
  border: none;
  transition: 0.5s ease-in-out all;
}
.features_detailes .cls_fes_det_win span {
  color: #24b5ff;
  transition: 0.5s ease-in-out all;
}
.features_detailes .cls_fes_det_win span.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}
.features_detailes .cls_fes_det_win:hover {
  background: #24b5ff;
}
.features_detailes .cls_fes_det_win:hover span {
  color: #000100;
  rotate: 90deg;
}
.features_detailes .cls_fes_det_win:hover span.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.main_header_menu {
  display: flex;
  position: absolute;
  justify-content: center;
  width: 80%;
  align-items: center;
  top: 20px;
  z-index: 10000000000000000;
}
.main_header_menu li {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.main_header_menu li button {
  padding: 10px 20px;
  border-radius: 30px;
  outline: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: 0.5s ease-in-out all;
}
.main_header_menu li button:first-child {
  background: rgba(0, 1, 0, 0.5019607843);
  color: rgba(36, 181, 255, 0.7);
}
.main_header_menu li button:first-child:hover {
  color: #24b5ff;
}
.main_header_menu li button:last-child {
  background: rgba(36, 181, 255, 0.7);
  color: rgba(0, 1, 0, 0.5019607843);
}
.main_header_menu li button:last-child:hover {
  background: #24b5ff;
  color: #000100;
}

section {
  position: absolute;
}
section.hero_section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  gap: 20px;
}
section.hero_section h1 {
  color: #24b5ff;
  font-weight: 300;
  font-size: 50px;
  line-height: 50px;
  text-align: center;
  max-width: 800px;
}
section.hero_section h1 span {
  color: #fff;
}
section.hero_section p {
  font-size: 20px;
  color: rgba(36, 181, 255, 0.7);
  letter-spacing: 10px;
}
section.hero_section p.project_stat {
  letter-spacing: 0;
  font-size: 16px;
  text-align: center;
  width: 700px;
  margin-bottom: 10px;
  color: #fff;
}
section.hero_section button.learn_more_btn {
  background: none;
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  border: none;
  outline: none;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
}
section.hero_section button.learn_more_btn span {
  color: #24b5ff;
  transition: 0.5s ease-in-out all;
}
section.hero_section button.learn_more_btn .material-symbols-outlined {
  color: #fff;
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}
section.hero_section button.learn_more_btn::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: #24b5ff;
  z-index: -1;
  right: 0;
  border-radius: 20px;
  transition: 0.5s ease-in-out width;
}
section.hero_section button.learn_more_btn:hover {
  color: #000100;
}
section.hero_section button.learn_more_btn:hover::after {
  width: 100%;
  border-radius: 20px;
}
section.hero_section button.learn_more_btn:hover span {
  color: #000100;
  color: #fff;
}
section.hero_section button.learn_more_btn:hover span:last-child {
  rotate: 45deg;
}
section.hero_section button.scroll_now {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
  cursor: pointer;
  background: none;
  color: rgba(36, 181, 255, 0.7);
  transition: 0.5s ease-in-out all;
  animation: scroll_down_btn_animation infinite 3s;
}
section.hero_section button.scroll_now .material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}
section.hero_section button.scroll_now span {
  font-size: 40px;
}
section.hero_section button.scroll_now:hover {
  color: #24b5ff;
}
section.hero_section img {
  width: 300px;
}
section.demo_section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  background: rgba(0, 1, 0, 0.1);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  padding-top: 50px;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
section.demo_section::-webkit-scrollbar {
  width: 10px;
}
section.demo_section::-webkit-scrollbar-track {
  background: rgba(0, 1, 0, 0.2);
  margin-top: 50px;
  margin-bottom: 50px;
}
section.demo_section::-webkit-scrollbar-thumb {
  background: rgba(36, 181, 255, 0.2);
  -webkit-transition: 0.5s ease-in-out all;
  transition: 0.5s ease-in-out all;
}
section.demo_section::-webkit-scrollbar-thumb:hover {
  background: rgba(36, 181, 255, 0.5);
}
section.demo_section .team_info,
section.demo_section .about_features,
section.demo_section .about_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
section.demo_section .team_info h1,
section.demo_section .about_features h1,
section.demo_section .about_info h1 {
  font-size: 42px;
  text-align: center;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}
section.demo_section .team_info h1 span,
section.demo_section .about_features h1 span,
section.demo_section .about_info h1 span {
  position: relative;
  padding: 0 20px;
  text-align: center;
  line-height: 42px;
}
section.demo_section .team_info h1 span::before,
section.demo_section .about_features h1 span::before,
section.demo_section .about_info h1 span::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background: rgba(36, 181, 255, 0.7);
  left: 0;
}
section.demo_section .team_info img,
section.demo_section .about_features img,
section.demo_section .about_info img {
  width: 190px;
}
section.demo_section .team_info p,
section.demo_section .about_features p,
section.demo_section .about_info p {
  width: 800px;
  color: #24b5ff;
  text-align: center;
  color: #fff;
}
section.demo_section .demo_display {
  margin-top: 20px;
}
section.demo_section .demo_display .demo {
  width: 700px;
  height: 360px;
}
section.demo_section .demo_display .demo .demo_cont {
  width: 100%;
  height: 100%;
  position: relative;
}
section.demo_section .demo_display .demo .demo_cont img {
  width: 100%;
  position: absolute;
}
section.demo_section .demo_display .demo .demo_cont video {
  width: 100%;
  position: absolute;
}
section.demo_section .demo_display .demo .demo_cont .screenshot {
  top: 9px;
  left: 90px;
  width: 74%;
  position: absolute;
}
section.demo_section .about_features {
  margin-top: 30px;
  padding: 20px 0;
}
section.demo_section .about_features .features_list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  transition: 0.5s ease-in-out all;
  transition-delay: 0.7s;
  justify-content: center;
}
section.demo_section .about_features .features_list li {
  display: flex;
  flex-direction: column;
  list-style: none;
  align-items: center;
  text-align: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px;
}
section.demo_section .about_features .features_list li span {
  transition: 0.5s ease-in-out all;
}
section.demo_section .about_features .features_list li span:nth-child(1) {
  font-size: 50px;
  padding: 10px;
  border-radius: 50%;
  color: #24b5ff;
}
section.demo_section .about_features .features_list li span:nth-child(1).material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}
section.demo_section .about_features .features_list li span:nth-child(2) {
  font-size: 12px;
  width: 150px;
  color: #24b5ff;
  transform: translateY(-10px);
  opacity: 0;
  transition: 0.5s ease-in-out all;
}
section.demo_section .about_features .features_list li:hover span:nth-child(1) {
  background: #24b5ff;
  color: #fff;
}
section.demo_section .about_features .features_list li:hover span:nth-child(1).material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 200, "GRAD" 0, "opsz" 24;
}
section.demo_section .about_features .features_list li:hover span:nth-child(2) {
  transform: translateY(0);
  opacity: 1;
}
section.demo_section .team_info ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
section.demo_section .team_info ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  width: 250px;
  height: 300px;
  padding: 20px;
  border-radius: 20px;
  cursor: pointer;
}
section.demo_section .team_info ul li:hover .personal_links {
  transform: translateY(0);
  opacity: 1;
}
section.demo_section .team_info ul li:hover span:nth-child(1) {
  transform: translateY(0px);
  opacity: 1;
}
section.demo_section .team_info ul li:hover span:nth-child(3) {
  transform: translateY(0px);
  opacity: 1;
  letter-spacing: 0px;
}
section.demo_section .team_info ul li:hover span:nth-child(4) {
  transform: translateY(0px);
  opacity: 1;
}
section.demo_section .team_info ul li:hover span.s_name {
  display: flex;
  flex-direction: column;
}
section.demo_section .team_info ul li:hover span.s_name i {
  font-style: normal;
}
section.demo_section .team_info ul li .personal_links {
  margin-top: 20px;
  color: rgba(36, 181, 255, 0.7);
  font-size: 15px;
  transform: translateY(-20px);
  opacity: 0;
  transition: 0.5s ease-in-out all;
  transition-delay: 0.5s;
}
section.demo_section .team_info ul li .personal_links a {
  color: rgba(36, 181, 255, 0.7);
  transition: 0.5s ease-in-out all;
}
section.demo_section .team_info ul li .personal_links a:hover {
  color: #24b5ff;
}
section.demo_section .team_info ul li span {
  color: rgba(36, 181, 255, 0.7);
  font-size: 12px;
  text-align: center;
  transition: 0.5s ease-in-out all;
}
section.demo_section .team_info ul li span:nth-child(1) {
  font-weight: 400;
  color: #24b5ff;
  margin-bottom: 10px;
  transform: translateY(20px);
  opacity: 0;
}
section.demo_section .team_info ul li span:nth-child(3) {
  color: #24b5ff;
  font-size: 20px;
  margin-top: 10px;
  line-height: 21px;
  transform: translateY(-20px);
  opacity: 0;
  transition-delay: 0.1s;
}
section.demo_section .team_info ul li span:nth-child(3) i {
  font-size: 15px;
}
section.demo_section .team_info ul li span:nth-child(4) {
  transform: translateY(-20px);
  opacity: 0;
  transition-delay: 0.3s;
}
section.demo_section .team_info ul li .img_cont {
  width: 120px;
  height: 120px;
  padding: 10px;
  border: 1px solid #24b5ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.demo_section .team_info ul li .img_cont .img {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
  background: #000;
  color: #24b5ff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
}
section.demo_section .team_info ul li .img_cont .img img {
  width: 100px;
  height: 100px;
}
section.demo_section .team_info ul li:nth-child(3) {
  padding-bottom: 40px;
}

.lan_menu {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: rgba(0, 1, 0, 0.5019607843);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0, 1, 0, 0.5019607843);
  padding: 20px 10px;
  border-radius: 50px;
  transition: 0.5s ease-in-out all;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
}
.lan_menu.active {
  opacity: 1;
  pointer-events: auto;
}
.lan_menu ul li {
  list-style: none;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s ease-in-out all;
  border-radius: 50%;
}
.lan_menu ul li span {
  font-size: 30px;
  transition: 0.5s ease-in-out all;
  color: rgba(36, 181, 255, 0.5);
}
.lan_menu ul li span.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}
.lan_menu ul li:hover span {
  color: rgba(242, 218, 191, 0.5);
  text-shadow: 0px 0px 29px rgba(242, 218, 191, 0.5);
}
.lan_menu ul:nth-child(2) li, .lan_menu ul:nth-child(1) li {
  background: rgba(0, 1, 0, 0.5);
  position: relative;
  transition: 0.5s ease-in-out all;
}
.lan_menu ul:nth-child(2) li span, .lan_menu ul:nth-child(1) li span {
  z-index: 9;
  transition: 0.5s ease-in-out all;
}
.lan_menu ul:nth-child(2) li::before, .lan_menu ul:nth-child(1) li::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  z-index: 0;
  transition: 0.5s ease-in-out all;
  background: #24b5ff;
  border-radius: 50%;
}
.lan_menu ul:nth-child(2) li:hover, .lan_menu ul:nth-child(1) li:hover {
  background: transparent;
}
.lan_menu ul:nth-child(2) li:hover span, .lan_menu ul:nth-child(1) li:hover span {
  color: #fff;
}
.lan_menu ul:nth-child(2) li:hover span.material-symbols-outlined, .lan_menu ul:nth-child(1) li:hover span.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}
.lan_menu ul:nth-child(2) li:hover::before, .lan_menu ul:nth-child(1) li:hover::before {
  width: 100%;
  height: 100%;
}
.lan_menu ul:last-child li {
  background: rgba(0, 1, 0, 0.5);
  position: relative;
  transition: 0.5s ease-in-out all;
  display: none;
}
.lan_menu ul:last-child li.active {
  display: flex;
}
.lan_menu ul:last-child li span {
  z-index: 9;
  transition: 0.5s ease-in-out all;
}
.lan_menu ul:last-child li::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  z-index: 0;
  transition: 0.5s ease-in-out all;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}
.lan_menu ul:last-child li:hover {
  background: transparent;
}
.lan_menu ul:last-child li:hover span {
  color: #24b5ff;
}
.lan_menu ul:last-child li:hover span.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}
.lan_menu ul:last-child li:hover::before {
  width: 100%;
  height: 100%;
}

.features_detailes {
  background: #24b5ff;
  position: absolute;
  z-index: 1000000000000000000000000000000;
  background: rgba(0, 1, 0, 0.5);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  top: 50%;
  left: 50%;
  width: 0%;
  height: 0%;
  transition: 0.5s ease-in-out all;
  transform: translate(-50%, -50%);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.features_detailes.active {
  width: 100%;
  height: 100%;
}
.features_detailes .detailes_container {
  width: 900px;
  height: 600px;
  background: rgba(0, 1, 0, 0.5019607843);
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: 0.5s ease-in-out all;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  gap: 20px;
}
.features_detailes .detailes_container .fes {
  position: absolute;
  transition: 0.5s ease-in-out all;
  top: 100%;
}
.features_detailes .detailes_container .fes.active {
  top: 50%;
  transform: translateY(-50%);
}
.features_detailes .detailes_container h1 {
  font-size: 42px;
  text-align: center;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  z-index: 999999;
  color: #24b5ff;
}
.features_detailes .detailes_container h1 span {
  position: relative;
  padding: 0 20px;
  line-height: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  line-height: 35px;
}
.features_detailes .detailes_container h1 span i {
  font-size: 13px;
  font-style: normal;
  line-height: 20px;
}
.features_detailes .detailes_container h1 span::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background: rgba(36, 181, 255, 0.7);
  left: 0;
}
.features_detailes .detailes_container img {
  width: 200px;
}
.features_detailes .detailes_container p {
  font-size: 16px;
  text-align: center;
  width: 700px;
  color: #fff;
}
.features_detailes .detailes_container .img_demo {
  position: relative;
  width: 700px;
  height: 310px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.features_detailes .detailes_container .img_demo img {
  width: 100%;
}
.features_detailes .cls_fes_det_win {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: none;
  border-radius: 20px;
  outline: none;
  border: none;
  transition: 0.5s ease-in-out all;
}
.features_detailes .cls_fes_det_win span {
  color: #24b5ff;
  transition: 0.5s ease-in-out all;
}
.features_detailes .cls_fes_det_win span.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}
.features_detailes .cls_fes_det_win:hover {
  background: #24b5ff;
}
.features_detailes .cls_fes_det_win:hover span {
  color: white;
  rotate: 90deg;
}
.features_detailes .cls_fes_det_win:hover span.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

@keyframes scroll_down_btn_animation {
  0% {
    color: rgba(36, 181, 255, 0.7);
    transform: translateY(-10px);
  }
  100% {
    color: rgba(36, 181, 255, 0);
    transform: translateY(50px);
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #000100;
  background: linear-gradient(rgba(0, 1, 0, 0.5), rgba(0, 1, 0, 0.5)), url("../images/backgrounds/wallpaperflare.com_wallpaper.jpg") no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
body .loader {
  position: absolute;
  z-index: 100000000000000000000000000000000000000000000000000000000;
  background: rgba(0, 1, 0, 0.5);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  top: 50%;
  left: 50%;
  width: 0%;
  height: 0%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.5s ease-in-out all;
  transform: translate(-50%, -50%);
}
body .loader.active {
  width: 100%;
  height: 100%;
}
body .loader img {
  width: 100px;
  animation: loader_animate infinite 2s;
}
body input::-webkit-outer-spin-button,
body input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body input[type=number] {
  -moz-appearance: textfield;
}

@keyframes loader_animate {
  0% {
    opacity: 0;
    rotate: 0deg;
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  60% {
    opacity: 0;
    transform: scale(0.7);
  }
  70% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}/*# sourceMappingURL=style.css.map */