@import url("https://fonts.googleapis.com/css2?family=Alata&family=Inter:wght@100..900&family=Kalam:wght@300;400;700&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");
@import url("https://fonts.googleapis.com/css2?family=Kaisei+Decol&display=swap");
@import url("https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&family=Barlow: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&family=Chango&family=Exo:ital,wght@0,100..900;1,100..900&family=Expletus+Sans:ital,wght@0,400..700;1,400..700&family=Inter:wght@100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Kanit: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&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Manrope:wght@200..800&family=Montserrat+Alternates: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&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&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&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Sen:wght@400..800&family=Vazirmatn:wght@100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  background-color: #674823;
  padding: 10px;
  display: none;
}

header .toggle {
  display: none;
  cursor: pointer;
}
.toggle i {
  font-size: 20px;
  color: #fff;
}

section {
  position: fixed;
  width: 280px;
  height: 100vh;
  top: 0;
  /* background: #252060; */
  background: #674823;
  transition: 0.5s;
  /* overflow-y: scroll; */
  z-index: 9;
}

@media (max-width: 1000px) {
  header .toggle {
    display: block;
  }

  header {
    display: block;
  }

  section {
    left: -280px;
    top: 7%;
  }

  section.active {
    left: 0;
  }
}

.menu-profile1 {
  display: flex;
  align-items: center;
  padding-top: 10%;
  padding-left: 10%;
  width: 100%;
}

.menu-profile1 img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.menu-profile1 h2 {
  font-family: "Kaisei Decol", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-left: 4%;
}

.menu-profile1 h3 {
  font-family: "Kaisei Decol", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #d4d8fd;
  margin-left: 4%;
  width: 100%;
}

section ul {
  padding-top: 5% !important;
  padding-right: 5%;
  margin-left: -7%;
}

section ul a {
  text-decoration: none;
  color: #fff;
  padding-left: 2%;
}

section ul li {
  list-style: none;
  padding-top: 4%;
  padding-bottom: 4%;
  margin-bottom: 5px;

  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  display: flex;
  align-items: center;
}

section ul li:hover {
  
  background: rgba(239, 255, 54, 0.5);
  border-radius: 10px;
}
section ul li a:hover{
   color: #fff; 
}

section ul li.active {
  background: rgba(239, 255, 54, 0.5);
  border-radius: 10px;
  /*padding: 5%;*/
}

section ul li img {
  padding-right: 5px;
}

section ul li:last-child {
  position: absolute;
  bottom: 5%;
  padding-top: 10%;
  border-top: 1px solid #ffffff;
  width: 80%;
}

.toggle {
  cursor: pointer;
  display: none;
}
.home-main-content {
  margin-left: 270px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 5%;
  background-color: #e1e1e0;
  border-radius: 10px;
  min-height: 100vh;
}

.main-header h1 {
  padding: 2%;
  font-family: "Jost", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #343c43;
  border-bottom: 1px solid #999999;
}

.dash-row {
  padding-bottom: 4%;
  padding-left: 3%;
  padding-right: 4%;
}
.dash-row1 {
    margin-top: 2% !important;
}

.dash-card {
  box-shadow: 0px 12px 25px 0px #ffffff80;
  background: #fff;
}

.dash-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #9792d180;
}
.dash-1 h2 {
  font-family: "Alata", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #1d194a;
}
.dash-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #db515180;
}
.dash-2 h2 {
  font-family: "Alata", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #681919;
}
.dash-3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #efff3680;
}
.dash-3 h2 {
  font-family: "Alata", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #787a0d;
}
.dash-4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #36ff2480;
}
.dash-4 h2 {
  font-family: "Alata", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #136d0b;
}

.dash-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
.dash-card span {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.table-dash h3 {
  font-family: "Alata", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #343c43;
  padding-left: 3%;
}

.foot-tablerow {
    padding-right: 10px !important;
}

.maintable-column {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 5px;
  margin-left: 40px;
  padding: 20px !important;
}
table.dataTable > thead .sorting:before,
table.dataTable > thead .sorting_asc:before,
table.dataTable > thead .sorting:after,
table.dataTable > thead .sorting_asc::after {
  content: "" !important;
}


.table select {
  width: 100px;
  height: 30px;
}
.dataTables_length {
  position: absolute;
  padding-top: 4px;
}
.dataTables_length select {
  border-radius: 3px;
  width: 60px !important;
  height: 30px;
  border: 1px solid rgb(230, 230, 230) !important;
}
.dataTables_length label {
  font-size: 14px;
  color: #666666;
}
#datatable_filter input {
  height: 35px !important;
  border-radius: 4px;
  padding-left: 3%;
  border: 1px solid rgb(230, 230, 230) !important;
}
div.dataTables_wrapper div.dataTables_paginate {
  margin: 0;
  white-space: nowrap;
  text-align: right;
}
.paginate_button {
  border: 1px solid lightgray;
  padding: 5px 15px;
  color: #666666;
  cursor: pointer;
  text-decoration: none;
}
.dataTables_paginate .current {
  background-color: #0d76ef !important;
  color: #fff;
}

.page-link {
  border: 0 !important;
}
.dataTables_info {
  padding-top: 10px;
}

tr {
  text-align: center;
}

th {
  background: #c4c3c3 !important;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  padding: 12px !important;
  border-bottom: 1px solid #dfdfdf !important;
}
td {
  background-color: #fff !important;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #383737;
  border-bottom: 1px solid #e4e4e4;
  padding: 15px 10px !important;
}

@media (max-width: 768px) {
  .home-main-content {
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    margin-right: 0;
  }
  .dash-card {
    margin-bottom: 3%;
  }
  .summary {
    flex-wrap: wrap;
    margin-top: 3%;
    margin-bottom: 3%;
  }
  .order1, .order3 {
    border-bottom: 1px solid #a5a5a5;
    border-right: 0 !important;
    padding: 5%;
  }
  .order2 {
    padding: 5% !important  ;
  }
  .summary-measure {
    flex-wrap: wrap;
  }
  .detail-card {
    margin-bottom: 3%;
  }
  .update-card {
    margin-bottom: 3%;
  }
  
}

.summary {
  padding: 2%;
  padding-left: 3%;
  padding-right: 3%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.order-summary {
  padding: 2%;
}

.summary h1 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #383737;
}

.measure-button {
  background: transparent !important;
  border: 0 !important;
  font-family: "Poppins", sans-serif;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #674823 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.summary button {
  padding: 8px 35px;
  background: #343c43;
  border-radius: 25px;
  border: 1px solid #343c43;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-right: 10px;
}

.summary button:hover {
  background: transparent;
  color: #343c43;
  transition: all 0.3s ease-in-out;
}

.order-card {
  display: flex;
  justify-content: space-around;
  padding: 3%;
}

.order1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5%;
  padding-top: 9%;
  padding-bottom: 9%;
  border-right: 1px solid #a5a5a5;
}
.order2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3%;
}
.order3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* padding: 3%; */
  border-right: 1px solid #a5a5a5;
}
.order4 {
  padding:5%;
}

.order1 h4,
.order2 h4,
.order3 h4{
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.order4 h4{
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
}

.order1 h5,
.order2 h5,
.order3 h5 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
.order4 h5 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

.form-row {
  padding: 3%;
}
.new-row {
  padding-top: 0%;
}

.form-row h2{
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-bottom: 2%;
}
.form-row h4{
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

.modal-item {
  padding-bottom: 6%;
}

/* .measure-card {
  padding: 2%;
} */
.measure-img {
  padding: 2%;
  border: 1px solid #000000;
  border-radius: 10px;
}

.measure-img img {
  width: 100%;
}

.measure-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #000;
  text-align: center;
  padding-top: 3%;
}

.modal-item label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 3%;
  color: #000;
}

.modal-body h1 {
  font-size: 22px;
  /* padding-left: 3%; */
}

.form-row h6 {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-left: 2%;
  color: #000;
}

.modal-profile {
  display: flex;
  align-items: center;
  margin-bottom: 3%;
}

.modal-item input,
.modal-item select,
.modal-item textarea {
  width: 100%;
  padding: 3%;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #000;
}

.modal-item-last {
  padding-bottom: 0% !important;
}

.modal-footer {
  display: flex;
  justify-content: flex-start !important;
  border: 0 !important;
  padding-top: 0 !important;
}

.modal-button {
  padding: 8px 25px;
  background: #343c43;
  border: 1px solid #343c43;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  margin-left: 3% !important;
}

.modal-button:hover {
  background: transparent;
  color: #343c43;
  transition: all 0.3s ease-in-out;
}

.bi-x-circle {
  color: #e41414;
  font-size: 20px;
  cursor: pointer;
}
.bi-info-circle {
  color: #136D0B;
  font-size: 20px;
  cursor: pointer;
}

.actions a {
  text-decoration: none;
}

.modal-width {
  max-width: 60% !important;
}

.custom-width {
  flex: 1;
  margin-right: 15px;         
}

.custom-width input {
  width: 100%;    
}

@media (max-width : 768px) {
  .modal-width {
    max-width: 100% !important;
  }
}

.table td button {
  padding: 0px 15px;
  background: transparent;
  border: 1px solid #136d0b;
  color: #136d0b;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.table td button:hover {
  background: #136d0b;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.tab-menu ul {
  margin: 0;
  padding: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #afafaf;
}
.tab-menu ul li {
  list-style-type: none;
  display: inline-block;
}
.tab-menu ul li a {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  padding: 0px 20px;
}
.tab-menu ul li a.active-a {
  color: #681919;
  padding-bottom: 10px;
  border-bottom: 3px solid #681919;
}
.tab {
  display: none;
}
.tab h2 {
  color: rgba(0, 0, 0, 0.7);
}
.tab p {
  color: rgba(0, 0, 0, 0.6);
  text-align: justify;
}
.tab-active {
  display: block;
}

.profile-card,
.profile-member,
.company-card-1,
.business-card,
.business-card1 {
  border: 1px solid #e3e3e3;
  box-shadow: 0px 2px 18px 0px #0000001a;
  background: #ffffff;
  border-radius: 5px;
}

.detail-card {
  border-radius: 10px;
  border: 1px solid #ABABAB;
  box-shadow: 0px 4px 30px 0px #00000040;
  background: #fff;
}

.item-header {
  padding: 3%;
  padding-left: 5%;
  background: #F2F2F2;
  border-radius: 10px 10px 0px 0px;
}

.item-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.card-row {
  padding: 5%;
}
.item-list h2 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #383737;
}

.item-list p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #656565;
}

.update-card {
  background: #fff;
  box-shadow: 0px 12px 45px 0px #FFFFFF80;
  border-radius: 10px;
  padding: 5%;
}

.update-card h2 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #343C43;
}

.update-card p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #656565;
}

.update-item {
  margin-bottom: 3%;
}

.update-item label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin-bottom: 2%;
}

.update-item input {
  width: 100%;
  padding: 2%;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
}

.update-button {
  padding: 8px 25px;
  background: #343c43;
  border: 1px solid #343c43;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  margin-top: 2%;
}

.update-button:hover {
  background: transparent;
  color: #343c43;
  transition: all 0.3s ease-in-out;
}

.login {
  background: rgba(238, 255, 54, 0.308);
  /* display: flex; */
}

.login-row {
  min-height: 100vh;
}

.login-right {
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  padding: 10%;
}

.login-right form {
  width: 100%;
  margin-top: 3%;
  margin-bottom: 3%;
}

.img-login {
  display: flex;
  justify-content: center;
  padding-top: 10%;
}

.img-login img {
  width: 80%;
}

.login-item {
  margin-bottom: 3%;
}

.login-item label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  color: #1e1e1e;
  margin-bottom: 2%;
}

.login-item input {
  width: 100%;
  border: 1px solid #747272;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #747272;
  padding: 3%;
} 

.login-item input:focus {
  outline: none;
}

.login-right h1 {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  color: #343C43;
}

.login-right p {
  font-family: "ABeeZee", sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 23.64px;
  text-align: center;
  color: #747272;
}

.forgot p {
  font-family: "Poppins",  sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #38A3A5;
  font-style: normal;
}

.login-button button {
  width: 100%;
  padding: 10px;
  background-color: #343C43;
  border: 2px solid #343C43;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  border-radius: 10px;
  margin-top: 4%;
}

.login-button button:hover {
  background-color: transparent;
  color: #343C43;
  transition: all 0.3s ease-in-out;
}

.login-append span {
  background: transparent;
  border: 0;
  border-radius: 10px;
  margin-top: 3px; 
  cursor: pointer;
}

.login-group {
  width: 100%;
  border: 1px solid #747272;
  border-radius: 10px;
} 

.login-group input {
  border: 0;
}

.login-group input:focus {
  box-shadow: none;
  outline: none;
  border: 0;
}
.account {
  font-family: "Abeezee", sans-serif;
  font-style: normal !important;
  font-size: 16px !important;
  font-weight: 400;
  line-height: 24.84px;
  text-align: center;  
  color: #000 !important;
  margin-top: 2%;
}

.account span {
  color: #38A3A5;
}

.modal-select {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;

}

.modal-select span {
  padding: 5px 10px;
  border-radius: 25px;
  border: 1px solid black;
  font-family: "Inter";
  font-weight: 400;
  font-size: 13px;
  margin-right: 10px;
  margin-bottom: 3px;
  display: flex;
}

.modal-select i {
  padding-left: 3%;
}

.accordion {
  background-color: #fff;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  outline: none;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border:0;
  border-bottom: 1px solid #959595;
}

.accordion span {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.active-accordion, .accordion:hover {
  background-color: #e4e3e3; 
}

.panel {
  padding: 10px;
  display: block;
  background-color: white;
  overflow: hidden;
}