/*css document*/

/*index login page*/
.tech-login-bg {
  background-image: url("../images/login-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: end;
  align-items: center;
}
.login-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 92, 65, 0.37);
}
.tech-login-bg .accountdialog {
  margin-top: 0 !important;
  left: 0 !important;
  position: inherit !important;
  top: auto !important;

  max-width: 424px !important;

  width: 100% !important;

  margin-right: 148px;
  margin-left: 0 !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  display: flex;
  flex-wrap: wrap;
}

.tech-login-top-logo {
  border-radius: 16px 16px 0px 0px;
  background: #9ef5cf;
  padding: 0px 31px;
  min-height: 115px;
  display: flex;
  align-items: center;
}
.tech-login-top-logo img {
  width: 100%;
}
.tech-login-bottom {
  border-radius: 0px 0px 16px 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(9.5px);

  padding: 33px;
}
.tech-login-bottom form h3 {
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 21px;

  font-weight: 500;
  line-height: normal;
  margin: 0;
  margin-bottom: 24px;
}
.tech-login-bottom form .loginSection {
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;
  display: flex;
  height: 44px;
  align-items: center;
  margin-bottom: 24px;
}
.tech-login-bottom form .loginSection img {
  margin-left: 16px;
}
.tech-login-bottom form .loginSection input {
  width: 100%;
  border-radius: inherit !important;
  padding: 0;
  padding-left: 12px;
}
.tech-login-bottom form .loginSection input:focus {
}
.tech-login-bottom form .loginSection #showPassCheck {
  margin-right: 12px;
}
.tech-login-bottom .tech-options-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.tech-options-section div:nth-child(1) {
  display: none;
}
.tech-login-bottom .tech-options-section div {
  width: 100%;
}
.tech-login-bottom .tech-options-section label {
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.tech-login-bottom .tech-options-section input[type="checkbox"] {
  width: auto !important;
  margin: 4px 5px 0 0;
}
.tech-login-bottom form .tech-forgot-pass {
  text-align: right;
}
.tech-login-bottom form .tech-forgot-pass a {
  color: #0fbd87;
  text-decoration: none;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: right;
}
.tech-login-bottom form .signIn button {
  border-radius: 6px !important;
  background: #0fbd87;
  padding: 12px 0;
  border: none;
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2px;
}
.tech-login-bottom form .tech-already-acc {
  margin-top: 24px;
}
.tech-login-bottom form .tech-already-acc p {
  color: #333;
  margin: 0;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.tech-login-bottom form .tech-already-acc a {
  color: #0fbd87;
  text-decoration: none;
}

.tech-login-error {
  color: #e33737;
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-bottom: 15px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .tech-login-bg {
    justify-content: center;
  }
  .tech-login-bg .accountdialog {
    margin-right: 0 !important;
  }
  .tech-login-bg .accountdialog {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .tech-options-section div:nth-child(1) {
    display: block;
  }
  .tech-options-section div {
    width: fit-content !important;
  }
}

@media screen and (max-width: 375px) {
  /*.tech-login-bg{
		background-position: -44px -264px;
	}*/
  .tech-login-bg {
    background-position: -92px -390px;
    height: 100vh;
    background-size: 668px 1222px;
  }
  .tech-login-bg .accountdialog {
    margin-right: 24px !important;
    margin-left: 24px !important;
    margin-top: 100px !important;
  }
  .tech-login-top-logo {
    min-height: 81px;
  }
  .tech-login-bottom form .loginSection {
    margin-bottom: 20px;
  }
  .tech-login-bottom form .signIn button {
    padding: 9px 0;
  }
  .tech-login-bottom form .tech-already-acc p {
    padding: 0 22px;
  }

  .tech-login-bottom form .tech-forgot-pass {
    margin-top: 6px;
  }
}

/*home page*/
.tech-home-main {
  display: flex;
  position: relative;
}
.tech-mobile-menu {
  display: none;
}
.tech-home-main .tech-home-left-menu {
  max-width: 58px;
  background: #fff;
  height: 100%;
  z-index: 99;
  transition: all 0.3s ease;

  box-shadow: 1px 0px 2px 0px rgba(0, 0, 0, 0.16);
}
.tech-home-logo {
  background: #9ef5cf;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 58px;
}
.tech-home-main .tech-home-logo img {
  width: 35px;
}
.tech-home-main .tech-home-menu-nav {
  display: flex;
  justify-content: center;
}
.tech-home-main .tech-home-menu-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tech-home-main .tech-home-menu-nav ul li a {
  display: block;
  margin-top: 35px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #666666;
}
.tech-home-main .tech-home-menu-nav ul li a.active {
  background: #e8f8fb;
  color: #0fbd87;
}
.tech-home-main .tech-home-menu-nav ul li a:hover {
  background: #e8f8fb;
  color: #0fbd87;
}
.tech-home-main .tech-home-menu-nav ul li a i {
  font-size: 22px;
}
.tech-home-main .tech-home-menu-nav ul:nth-child(2) {
  margin-top: 171px;
  margin-bottom: 200px;
}

.tech-home-main-data {
  background: #fafafa;
}

.tech-home-main .tech-main-data-topbar {
  background: #fff;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
}
.tech-main-data-topbar .tech-mb-logo {
  display: none;
}
.tech-main-data-topbar .tech-mb-logo img {
  width: 100%;
}

.tech-home-main .tech-main-data-topbar div {
  width: fit-content;
}
.tech-home-main .tech-main-data-topbar-menu {
  padding-left: 40px;
  width: 50px;
}
.tech-home-main .tech-main-data-topbar-menu img {
  cursor: pointer;
}
#tech-mb-menu-open-btn {
  display: none;
}

.tech-home-main .tech-main-profile {
  padding-right: 27px;
  display: flex;
  align-items: center;
}
.tech-home-main .tech-main-profile .tech-main-profile-notification {
  padding-right: 25px;
}
.tech-home-main .tech-main-profile .tech-main-profile-notification span {
  color: #757575;
  position: relative;
}
.tech-home-main .tech-main-profile .tech-main-profile-notification span i {
  position: absolute;
  left: 14px;
  background: #ff0000;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  top: 4px;
}

.tech-home-main .tech-main-profile .tech-profile-img img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 10px;
}
.tech-home-main .tech-main-profile .tech-user-name p {
  margin: 0;
}
.tech-home-main .tech-main-profile .tech-user-name p:nth-child(1) {
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 14px;

  font-weight: 400;
  line-height: normal;
}
.tech-home-main .tech-main-profile .tech-user-name p:nth-child(2) {
  color: #666;

  font-family: "Poppins", sans-serif;
  font-size: 12px;

  font-weight: 400;
  line-height: normal;
}
.tech-home-main .tech-hom-profile-detail-inner {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.tech-home-main .tech-hom-profile-detail-inner .tech-arrow {
  padding-left: 15px;
}

/*profile popup*/
.tech-profile-popup-main {
  display: none;
  position: absolute;
  top: 45px;
  transition: all 0.3s ease;
}
.tech-home-main .tech-hom-profile-detail {
  position: relative;
}
.tech-home-main .tech-hom-profile-detail .tech-profile-popup {
  border-radius: 6px;
  border: 1px solid #e5e5e5;
  background: #fff;
  box-shadow: 2px 3px 12px 0px rgba(0, 0, 0, 0.16);

  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tech-home-main .tech-hom-profile-detail .tech-profile-popup ul {
  margin: 0;
  padding: 0;
  list-style: none;
  padding: 4px 0;
}
.tech-home-main .tech-hom-profile-detail .tech-profile-popup ul li a {
  color: #333;

  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  padding: 6px 40px 6px 11px;

  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  float: none;
  font-family: "Poppins", sans-serif;
}
.tech-home-main .tech-hom-profile-detail .tech-profile-popup ul li a:hover {
  background: #e8f8fb;
}
.tech-home-main .tech-hom-profile-detail .tech-profile-popup ul li a img {
  padding-right: 21px;
}
/*Home bottom table are*/
.tech-home-main .tech-home-main-bottom .tech-home-main-bottom-inner {
  width: calc(100% - 70px);
  padding: 32px 27px 45px 40px;
}

.tech-home-main-bottom-inner .tech-home-main-bottom-inner-logo-area {
  display: flex;
  justify-content: space-between;
}
.tech-home-main-bottom-inner .tech-home-main-bottom-inner-logo-area div {
  width: fit-content;
}
.tech-home-main-bottom-inner-logo-area img {
  width: 130px;
}
.tech-home-main
  .tech-home-main-bottom
  .tech-home-main-bottom-inner
  .tech-home-main-bottom-inner-logo-area
  h3 {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 22px;

  font-weight: 400;
  line-height: normal;
  margin: 0;
  padding: 0;
}
.tech-home-main
  .tech-home-main-bottom
  .tech-home-main-bottom-inner
  .tech-home-main-bottom-inner-logo-area
  p {
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  padding: 0;
}

.tech-home-main .tech-home-main-bottom .tech-filter-button-area {
  border-bottom: 1px solid #d5d5d5;
  display: flex;
  gap: 22px;
  margin-top: 0px;
}
.tech-home-main .tech-home-main-bottom .tech-filter-button-area label {
  width: fit-content;

  margin: 0;
  padding: 0;
  color: #666;
  font-family: "Poppins", sans-serif;
  font-size: 13px;

  font-weight: 500;
  line-height: normal;
  padding-bottom: 14px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.tech-home-main
  .tech-home-main-bottom
  .tech-filter-button-area
  label.tech-active-filter-label {
  color: #0fbd87;
  border-bottom: 2px solid #0fbd87;
}
.tech-home-main
  .tech-home-main-bottom
  .tech-filter-button-area
  input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
/*#statusSearch {
  display: none;
}*/

/*home search and button area*/
.tech-toggle-filter{
  display: none;
  transition: all 0.4s ease;
}
.tech-home-search-button-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}
.tech-home-search-button-area .tech-home-search {
  max-width: 434px;
  width: 100%;
}
.tech-home-search-button-area .tech-home-search label {
  position: relative;
  margin-top: 0;
}
.tech-home-search-button-area .tech-home-search label i {
  left: 12px;
  position: absolute;
  top: 6px;
}
.tech-home-search-button-area .tech-home-search label input {
  padding-left: 36px;
  border-radius: 4px;
  border: 1px solid #d5d5d5;
  height: 36px;
  color: #999;
  font-family: "Poppins", sans-serif;
  font-size: 13px;

  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.tech-home-main input:focus, .tech-home-main select:focus {
  border-color: #0fbd87 !important;
}
.tech-home-search-button-area .tech-home-search label input:focus + i {
  color: #0fbd87;
}
.tech-home-search-button-area .tech-home-buttons {
  width: fit-content;
  display: flex;
  gap: 12px;
}
.tech-home-search-button-area .tech-home-buttons button {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  height: 36px;
  line-height: 36px;
  display: inline-flex;
  padding: 0;
  padding: 0px 16px;
}
.tech-home-search-button-area .tech-home-buttons button.APPROVESET img {
  width: 18px;
  height: 18px;
  object-fit: cover;
  padding-right: 8px;
  position: relative;
  top: 5px;
}
.tech-home-search-button-area .tech-home-buttons button.APPROVESET {
  background: #0fbd87;
}
.tech-home-search-button-area .tech-home-buttons button.APPROVESET.inactive,
.tech-home-search-button-area .tech-home-buttons button.DELETEDSET.inactive {
  background: #ccc;
}
.tech-home-search-button-area .tech-home-buttons button.APPROVESET:hover {
  background: #0ea677;
}
.tech-home-search-button-area .tech-home-buttons button.reject {
  display: none;
}
.tech-home-search-button-area .tech-home-buttons button.reject.inactive {
  border: 1px solid #ccc;
  background: #fff;
  color: #ccc;
  padding: 0px 16px;
}
.tech-home-search-button-area .tech-home-buttons button.reject i {
  padding-right: 8px;
  font-size: 18px;
  position: relative;
  top: 5px;
}
.tech-home-search-button-area .tech-home-buttons button.reject {
  color: #e33737;
  border-color: #e33737;
  background: transparent;
}
.tech-home-search-button-area .tech-home-buttons button.reject:hover,
.tech-home-search-button-area .tech-home-buttons button.reject:hover i {
  color: #e33737;
  border-color: #e33737;
}
.tech-home-search-button-area .tech-home-buttons button.DELETEDSET img {
  position: relative;
  top: 4px;
}
.tech-home-search-button-area .tech-home-buttons button.DELETEDSET {
  background: #e33737;
}
.tech-home-search-button-area .tech-home-buttons button.DELETEDSET:hover {
  background: #cc1b1b;
}
.tech-home-search-button-area .tech-home-buttons button.filtered {
  border-radius: 4px;
  border: 1px solid #ccc;
  background: #fff;
  width: 36px;

  color: #999999;
  padding: 0;
}
.tech-home-search-button-area .tech-home-buttons button.filtered i {
  position: relative;
  top: 5px;
  left: 5px;
}

.tech-home-search-button-area .tech-home-buttons button.filtered.active {
  color: #0fbd87;
  border-color: #ccc;
}
.tech-home-search-button-area .tech-home-buttons button.filtered:hover {
  color: #0fbd87;
  border-color: #0fbd87;
}

/*table*/

.tech-table-sec {
  border-radius: 6px;
  border: 1px solid #d5d5d5;
  margin-top: 15px;
}
.mainTable {
  margin-top: 0;
  overflow: visible;
  max-height: initial;
}
.mainTable thead {
  height: 58px;
  background: #eceff2;
  white-space: nowrap;
}
.mainTable th,
.mainTable td {
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-top: 16px;
  border-bottom: 1px solid #d5d5d5;
}
.mainTable th {
  color: #757575 !important;
  line-height: 17px;
}

.mainTable th:nth-child(1),
.mainTable td:nth-child(1) {
  padding-left: 20px !important;
}
.mainTable td:nth-child(2) {
  color: #0fbd87;
  width: 120px;
}

.mainTable .FLAGCOLUMN {
  width: 30px;
  padding-right: 26px;
}
.mainTable td.awaitning-approval span {
  color: #f67e0e;
  border-radius: 14px;
  background: rgba(246, 126, 14, 0.1);
  padding: 4px 13px;
}
/*checkbox color*/
.mainTable .custom-check input[type="checkbox"] + label:before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: transparent; /* Replace with the desired background color */
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  border: 2px solid #cccccc; /* Optional border styling */
  border-radius: 4px;
}

/* Style the label text */
.mainTable tr th:nth-child(1),
.mainTable tr td:nth-child(1) {
  position: relative;
}
.mainTable .custom-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  left: 0;
  width: auto;
}
.mainTable .custom-check input[type="checkbox"] + label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin: 0;
}

/* Style the custom checkbox when checked */
.mainTable .custom-check input[type="checkbox"]:checked + label:before {
  background-color: #0fbd87; /* Change the background color when checked */
  border-color: #0fbd87;
}
.mainTable .custom-check input[type="checkbox"]:checked + label:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white,
    4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}

/*flag checkbox*/
.mainTable .FLAGCOLUMN input[type="checkbox"] + label:before {
  content: "\f097";
  font-family: FontAwesome;
  color: #999999;
  font-size: 18px;
}

.mainTable tr td.FLAGCOLUMN {
  position: relative;
}
.mainTable .FLAGCOLUMN input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  left: 0;
  width: auto;
}
.mainTable .FLAGCOLUMN input[type="checkbox"] + label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: fit-content;
}

.mainTable .FLAGCOLUMN input[type="checkbox"]:checked + label:before {
  content: "\f02e";
  color: #0fbd87;
  font-size: 18px;
}

.tech-table-bottom-area {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  align-items: center;
}
.tech-table-bottom-area div {
  width: fit-content;
}
.tech-table-bottom-area .tech-per-item {
  padding-left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tech-table-bottom-area .tech-per-item .tech-f-p2 {
  display: none;
}
.tech-table-bottom-area p {
  margin: 0;
  padding: 0;
  color: #222;
  font-size: 13px;
  margin: 0;
  padding: 0;

  font-weight: 400;
  line-height: normal;
  font-family: "Poppins", sans-serif;
}
.tech-table-bottom-area .tech-per-item select {
  width: auto;
  height: 36px;
  border-radius: 4px;
  border: 1px solid #d5d5d5;
  background: #fff;
}
.tech-table-bottom-area .tech-per-item select:focus {
  border-color: #0fbd87 !important;
  outline: none;
}
.tech-table-pagination {
  padding-right: 24px;
  display: flex;
  gap: 33px;
}

.tech-table-pagination ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
}
.tech-table-pagination ul li a {
  color: #222;
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-size: 13px;
  text-decoration: none;

  font-weight: 400;
  line-height: normal;
  margin-right: 20px;
}
.tech-table-pagination ul li a.active-page {
  border-radius: 7px;
  background: #0fbd87;
  color: #fff;
  padding: 2px 10px;
}

.tech-table-pagination ul li a.inactive-page {
  color: #c2c2c2;
}

@media screen and (max-width: 788px) {
  .tech-home-search-button-area .tech-home-search {
    max-width: fit-content;
  }
}

@media screen and (max-width: 568px) {
  /*menu*/
  #tech-mb-close-menu-btn {
    cursor: pointer;
  }
  .tech-mobile-menu {
    transition: all 0.3s ease;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 1px 0px 8px 0px rgba(0, 0, 0, 0.16);
    z-index: 101;
  }
  .tech-mobile-menu .tech-home-menu-nav {
    width: 311px;
    min-height: 812px;
    border-radius: 0px 20px 20px 0px;
    background: #fff;
    box-shadow: 1px 0px 8px 0px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
  }
  .tech-mobile-menu .tech-home-menu-nav .tech-mb-toggle-logo-button {
    height: 103px;
    border-radius: 0px 20px 0px 0px;
    background: #9ef5cf;
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding-left: 37px;
    padding-right: 29px;
  }
  .tech-mobile-menu .tech-home-menu-nav .tech-mb-toggle-logo-button div {
    width: fit-content;
  }
  .tech-mobile-menu
    .tech-home-menu-nav
    .tech-mb-toggle-logo-button
    .tech-mb-toggle-logo {
    padding-bottom: 16px;
  }
  .tech-mobile-menu
    .tech-home-menu-nav
    .tech-mb-toggle-logo-button
    .tech-mb-toggle-close-icon {
    padding-bottom: 24px;
  }
  .tech-mobile-menu .tech-home-menu-nav nav {
    padding-left: 34px;
    padding-right: 53px;
    width: 100%;
    padding-top: 46px;
  }
  .tech-mobile-menu .tech-home-menu-nav nav ul {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .tech-mobile-menu .tech-home-menu-nav nav ul li a {
    padding: 0;
    height: 40px;

    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 14px;
    color: #666;
    font-family: "Poppins", sans-serif;
    margin: 0;
  }
  .tech-mobile-menu .tech-home-menu-nav nav ul li a.active {
    background: #e7f8f3;
    color: #0fbd87;
  }
  .tech-mobile-menu .tech-home-menu-nav nav ul li a:hover {
    background: #e7f8f3;
    color: #0fbd87;
  }
  .tech-mobile-menu .tech-home-menu-nav nav ul li a i {
    padding-left: 12px;
    padding-right: 18px;
  }
  .tech-mobile-menu .tech-home-menu-nav nav ul:nth-child(2) {
    margin: 0;
    margin-top: 59px;
  }
  .tech-mobile-menu .tech-home-menu-nav .tech-mobile-bottom-logo {
    margin-top: 39px;
    border-top: 1px solid #e5e5e5;
    padding-top: 27px;
    padding-bottom: 35px;
    margin-right: 16px;
    margin-left: 16px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 19px;
  }
  .tech-mobile-menu
    .tech-home-menu-nav
    .tech-mobile-bottom-logo
    div:nth-child(2) {
    display: flex;
    justify-content: center;
    gap: 18px;
  }
  .tech-home-left-menu {
    display: none;
  }
  .tech-home-main .tech-main-data-topbar {
    height: 103px;
    background: #9ef5cf;
    align-items: end;
  }
  .tech-home-main .tech-main-data-topbar-menu {
    padding-left: 16px;
    padding-bottom: 24px;
  }
  #tech-mb-menu-open-btn {
    display: block;
  }
  #tech-desk-menu-btn {
    display: none;
  }
  .tech-main-data-topbar .tech-mb-logo {
    display: block;
    padding-bottom: 16px;
  }

  .tech-home-main .tech-main-profile {
    padding-right: 16px;
    padding-bottom: 16px;
  }
  .tech-main-profile-notification,
  .tech-hom-profile-detail-inner .tech-user-name,
  .tech-hom-profile-detail-inner img {
    display: none;
  }

  .tech-hom-profile-detail-inner .tech-profile-img img {
    display: block;
  }

  .tech-profile-popup-main {
    right: 0;
  }
  .tech-profile-popup-main .tech-profile-popup {
    width: 168px !important;
  }
  .tech-home-main .tech-home-main-bottom .tech-home-main-bottom-inner {
    padding: 14px 16px;
    width: calc(100% - 35px);
  }
  .tech-home-main-bottom-inner
    .tech-home-main-bottom-inner-logo-area
    div:nth-child(2) {
    display: none;
  }
  .tech-home-main .tech-home-main-bottom .tech-filter-button-area {
    margin-top: 14px;
  }
  .tech-home-search-button-area {
    margin-top: 12px;
  }

  .tech-home-search-button-area .tech-home-search label input {
    width: 0;
    padding-left: 22px;
    position: absolute;
    top: -17px;
    z-index: 100;
  }
  .tech-home-search-button-area .tech-home-search label i {
    left: 8px;
    top: -11px;
    z-index: 100;
  }
  .tech-home-search-mobile {
    width: 255px !important;
    padding-left: 35px !important;
  }
  .tech-table-bottom-area .tech-per-item {
    padding-left: 16px;
  }
  .tech-table-pagination {
    padding-right: 16px;
  }
  .tech-table-pagination p {
    display: none;
  }
  .tech-table-pagination ul {
    gap: 20px;
  }
  .tech-table-pagination ul li a {
    margin-right: 0;
  }
  .tech-table-bottom-area .tech-per-item .tech-f-p2 {
    display: block;
  }
  .tech-table-bottom-area .tech-per-item .tech-f-p1 {
    display: none;
  }

  /*.mainTable table{
		white-space: nowrap;
	}*/
}

/*hove rpatient page*/
.tech-custom-tooltip:before,
.tech-custom-tooltip:after {
  display: none !important;
}
.tech-custom-tooltip {
  position: relative;
}
.tech-tooltip-main {
  display: none;
}
.tech-custom-tooltip:hover .tech-tooltip-main {
  display: block;
}
.tech-tooltip-main > div {
  position: absolute;
  bottom: 60px;
  left: -13px;
  width: 249px;
  min-height: 190px;
  background: #fff;
  stroke-width: 1px;
  box-shadow: 2px 3px 12px rgba(0, 0, 0, 0.16);
  border-radius: 6px;
  z-index: 100;
  font-family: "Poppins", sans-serif;
}
.tech-tooltip-main h2 {
  color: #333;

  font-size: 15px;

  font-weight: 500;
  line-height: normal;
  margin: 0;
  margin: 10px 18px 0px 19px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ccc;
}

.tech-tooltip-inner {
  display: flex;
  margin-top: 7px;
}
.tech-tooltip-inner p {
  margin: 0;
  padding: 0;
  padding-left: 16px;
  padding-right: 38px;
}
.tech-tooltip-inner > span {
  padding-left: 17px;
  padding-top: 13px;
}
.tech-tooltip-inner:nth-child(2) > span {
  padding-top: 10px;
}
.tech-tooltip-inner p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
}
.tech-tooltip-inner p span {
  color: #666;
  font-size: 12px;
  font-weight: 500;
  padding-bottom: 4px;
}
.tech-tooltip-main > div:after {
  content: "";
  border-left: solid 10px transparent;
  border-right: solid 10px transparent;
  border-top: solid 12px #fff;
  height: 0;
  width: 0;
  position: absolute;
  bottom: -12px;
  left: 55px;
}
.tech-tooltip-main h2 img {
  float: right;
  display: none;
}
@media screen and (max-width: 1368px) {
  .tech-tooltip-main > div {
    bottom: 75px;
  }
}
@media screen and (max-width: 1068px) {
  .mainTable {
    overflow: auto;
  }
  .tech-tooltip-main > div {
    bottom: 5px;
  }
}
@media screen and (max-width: 568px) {
  body {
    position: relative;
  }
  .tech-custom-tooltip:hover .tech-tooltip-main,
  .tech-tooltip-main {
    display: none;
  }
  .tech-custom-tooltip {
    position: inherit !important;
  }
  .tech-tooltip-main {
    height: 100%;
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    z-index: 1000;
  }
  .tech-tooltip-main > div {
    top: 16%;
    background: #fff;
    width: 295px;
    height: 205px;

    margin: 0 auto;
    left: 0;
    right: 0;
  }
  .tech-tooltip-main > div:after {
    display: none;
  }
  .tech-tooltip-main h2 img {
    display: block;
  }
  .tech-tooltip-main h2 {
    margin-top: 15px;
    padding-bottom: 13px;
  }
  .tech-tooltip-inner {
    display: flex;
    margin-top: 15px;
  }
  .tech-patine-popup {
    display: block !important;
  }
}

/*filter css*/
.tech-home-search-button-area {
  position: relative;
}
.tech-filter-popup {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  box-shadow: 2px 3px 12px rgba(0, 0, 0, 0.16);
  background: #fff;
  max-width: 300px;
  border-radius: 5px;
  padding: 20px;
  z-index: 99;
}
.tech-filter-popup .tech-home-search {
  max-width: 100%;
}
.tech-filter-popup .tech-home-search-button-area .tech-home-search label input {
  position: inherit !important;
  width: 100% !important;
  top: 0 !important;
  padding-left: 33px !important;
}
.tech-home-search-button-area .tech-home-search label i {
  top: 7px !important;
}
.tech-home-search-button-area .tech-home-search label {
margin: 0;
    padding: 0;
    color: #666;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
    padding-bottom: 14px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}
@media screen and (max-width: 568px) {
  .tech-filter-popup .tech-home-search label input {
    position: inherit !important;
    width: 100% !important;
    top: 0 !important;
    padding-left: 33px !important;
  }
  .tech-filter-popup .tech-home-search label i {
    top: 7px !important;
  }
}
@media screen and (max-width: 400px) {
  .tech-filter-popup {
    padding: 15px;
  }
}
