/* Google Font CDN Link */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
ul li {
  list-style-type: none;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
.login-section {
  height: 100vh;
  background-color: #f2622f;
  display: flex;
  justify-content: center;
  align-items: center;
}
.inner-login-section {
  width: 80%;
  background: #ffffff;
  border-radius: 10px;
}
.login-form-section h4 {
  color: #333;
  font-size: 30px;
}
.login-form-section label {
  font-size: 12px;
  color: #fc6f33;
  text-transform: capitalize;
}
.form-group {
  position: relative;
}
.login-form-section span {
  position: absolute;
  top: 35px;
  left: 22px;
}
.login-form-section i {
  color: #707171;
}
.login-input {
  border-radius: 28px;
  padding: 7px 50px;
  font-size: 14px;
}

.remember-input-text {
  color: #333;
}

.login-form-section button {
  background: #fc6f33;
  border: none;
  padding: 7px 35px;
  border-radius: 20px;
  text-align: center;
  margin: auto;
  display: block;
  color: #fff;
  font-weight: 500;
}

.forgot-text {
  text-align: center;
  margin-top: 30px;
}

.forgot-text a {
  color: #333333;
  font-weight: 400;
  font-size: 15px;
  text-transform: capitalize;
}

.top-section-image img {
  width: 200px;
  position: absolute;
  right: 0px;
  top: 0px;
}

.login-form-section {
  padding: 60px;
}

.form-logo {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-form-section p {
  color: #535755;
  font-size: 15px;
  text-transform: capitalize;
}

#forgot-btn {
  margin-top: 30px;
}

/* signup css start  */

.signup-input {
  border-radius: 28px;
  padding: 7px 50px;
  font-size: 14px;
  margin-bottom: -5px;
}

.inner-signup-section {
  width: 80%;
  background: #ffffff;
  border-radius: 10px;
}

.signup-section {
  height: 100vh;
  background-color: #f2622f;
  display: flex;
  justify-content: center;
  align-items: center;
}

.signup-form-section {
  padding: 30px 60px 30px 60px;
}

#signup-btn {
  margin-top: 30px;
}

/* signup css end  */

/* Reset password section */

.userInput {
  display: flex;
  justify-content: center;
}

.userInput input {
  margin: 10px;
  height: 35px;
  width: 65px;
  border: none;
  border-radius: 5px;
  text-align: center;
  font-family: arimo;
  font-size: 1.2rem;
  background: #eef2f3;
}

#reset-btn {
  margin-top: 15px;
}

/* Reset password section */

/* dashboard section start */

:root {
  --black-color: #11101d;
  --white-color: #fff;
  --sky-color: #e4e9f7;
  --light-black: #1d1b31;
}

::selection {
  color: var(--white-color);
  background: var(--black-color);
}

.sidebar-section {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 220px;
  background: #f3f3f3;
  padding: 6px 14px;
  z-index: 999;
  transition: all 0.5s ease;
}

.sidebar-section.active {
  width: 78px;
}

.sidebar-section ~ .right-section {
  z-index: 100;
  width: calc(100% - 220px);
  left: 220px;
}

.sidebar-section .logo_content .logo {
  opacity: 1;
  pointer-events: none;
}

.sidebar-section.active ~ .right-section {
  z-index: 100;
  width: calc(100% - 78px);
  left: 78px;
}

#toggle-btn {
  position: relative;
  color: #000;
  font-size: 32px;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 50px;
  transform: translateX(-50%);
  cursor: pointer;
  left: 28px;
}

.sidebar-section.active #toggle-btn {
  left: 90%;
}

.sidebar-section ul {
  margin-top: 8px;
}

.sidebar-section.active ul {
  margin-top: 0px;
}

.sidebar-section ul li {
  position: relative;
  height: 35px;
  width: 100%;
  margin: 2px 0;
  list-style: none;
  line-height: 35px;
}

.order-font {
  font-size: 0.7rem;
}

.sidebar-section ul li .tooltip {
  position: absolute;
  left: 125px;
  top: 0;
  transform: translate(-50%, -50%);
  border-radius: 6px;
  height: 35px;
  width: 120px;
  background: var(--white-color);
  line-height: 35px;
  text-align: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transition: 0s;
  opacity: 0;
  pointer-events: none;
  display: block;
}

.sidebar-section ul li .tooltip::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid var(--white-color);
  position: absolute;
  left: -8px;
  top: 7px;
}

.sidebar-section .logo_content .logo {
  color: var(--white-color);
  display: flex;
  height: auto;
  width: 100%;
  padding: 10px;
  align-items: center;
  opacity: 10;
  pointer-events: none;
  transition: all 0.5s ease;
}

.side-logo a {
  display: block;
}

.sidebar-section.active .logo_content .logo {
  opacity: 1;
  pointer-events: none;
}

.logo_content .logo .logo_name {
  font-weight: 600;
  margin-top: 21px;
  margin-left: 18px;
  font-size: 17px;
}

.sidebar-section ul li .tooltip {
  display: none;
}

.sidebar-section.active ul li .tooltip {
  display: block;
}

.sidebar-section ul li:hover .tooltip {
  transition: all 0.5s ease;
  opacity: 1;
  top: 50%;
}

.sidebar-section ul li a {
  color: var(--black-color);
  display: flex;
  text-transform: capitalize;
  align-items: center;
  text-decoration: none;
  border-radius: 12px;
  white-space: nowrap;
  transition: all 0.4s ease;
}

.sidebar-section ul li a:hover {
  background: #7eba68;
  color: #fff !important;
}

.sidebar-section ul li i {
  font-size: 18px;
  height: 35px;
  min-width: 50px;
  border-radius: 12px;
  line-height: 35px;
  text-align: center;
}

.sidebar-section .links_name {
  font-size: 15px;
  font-weight: 400;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.sidebar-section .links_name {
  transition: 0s;
  opacity: 1;
  pointer-events: auto;
}

.sidebar-section.active .links_name {
  display: none;
}

.sidebar-section .content {
  position: absolute;
  color: var(--white-color);
  bottom: 0;
  left: 0;
  width: 100%;
}

.sidebar-section .content .user {
  position: relative;
  padding: 10px 6px;
  height: 60px;
  background: none;
  transition: all 0.4s ease;
}

.sidebar-section.active .content .user {
  background: var(--light-black);
}

.content .user .user_details {
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: all 0.4s ease;
}

.sidebar-section.active .user .user_details {
  opacity: 1;
  pointer-events: auto;
}

.content .user .user_details img {
  height: 45px;
  width: 45px;
  object-fit: cover;
  border-radius: 12px;
}

.name_job {
  margin-left: 10px;
}

.user_details .name {
  font-size: 15px;
  font-weight: 400;
}

.user_details .job {
  font-size: 12px;
}

.right-section {
  position: absolute;
  height: 100%;
  width: calc(100% - 78px);
  left: 78px;
  transition: all 0.5s ease;
}

#dashboard-section {
  background: #fafafa;
}

/* header css start here */

.header-section {
  background-color: #fbfffa;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 0px 0 0px;
  box-shadow: 1px 4px #e4dede6b;
}

.header-image {
  width: 100%;
}

.language_four a img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.language_four i {
  margin-left: 18px;
  position: relative;
  top: 3px;
}

.language_four {
  float: right;
  margin-right: 7px;
}

.language_four a {
  color: #000;
  text-decoration: none;
  padding: 0px 10px;
}

ul.dropdown_lang {
  width: 150px;
  position: absolute;
  background: #ffffff;
  left: 69%;
  top: 52px;
  display: none;
  border-radius: 4px;
  z-index: 9;
  box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
}

#user-name {
  font-size: 18px;
  text-transform: capitalize;
  color: #554234;
  position: relative;
  top: 3px;
  left: 4px;
}

ul.dropdown_lang li {
  list-style: none;
  float: left;
  width: 100%;
  padding: 10px 24px;
}

#profile-image {
  width: 20px;
  height: 20px;
  color: #f9f9f9;
}

#logout-image {
  width: 20px;
  height: 20px;
}

ul.dropdown_lang li a {
  list-style: none;
  float: left;
  padding: 0px;
  color: #6f6363;
  text-transform: capitalize;
  font-size: 0.9rem;
}

/* header css end here */

/* order section start */

.order-section {
  width: 100%;
  display: flex;
  height: 110px;
  background: #333;
  align-items: center;
  padding: 0 15px;
  background-color: #17a2b8;
  border-radius: 10px;
}

.order-revenue-section {
  padding: 0 30px;
}

.order-text {
  width: 70%;
}

.order-text h4 {
  color: #fff;
  font-size: 17px;
  text-transform: capitalize;
  margin: 5px auto;
  margin-left: 10px;
}

.order-image {
  width: 75px;
  height: 60px;
  background: #fdfefe;
  display: flex;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: rgb(0 0 0 / 35%) 0px 1px 10px;
}

.right-order-section {
  width: 30%;
}

.order-image i {
  color: #17a2b8;
  font-size: 25px;
}

.order-revenue-section {
  margin-top: 30px;
}

.right-order-section h4 {
  text-align: right;
  color: #fff;
  font-size: 14px;
  margin: 8px auto;
}

.expenditure-section {
  background: #f2622f;
}

#arrow-icon {
  color: #f2622f;
}

.revenue-section {
  background: #7eba68;
}

#check-icon {
  color: #7eba68;
}

/* order section end */

/* management section start  */

.management-box {
  border-top: 1px solid #dfdcdc;
  border-bottom: 1px solid #dfdcdc;
  border-right: 1px solid #dfdcdc;
  height: 150px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  background: #ffffff;
}

.management-text {
  width: 70%;
}

.management-icon {
  width: 30%;
}

.management-section {
  padding: 50px 46px 0 46px;
}

#restaurant-box {
  border-right: none;
}

.more-info {
  margin-bottom: 0px;
}

.management-text h5 {
  color: #16284c;
  font-size: 17px;
  text-transform: capitalize;
  font-weight: 600;
}

.management-text h4 {
  color: #7eba68;
  font-size: 35px;
  text-transform: capitalize;
  font-weight: 600;
}

.management-text p {
  color: #a6a4a4;
  font-size: 16px;
  text-transform: capitalize;
}

.management-icon img {
  display: block;
  margin-left: auto;
}

.management-text i {
  color: #f2622f;
  margin-left: 10px;
}

#menu-text {
  color: #f2622f;
}

#registration-text {
  color: #f2622f;
}

#restaurant-text {
  color: #f2622f;
}

.management-icon img {
  width: auto;
}

/* management section end */

/* chart section start */

.chart-section {
  padding: 30px 32px 0 32px;
}

.chart-section h2 {
  color: #16284c;
  font-size: 25px;
  text-transform: capitalize;
  font-weight: 600;
}

.rating-icon {
  display: flex;
}

.rating-icon h4 {
  color: #a6a4a4;
  font-size: 14px;
  text-transform: capitalize;
  margin: 2px 10px;
}

.rating-icon i {
  color: #eb633b;
}

.pie-chart-section {
  background: #ffffff;
  height: 330px;
  padding-top: 20px;
}

.line-chart-section {
  background: #ffffff;
  height: 330px;
  padding-top: 20px;
}

.line-chart-section img {
  width: 380px;
  display: block;
  margin: auto;
}

.line-pie-chart {
  margin-top: 30px;
}

.pie-chart-section h4 {
  color: #16284c;
  font-size: 20px;
  text-transform: capitalize;
  margin-left: 20px;
  font-weight: 600;
}

.line-chart-section h4 {
  color: #16284c;
  font-size: 20px;
  text-transform: capitalize;
  margin-left: 20px;
  font-weight: 600;
}

.pie-chart-section img {
  display: block;
  margin: auto;
}

/* chart section end */

.dashboard-text {
  color: #16284c;
  font-size: 25px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 30px;
}

/* dashboard section end */

@media screen and (max-width: 1024px) {
  .login-form-section {
    padding: 40px 40px 40px 40px;
  }
  .form-logo img {
    width: 335px;
  }
  .login-form-section {
    padding: 20px 40px 20px 40px;
  }
  .signup-input {
    margin-bottom: -9px;
  }
  .login-form-section p {
    font-size: 13px;
  }
  .userInput input {
    margin: 10px;
    height: 33px;
    width: 50px;
  }
  ul.dropdown_lang {
    left: 57%;
  }
}

@media screen and (max-width: 991px) {
  .sidebar-section.active {
    width: 220px;
  }
  .sidebar-section.active ~ .right-section {
    z-index: -100;
    width: calc(100% - 78px);
    left: 78px;
  }
}

@media screen and (max-width: 768px) {
  .flex-wrap {
    width: 100%;
  }
  .btn-group-vertical > .btn,
  .btn-group > .btn {
    position: relative;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin-bottom: 0;
  }
  .inner-login-section {
    width: 94%;
  }
  .form-logo img {
    width: 321px;
  }
  .inner-signup-section {
    width: 94%;
  }
  .login-form-section {
    padding: 20px 40px 20px 40px;
  }
  .userInput input {
    margin: 10px;
    height: 28px;
    width: 40px;
  }
  .order-section {
    padding: 0 11px;
  }
  .order-image i {
    font-size: 15px;
  }
  .order-text h4 {
    font-size: 12px;
  }
  .order-image {
    width: 40px;
    height: 40px;
  }
  .right-order-section h4 {
    font-size: 12px;
  }
  .management-text h5 {
    font-size: 13px;
  }
  .line-chart-section img {
    width: 222px;
  }
  .pie-chart-section img {
    width: 185px;
  }
  .pie-chart-section {
    height: 281px;
  }
  .line-chart-section {
    height: 281px;
  }
  .management-text h4 {
    font-size: 24px;
  }
  .management-text p {
    font-size: 13px;
  }
  .management-box {
    padding: 0 10px;
  }
  ul.dropdown_lang {
    left: 39%;
  }
}

@media screen and (max-width: 767px) {
  .card-title {
    font-size: 1rem;
  }
  .text-right {
    padding: 0px;
  }
  .main-card {
    margin: 5% auto !important;
  }
  .management-section {
    padding: 30px 30px 0 30px;
  }
  .order-revenue-section {
    padding: 0 15px;
  }
  .language_four {
    margin-right: 0px;
  }
  ul.dropdown_lang {
    left: 51%;
  }
  .col_sm-2 {
    width: 100%;
    max-width: 10%;
  }
  .col_sm-6 {
    width: 100%;
    max-width: 90%;
  }
  .sidebar-section.active {
    width: 78px;
    left: 0px;
  }
  .sidebar-section {
    left: -220px;
  }
  .sidebar-section ~ .right-section {
    z-index: 100;
    width: calc(100%);
    left: 0px;
  }
  .sidebar-section.active .links_name {
    display: none;
  }
  .sidebar-section .links_name {
    transition: 0s;
    opacity: 1;
    pointer-events: auto;
  }
  .login-orange-section {
    flex-direction: column-reverse;
  }
  .expenditure-section {
    margin-top: 20px;
  }
  .revenue-section {
    margin-top: 20px;
  }
  .line-chart-section {
    margin-top: 20px;
  }
  .menu-box {
    border-left: 1px solid #dfdcdc;
    border-bottom: none;
  }
  .registration-box {
    border-left: 1px solid #dfdcdc;
  }
  #restaurant-box {
    border-right: 1px solid #dfdcdc;
    border-top: none;
  }
}

@media screen and (max-width: 575px) {
  .management-box {
    border-top: 1px solid #dfdcdc;
    border-left: 1px solid #dfdcdc;
    border-bottom: none;
  }
  #restaurant-box {
    border-bottom: 1px solid #dfdcdc;
    border-top: 1px solid #dfdcdc;
    border-right: 1px solid #dfdcdc;
  }
}

@media screen and (max-width: 576px) {
  .sidebar-section .logo_content .logo {
    height: auto;
  }
  .inner-login-section {
    width: 81%;
  }
  .form-logo img {
    width: 189px;
  }
  .login-form-section {
    padding: 4px 30px 12px 30px;
  }
  .login-form-section h4 {
    font-size: 22px;
  }
  .inner-signup-section {
    width: 81%;
  }
  .signup-section {
    height: 115vh;
  }
  .order-image {
    width: 50px;
    height: 47px;
  }
  .order-section {
    padding: 0 40px;
  }
  .order-image i {
    font-size: 22px;
  }
  .line-chart-section {
    font-size: 18px;
  }
  .order-text h4 {
    font-size: 18px;
  }
  .right-order-section h4 {
    font-size: 20px;
  }
  ul.dropdown_lang {
    left: 14%;
  }
}

@media screen and (max-width: 420px) {
  .header-section {
    height: 165px;
  }
  .header-image {
    width: 180px;
    display: block;
    margin: auto;
  }
  .header-section {
    padding: 0px;
  }
  .language_four {
    margin-right: 70px;
  }
  .sidebar-section ul {
    margin-top: 128px;
  }
}

@media screen and (max-width: 414px) {
  .fix-p .range-filter {
    margin-bottom: 10px;
    width: 100%;
  }
  .logo_content {
    margin-left: 0px;
  }
  .sidebar-section .logo_content .logo {
    height: 40px;
  }
  .dataTables_filter {
    margin: 15px 0px;
  }
  .flex-wrap {
    width: 100%;
  }
  .btn-group-vertical > .btn,
  .btn-group > .btn {
    width: 23.5%;
  }
  #example1_filter label,
  #example3_filter label {
    justify-content: flex-start !important;
  }
  #example1_filter input,
  #example3_filter input {
    width: 79% !important;
  }
  .login-form-section {
    padding: 4px 35px 12px 35px;
  }
  .form-logo img {
    margin-top: 10px;
  }
  .login-form-section button {
    padding: 6px 22px;
  }
  .userInput input {
    height: 26px;
    width: 34px;
  }
  .order-section {
    padding: 0 21px;
  }
  .dashboard-text {
    font-size: 18px;
  }
  .order-text h4 {
    font-size: 16px;
  }
  .management-box {
    padding: 0 17px;
  }
  .management-text h5 {
    font-size: 16px;
  }
  .management-text p {
    font-size: 15px;
  }
  .right-order-section h4 {
    font-size: 16px;
  }
  .header-section {
    height: 60px;
  }
  .header-image {
    width: 180px;
    display: block;
    margin: auto;
  }
  .header-section {
    padding: 0px;
  }
  .language_four {
    margin-right: 0px;
  }
  .sidebar-section ul {
    margin-top: 125px;
  }
  ul.dropdown_lang {
    left: 54%;
  }
  .chart-section h2 {
    font-size: 18px;
  }
  .rating-icon h4 {
    font-size: 12px;
  }
  .rating-icon i {
    font-size: 12px;
  }
}

@media screen and (max-width: 375px) {
  .fix-p .range-filter {
    margin-bottom: 10px;
    width: 100%;
  }
  .logo_content {
    margin-left: 0px;
  }
  .sidebar-section .logo_content .logo {
    height: 40px;
  }
  ul.dropdown_lang {
    left: 50%;
  }
  .dataTables_filter {
    margin: 15px 0px;
  }
  .flex-wrap {
    width: 100%;
  }
  .btn-group-vertical > .btn,
  .btn-group > .btn {
    width: 23.33%;
  }
  #example1_filter label,
  #example3_filter label {
    justify-content: flex-start !important;
  }
  #example1_filter input,
  #example3_filter input {
    width: 79% !important;
  }
  .language_four {
    margin-right: 0px;
  }
}

/*neeraj-08-09-21*/

.side-logo {
  text-align: center;
}

.main-card {
  width: 98%;
  margin: 1% auto;
}

.card-title {
  margin-bottom: 0rem;
  padding-top: 6px;
}

.start {
  width: auto;
  background-color: #f2622f;
  border-color: #f2622f;
}

.start:hover,
.start:focus,
.start:active {
  width: auto;
  background-color: #e6450c;
  border-color: #e6450c;
  box-shadow: none !important;
}

.dataTables_filter {
  text-align: right;
}

.dataTables_paginate {
  float: right;
}

.buttons-csv,
.buttons-excel,
.buttons-pdf,
.buttons-print {
  margin-right: 6px;
  background-color: #7eba68;
  border-color: #7eba68;
}

table.custome-height {
  /* max-height: calc(100vh - 335px); */
  overflow: auto;
  display: block;
  width: 100% !important;
}

table.custome-height td {
  width: 9%;
  vertical-align: top;
}

.mapouter {
  /* position: absolute !important; */
}

.edit-icon {
  font-size: 18px;
  color: #7eba68;
}

.delete-icon {
  font-size: 18px;
  color: #f2622f;
}

.buttons-csv:hover,
.buttons-excel:hover,
.buttons-pdf:hover,
.buttons-print:hover {
  margin-right: 6px;
  background-color: #f2622f;
  border-color: #f2622f;
}

.page-item.active .page-link {
  z-index: 2;
  color: #fff;
  background-color: #f2622f;
  border-color: #f2622f;
}

.foodtruck-row {
  width: 100%;
  margin: 2% auto;
}

#example1_filter label,
#example3_filter label {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#example1_filter input,
#example3_filter input {
  width: 30%;
  margin-left: 10px;
}

.dataTables_length label {
  display: flex;
  width: auto;
  align-items: center;
}

.dataTables_length select {
  width: 72px;
  margin: 0px 10px;
}

.pagination {
  margin: 0;
}

@media screen and (max-width: 360px) {
  .fix-p .range-filter {
    margin-bottom: 10px;
    width: 100%;
  }
  .logo_content {
    margin-left: 0px;
  }
  .sidebar-section .logo_content .logo {
    height: 40px;
  }
  ul.dropdown_lang {
    left: 48%;
  }
  .dataTables_filter {
    margin: 15px 0px;
  }
  .flex-wrap {
    width: 100%;
  }
  .btn-group-vertical > .btn,
  .btn-group > .btn {
    width: 23.22%;
  }
  #example1_filter label,
  #example3_filter label {
    justify-content: flex-start !important;
  }
  #example1_filter input,
  #example3_filter input {
    width: 79% !important;
  }
}

@media screen and (max-width: 320px) {
  .fix-p .range-filter {
    margin-bottom: 10px;
    width: 100%;
  }
  .logo_content {
    margin-left: 0px;
  }
  .sidebar-section .logo_content .logo {
    height: 40px;
  }
  ul.dropdown_lang {
    left: 40%;
  }
  .dataTables_filter {
    margin: 15px 0px;
  }
  .flex-wrap {
    width: 100%;
  }
  .btn-group-vertical > .btn,
  .btn-group > .btn {
    width: 23%;
  }
  #example1_filter label,
  #example3_filter label {
    justify-content: flex-start !important;
  }
  #example1_filter input#example3_filter input {
    width: 79% !important;
  }
}

@media print {
  table.custome-height {
    max-height: auto;
    overflow: visible;
  }
  .forprintlast td:last-child,
  table.forprintlast th:last-child {
    display: none;
  }
  .custom-width th:nth-child(6),
  .custom-width th:nth-child(5),
  .custom-width td:nth-child(6),
  .custom-width td:nth-child(5) {
    display: none;
  }
  .forthreenone th:nth-child(5),
  .forthreenone td:nth-child(5),
  .forthreenone th:nth-child(6),
  .forthreenone td:nth-child(6),
  .forthreenone th:nth-child(7),
  .forthreenone td:nth-child(7) {
    display: none;
  }
}

.btn {
  cursor: pointer;
}

.range-filter {
  width: 235px;
  float: left;
  display: flex;
  margin-right: 20px;
  align-items: center;
}

.np-tr-selected {
  background-color: #dff0d8;
}

.addColor {
  background-color: #e4a38cd6 !important;
  font-style: italic;
  color: #fff;
}

.disabled {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

#map {
  height: 400px;
  width: 97%;
}

#floating-panel {
  position: absolute;
  top: 10px;
  left: 39%;
  z-index: 5;
  background-color: #fff;
  padding: 5px;
  border: 1px solid #999;
  text-align: center;
  font-family: "Roboto", "sans-serif";
  line-height: 30px;
  padding-left: 10px;
}

.red {
  color: red;
}

#CategoryTable tr th {
  background-color: #efefef;
  padding: 10px;
}

#CategoryTable tr td {
  padding: 3px;
}

#CategoryTable tr td input {
  padding: 3px;
  text-align: center;
}

.activeclass {
  background: #7eba68 !important;
  color: #fff !important;
}

.dt-buttons {
  margin-bottom: 5px;
}

.alert {
  margin: 0.5rem auto;
}

.status-class {
  width: 220px;
}

.status-class label {
  margin: 0px 5px;
}

.help-block {
  color: #ff0000;
  margin-top: 5px;
  display: block;
  font-size: 12px;
}

.errorclass {
  margin-top: 5px;
  display: block;
  color: #ff0000;
}

.position-f {
  position: absolute !important;
  top: 0px !important;
  left: 205px !important;
  background: #f3f3f3 !important;
  border: 0px;
  border-left: 4px solid #7eba68;
  padding: 0px;
  margin: 0px;
  transform: unset !important;
}

.position-f ul {
  margin: 0px;
  list-style: none;
  padding: 5px 15px;
  width: auto;
}
.position-f ul li {
  height: 30px;
}
.position-f ul li:hover {
  background-color: transparent !important;
  color: #7eba68 !important;
}

.position-f ul li a {
  color: #000;
  padding: 0px;
}

.position-f ul li a:hover {
  color: rgb(255, 255, 255);
  padding: 0px;
  background: transparent !important;
  color: #7eba68 !important;
}

.position-f .dropdown-toggle::after {
  border-right: 0em solid transparent;
  border-left: 0em solid transparent;
}

.year-class {
  position: absolute;
  right: 15px;
  top: 0px;
}

.year-class .form-control {
  width: 200px;
}

.fa-arrow-new {
  color: #7eba68 !important;
}

.iteminfo,
.item_resorderinfo {
  background: #7eba68;
  border-color: #7eba68;
  outline: none !important;
  box-shadow: none !important;
}

.iteminfo:hover,
.item_resorderinfo:hover {
  background: #f2622f;
  border-color: #f2622f;
}

.mobileaccess-status-class {
  width: 110px;
}
.delete-class {
  display: unset;
}
.delete-class .delete-items {
  border: 0px;
  background-color: transparent;
  cursor: pointer;
  outline: none;
}
.showpassword-icon {
  position: absolute;
  top: 36px;
  right: 20px;
  cursor: pointer;
}
.item-image-class {
  gap: 5px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.item-image-class .inner-image-block {
  background-color: #f1f1f1;
  border: 1px dotted #7eba68;
  padding: 5px;
  text-align: center;
}
.item-image-class .inner-image-block img {
  width: auto;
  height: 50px;
}
.item-image-class .inner-image-block h3 {
  font-size: 12px;
  margin: 10px auto 5px auto;
  text-align: center;
  width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px dotted #7eba68;
  border-top: 1px solid #f2622f;
  padding: 5px 0px;
  color: #f2622f;
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgb(255, 255, 255);
}
.notes-block {
  min-width: 200px;
  overflow-y: auto;
  max-height: 120px;
}
.modal-dialog {
  max-width: 700px;
}
.modal-body {
  max-height: 500px;
  overflow-y: auto;
}
.category-block {
  width: 450px;
}
.category-block .category-inner-block .category-inneri-block {
  width: 100%;
  padding: 10px;
  border-bottom: 1px dotted #bfbfbf;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 5px;
}
.category-block .tooltiptext {
  visibility: hidden;
  width: auto;
  background-color: #7eba68;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 10px;
  position: absolute;
  z-index: 1;
  font-size: 12px;
}
.category-inner-block:hover .tooltiptext {
  visibility: visible;
}
