@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap");
body {
  font-family: "Source Sans Pro", sans-serif;
  background-color: #161d30;
  min-height: 100vh;
  max-height: 100%;
  color: #fff;
}
main {
  padding: 0 2rem;
}
@media (max-width: 678px) {
  main {
    padding: 0 0.5rem;
  }
}
@keyframes sidebar_animation {
  from {
    margin-left: -100%;
    opacity: 0;
  }
  to {
    margin-left: 0;
    opacity: 1;
  }
}
.components-btn {
  color: #fff;
  border-color: transparent;
  background-color: transparent;
  text-align: center;
  font-size: 1.1rem;
  padding: 0.3rem 1rem;
  border-radius: 0.358rem;
  margin-right: 1rem;
  font-weight: 300;
}
.components-btn:hover {
  border-color: transparent;
  color: #fff;
  background-color: #161d30;
  cursor: pointer;
}
.components-btn:focus {
  background-color: transparent;
  outline: none;
}
body,
button,
input,
optgroup,
select,
textarea {
  font-family: "Source Sans Pro", sans-serif;
}
.disable-btn {
  cursor: not-allowed;
  pointer-events: none;
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
}
.nav-section {
  position: fixed;
  width: 100%;
}
.nav-section > div:not(:first-child) {
  background-color: #283046;
}
.nav-section_sidebar {
  position: absolute;
  background-color: transparent;
  width: 100%;
  height: 100vh;
  animation: sidebar_animation 1s;
}
.nav-section_sidebar > div {
  background-color: #283046;
  width: 260px;
  height: 100%;
  box-shadow: 0 4px 24px 0 rgba(34, 41, 47, 0.24);
}
.nav-section_sidebar__logo img {
  width: 4.5rem;
  margin: 1rem;
}
.nav-section_sidebar__logo i {
  font-size: 1.4rem;
  margin: auto 0;
  margin-right: 3rem;
  color: #7367f0;
  transition: 500ms;
}
.nav-section_sidebar__logo i:hover {
  cursor: pointer;
  transform: rotate(90deg);
}
.nav-section_sidebar__items ul li {
  font-size: 1.2rem;
  padding: 0.4rem 1rem;
  margin: 1rem auto;
  width: 14rem;
  transform: scale(1);
  transition: 1s;
  overflow: hidden;
}
.nav-section_sidebar__items ul li i {
  font-size: 2rem;
}
.nav-section_sidebar__items ul li:before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #7367f0;
  z-index: -1;
  transition: 0.5s;
}
.nav-section_sidebar__items ul li:hover:before {
  left: 0;
}
.nav-section_sidebar__items ul li:hover {
  cursor: pointer;
}
.main-nav {
  margin-bottom: 2rem;
  height: 4rem;
  padding: 0 2rem;
}
@media (max-width: 678px) {
  .main-nav {
    padding: 0 1rem;
  }
}
.main-nav_logo i {
  font-size: 2rem;
  margin: 0.5rem 0.5rem 0.5rem;
  display: none;
}
@media (max-width: 678px) {
  .main-nav_logo i {
    display: inline;
  }
}
.main-nav_logo img {
  width: 4.5rem;
}
.main-nav_iconset i {
  font-size: 1.5rem;
  margin-left: 1rem;
}
.main-nav_iconset i:hover {
  cursor: pointer;
}
.secondary-nav {
  margin: 0 2rem;
  height: 4rem;
  padding: 0 2rem;
  border-radius: 0.428rem;
  box-shadow: 0 4px 24px 0 rgba(34, 41, 47, 0.24);
}
@media (max-width: 678px) {
  .secondary-nav {
    display: none !important;
  }
}
.dashboard,
.customer,
.item,
.order {
  padding-top: 11.5rem;
}
@media (max-width: 678px) {
  .dashboard,
  .customer,
  .item,
  .order {
    padding-top: 5rem;
  }
}
.statistics {
  width: 100%;
  min-height: 15rem;
  max-height: 100%;
  background-color: #283046;
  border-radius: 0.428rem;
  box-shadow: 0 4px 24px 0 rgba(34, 41, 47, 0.24);
}
.statistics-text {
  padding: 0.1rem 1rem;
  width: 100%;
  height: 2.5rem;
  color: #d0d2d6;
}
.statistics-text h2 {
  font-weight: 600;
  font-size: 1.5rem;
}
.statistics-text h3 {
  font-weight: 500;
}
.statistics-info {
  padding: 0.1rem 1rem;
  width: 100%;
  min-height: 12.5rem;
  max-height: 100%;
  text-align: center;
}
.statistics-info div {
  margin: 4rem;
}
.statistics-info div i {
  font-size: 3rem;
}
.statistics-info div h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #d0d2d6;
}
.statistics-info div h4 {
  font-size: 1.2rem;
  font-weight: 600;
}
@media (max-width: 678px) {
  .statistics-info {
    flex-direction: column;
  }
  .statistics-info div {
    margin: 1rem;
  }
}
.dashboard-table {
  margin-top: 2rem;
  width: 100%;
}
.dashboard-table_customer h1 {
  text-align: center;
  font-weight: 800;
  margin: 1rem 0;
  font-size: 2rem;
}
.dashboard-table_customer__table {
  box-shadow: 0 4px 24px 0 rgba(34, 41, 47, 0.24);
  border-radius: 0.428rem;
}
.dashboard-table_customer__table thead {
  background-color: #343d55;
}
.dashboard-table_customer__table thead th {
  color: #d0d2d6;
  border: none;
}
.dashboard-table_customer__table tbody {
  background-color: #283046;
}
.dashboard-table_customer__table tbody tr {
  color: #fff;
}
@media (max-width: 1311px) {
  .customer_main {
    flex-direction: column;
  }
}
.customer-form {
  background-color: #283046;
  border-radius: 0.428rem;
  box-shadow: 0 4px 24px 0 rgba(34, 41, 47, 0.24);
  padding: 1rem;
  width: 60rem;
}
.customer-form label {
  color: #d0d2d6;
  font-size: 1rem;
}
.customer-form input {
  padding: 0.3rem;
  border-radius: 0.428rem;
  border: 0.2px solid #929292;
  font-size: 1.3rem;
  color: #fff;
  background-color: #283046;
}
.customer-form input:focus {
  border: 0.2px solid #7367f0;
  transition: 500ms;
  outline: none;
}
.customer-form input:focus::placeholder {
  padding-left: 0.5rem;
  transition: 500ms;
}
.customer-form_button {
  margin: 1.4rem 0;
}
.customer-form_button button {
  margin: 0 0.5rem;
}
.customer-form_button button:hover {
  background-color: #7367f0;
}
.customer-form_button__save {
  background-color: #7367f0;
}
.customer-form_button__update {
  background-color: #00cc14;
}
.customer-form_button__remove {
  background-color: #ea5455;
}
@media (max-width: 1311px) {
  .customer-form {
    width: 100%;
  }
}
.customer_table {
  margin-left: 2rem;
  width: 100%;
}
@media (max-width: 1311px) {
  .customer_table {
    margin: 1rem 0;
  }
}
@media (max-width: 1311px) {
  .item_main {
    flex-direction: column;
  }
}
.item-form {
  background-color: #283046;
  border-radius: 0.428rem;
  box-shadow: 0 4px 24px 0 rgba(34, 41, 47, 0.24);
  padding: 1rem;
  width: 40rem;
}
.item-form label {
  color: #d0d2d6;
  font-size: 1rem;
}
.item-form input {
  padding: 0.3rem;
  border-radius: 0.428rem;
  border: 0.2px solid #929292;
  font-size: 1.3rem;
  color: #fff;
  background-color: #283046;
}
.item-form input:focus {
  border: 0.2px solid #7367f0;
  transition: 500ms;
  outline: none;
}
.item-form input:focus::placeholder {
  padding-left: 0.5rem;
  transition: 500ms;
}
.item-form_button {
  margin: 1.4rem 0;
}
.item-form_button button {
  margin: 0 0.5rem;
}
.item-form_button button:hover {
  background-color: #7367f0;
}
.item-form_button__save {
  background-color: #7367f0;
}
.item-form_button__update {
  background-color: #00cc14;
}
.item-form_button__remove {
  background-color: #ea5455;
}
@media (max-width: 1311px) {
  .item-form {
    width: 100%;
  }
}
.item_table {
  margin-left: 2rem;
  width: 100%;
}
@media (max-width: 1311px) {
  .item_table {
    margin: 1rem 0;
  }
}
.order {
  width: 100%;
}
@media (max-width: 1311px) {
  .order-main {
    flex-direction: column;
  }
}
.order-invoice_details {
  height: 30rem;
  border-radius: 0.428rem;
  box-shadow: 0 4px 24px 0 rgba(34, 41, 47, 0.24);
  padding-bottom: 1rem;
  background-color: #283046;
}
.order-invoice_details_header {
  height: 3rem;
  padding: 0.5rem 1.5rem;
}
.order-invoice_details_header h3 {
  font-size: 1.5rem;
}
.order-invoice_details_input {
  padding: 0 1rem;
}
.order-invoice_details_input__set,
.order-invoice_details_input__set2 {
  margin: 0 0.5rem;
}
.order-invoice_details_input__set label,
.order-invoice_details_input__set2 label {
  color: #d0d2d6;
  font-size: 1rem;
  padding: 0.5rem 0;
}
.order-invoice_details_input__set input,
.order-invoice_details_input__set2 input {
  padding: 0.3rem;
  border-radius: 0.428rem;
  border: 0.2px solid #929292;
  font-size: 1.3rem;
  color: #fff;
  background-color: #283046;
}
.order-invoice_details_input__set input:focus,
.order-invoice_details_input__set2 input:focus {
  border: 0.2px solid #7367f0;
  transition: 500ms;
  outline: none;
}
.order-invoice_details_input__set input:focus::placeholder,
.order-invoice_details_input__set2 input:focus::placeholder {
  padding-left: 0.5rem;
  transition: 500ms;
}
.order-invoice_details_input__set2,
.order-invoice_details_input__set22 {
  margin: 0 1.5rem;
}
@media (max-width: 678px) {
  .order-invoice_details_input {
    flex-direction: column;
  }
}
@media (max-width: 1311px) {
  .order-invoice_details {
    margin-bottom: 1rem;
    height: 100%;
  }
}
.order-item_select {
  margin-left: 0.5rem;
  height: 30rem;
  padding-bottom: 1rem;
  border-radius: 0.428rem;
  box-shadow: 0 4px 24px 0 rgba(34, 41, 47, 0.24);
  background-color: #283046;
}
.order-item_select_header {
  height: 3rem;
  padding: 0.5rem 1.5rem;
}
.order-item_select_header h3 {
  font-size: 1.5rem;
}
.order-item_select_form_input {
  padding: 0 1rem;
  margin: 1rem 0;
}
.order-item_select_form_input__set,
.order-item_select_form_input__set2 {
  margin: 0 0.5rem;
}
.order-item_select_form_input__set label,
.order-item_select_form_input__set2 label {
  color: #d0d2d6;
  font-size: 1rem;
}
.order-item_select_form_input__set input,
.order-item_select_form_input__set2 input {
  padding: 0.3rem;
  border-radius: 0.428rem;
  border: 0.2px solid #929292;
  font-size: 1.3rem;
  color: #fff;
  background-color: #283046;
}
.order-item_select_form_input__set input:focus,
.order-item_select_form_input__set2 input:focus {
  border: 0.2px solid #7367f0;
  transition: 500ms;
  outline: none;
}
.order-item_select_form_input__set input:focus::placeholder,
.order-item_select_form_input__set2 input:focus::placeholder {
  padding-left: 0.5rem;
  transition: 500ms;
}
.order-item_select_form_input__set2,
.order-item_select_form_input__set22 {
  margin: 0 1.5rem;
}
@media (max-width: 678px) {
  .order-item_select_form_input {
    flex-direction: column;
  }
}
@media (max-width: 1311px) {
  .order-item_select {
    margin-left: 0;
  }
}
.order-total {
  height: 30rem;
  border-radius: 0.428rem;
  box-shadow: 0 4px 24px 0 rgba(34, 41, 47, 0.24);
  padding: 1rem;
  background-color: #283046;
}
.order-customer_id,
.order-item_id {
  padding: 0.3rem;
  border-radius: 0.428rem;
  border: 0.2px solid #929292;
  font-size: 1.3rem;
  color: #fff;
  background-color: #283046;
  line-height: 1.3;
  max-width: 100%;
  box-sizing: border-box;
}
.order-customer_id:focus,
.order-item_id:focus {
  outline: none;
}
.btn-add_order {
  margin-top: 1rem;
  margin-right: 0;
  background-color: #ea5455;
}
.btn-add_order:hover {
  background-color: #7367f0;
}
.btn-add_order:focus {
  background-color: #00cc14;
}
.btn-add_purchase {
  margin-top: 1rem;
  margin-right: 0;
  background-color: #00cc14;
}
.btn-add_purchase:hover {
  background-color: #7367f0;
}
.btn-add_purchase:focus {
  background-color: #00cc14;
}
.order-total_form {
  padding-bottom: 3rem;
  margin-top: 1rem;
}
.order-total_form__balance {
  background-color: #283046;
  border-radius: 0.428rem;
  box-shadow: 0 4px 24px 0 rgba(34, 41, 47, 0.24);
  width: 40rem;
  min-height: 20rem;
  max-height: 100%;
  margin-right: 1rem;
  padding: 1rem;
}
.order-total_form__balance h1 {
  font-size: 2.4rem;
  font-weight: 600;
}
.order-total_form__balance_info label {
  color: #d0d2d6;
  font-size: 1rem;
  margin: 0 0.5rem;
}
.order-total_form__balance_info input {
  margin: 0.5rem;
  padding: 0.3rem;
  border-radius: 0.428rem;
  border: 0.2px solid #929292;
  font-size: 1.3rem;
  color: #fff;
  background-color: #283046;
}
.order-total_form__balance_info input:focus {
  border: 0.2px solid #7367f0;
  transition: 500ms;
  outline: none;
}
.order-total_form__balance_info input:focus::placeholder {
  padding-left: 0.5rem;
  transition: 500ms;
}
@media (max-width: 1311px) {
  .order-total_form__balance {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.order-total_form__table {
  width: 100%;
  background-color: #283046;
  border-radius: 0.428rem;
  box-shadow: 0 4px 24px 0 rgba(34, 41, 47, 0.24);
}
.order-total_form__table_tbl thead {
  background-color: #343d55;
}
.order-total_form__table_tbl thead th {
  color: #d0d2d6;
  border: none;
}
.order-total_form__table_tbl tbody {
  background-color: #283046;
}
.order-total_form__table_tbl tbody tr {
  color: #fff;
}
@media (max-width: 1311px) {
  .order-total_form {
    flex-direction: column;
  }
}
