body {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #000;
  background: #eef1f6;
}

.text-black {
  color: #000;
}
.text-green {
  color: #038f26;
}
.text-gray {
  color: #95989a;
}
.bg-pink {
  background: #e640dd;
  color: #000;
}

.text-orange,
a:hover,
.forgot-link a:hover {
  color: #ff5b1f;
}
a:hover {
  text-decoration: none;
}
a.btn,
button.btn {
  padding: 10px;
  border-radius: 6px;
  min-width: 80px;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

.btn.orange-btn {
  background: #ff5b1f;
  color: #fff;
  transition: 0.3s all;
}
.btn.green-btn {
  background: #038f26;
  color: #fff;
  transition: 0.3s all;
}
.btn.yellow-btn {
  background: #f1be2e;
  color: #fff;
  transition: 0.3s all;
}
.btn.pink-btn {
  background: #e640dd;
  color: #fff;
  transition: 0.3s all;
}
.btn.black-btn {
  background: #333333;
  color: #fff;
  transition: 0.3s all;
}
.btn.delete-btn {
  background: #ff6d6d;
  color: #fff;
  width: max-content;
  transition: 0.3s all;
}
.btn:hover {
  opacity: 0.8;
  transition: 0.3s all;
}

.btn.small-btn {
  padding: 5px 10px;
  font-weight: 400;
  min-width: initial;
}

.btn.orange-btn:hover,
.btn.gray-btn {
  background: #69727d;
  color: #fff;
}
.btn.gray-btn:hover {
  background: #dbdbdb;
  color: #333;
}

.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.wrapper-main {
  max-width: 320px;
  margin: 0 auto;
}

label {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}
input {
  font-size: 14px;
}

::placeholder {
  font-size: 14px;
  color: #707070;
}
.forgot-link a {
  font-size: 14px;
  font-weight: 500;
}

.pink-text {
  color: #000000;
}

.font-12 {
  font-size: 12px;
}
.font-14 {
  font-size: 14px;
}
.font-16 {
  font-size: 16px;
}
.font-weight-500 {
  font-weight: 500;
}

.w-180 {
  width: 180px;
}
.w-150 {
  width: 150px;
}
.w-120 {
  width: 120px;
}

.min-w-150 {
  min-width: 150px;
}
.min-w-200 {
  min-width: 200px;
}

.header-navigation {
  background: #ff5b1f;
  padding: 20px;
  height: 80px;
}

.profile-dropdown .btn {
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.profile-img {
  height: 35px;
  width: 35px;
  object-fit: cover;
  border-radius: 100px;
}
.form-control:focus,
button:focus,
.btn:focus {
  box-shadow: none;
  outline: none;
}
.form-control {
  font-size: 14px;
  min-height: 40px;
}
select{
  -webkit-appearance: none;
  /* Remove default dropdown arrow for Webkit browsers */
  -moz-appearance: none;
  /* Remove default dropdown arrow for Firefox */
  appearance: none;
  /* Remove default dropdown arrow for other browsers */
  padding-right: 30px;
  /* Add space for custom arrow */
  background: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 10 6%22%3E%3Cpath fill=%22none%22 stroke=%22black%22 stroke-width=%22.5%22 d=%22M0 0l5 5 5-5%22/%3E%3C/svg%3E') no-repeat right 10px center;
  background-size: 10px;
}
.sidebar-wrapper {
  width: 60px;
  background: #000000;
}
.logo-wrapper {
  padding: 20px 10px;
}
.page-title h1 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

/* Sidebar CSS */
.sidebar-menu {
  height: calc(100vh - 81px);
  margin: 0;
  padding: 0;
  z-index: 1;
  position: relative;
}
.sidebar-menu li:first-child a {
  border-top: 1px solid #515151;
}
.sidebar-menu li a {
  padding: 15px;
  border-bottom: 1px solid #515151;
  display: block;
}
.sidebar-menu li a {
  position: relative;
}
.sidebar-menu li:hover a,
.sidebar-menu li.active a {
  background: #ff5b1f;
}
.sidebar-menu li:hover .menu-text {
  opacity: 1;
  visibility: visible;
  width: auto;
  transition: 0.3s all;
}
.menu-text {
  opacity: 0;
  visibility: hidden;
  width: 0;
  background: #000000;
  padding: 12px;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  position: absolute;
  border-radius: 2px;
  top: 50%;
  transform: translateY(-50%);
  left: 50px;
  white-space: nowrap;
}
.menu-text::before {
  position: absolute;
  content: "";
  background: url(../images/polygon-arrow.svg);
  height: 9px;
  width: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  border: none;
}
h3.title {
  font-size: 16px;
  color: #000000;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid #4f5d6e;
  margin-bottom: 15px;
}

.dashboard-sm-box h3.title {
  border: none;
}
.dashboard-number {
  font-size: 34px;
  line-height: normal;
  color: #ff6700;
  font-weight: 600;
  margin: 0;
  text-align: right;
}

.list-card {
  padding: 15px;
  border-radius: 5px;
}
.list-card:not(:last-child) {
  margin-bottom: 15px;
}

.orange-card {
  background: #ffeda9;
}
.green-card {
  background: #e0f2c6;
}
.purple-card {
  background: #e9e8fe;
}
.skyblue-card {
  background: #b2fbf2;
}

.list-card h5 {
  font-size: 14px;
  color: #000000;
  font-weight: 500;
}

table thead th {
  white-space: nowrap;
}

.table .thead-dark th {
  background-color: #69727d;
  border-color: #e2e2e2;
}
.table .thead-orange th {
  background-color: #ffeda9;
  border-color: #e2e2e2;
}
.table .thead-green th {
  background-color: #e0f2c6;
  border-color: #e2e2e2;
}
.table .thead-purple th {
  background-color: #e9e8fe;
  border-color: #e2e2e2;
}
.table .thead-skyblue th {
  background-color: #b2fbf2;
  border-color: #e2e2e2;
}

.table-striped tbody tr:nth-of-type(even) {
  background-color: rgba(0, 0, 0, 0.03);
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: transparent;
}
.table tr th,
.table tr td {
  vertical-align: middle;
  padding: 0.5rem;
}
.outside-border {
  border: 1px solid #efefef;
}
.status-bage,
.role-badge {
  padding: 4px 8px;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
}
.status-bage.sent {
  background: #93de5b;
}
.status-bage.pending {
  background: #ff8306;
}

.eng-img img {
  height: 40px;
  width: 40px;
  border-radius: 100px;
  object-fit: cover;
}
.search-wrapper {
  max-width: 350px;
  width: 100%;
}
.search-wrapper input {
  height: 40px;
  border: 1px solid #d6d6d6;
  border-radius: 100px;
  background: #fff;
  padding: 6px 45px 6px 12px;
}
.search-btn {
  height: 32px;
  width: 32px;
  background: #ff5b1f;
  border-radius: 100px;
  text-align: center;
  line-height: 32px;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  cursor: pointer;
}
.search-btn:hover {
  background: #69727d;
}

.actions-list li:not(:last-child) {
  padding-right: 10px;
  margin-right: 10px;
  position: relative;
}
.actions-list li:not(:last-child)::after {
  position: absolute;
  content: "|";
  color: #000000;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.scroll-x {
  overflow-x: auto;
}

.table tr td.no-records {
  font-size: 15px;
  padding: 25px 15px;
}

.modal-header {
  background: #ff5b1f;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.modal-header .close {
  opacity: 1;
}
.modal-content {
  border-radius: 10px;
  border: none;
}

.fileupload-prepend .input-group-text {
  background-color: #ff5b1f;
  border: 1px solid #ff5b1f;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}
.custom-file {
  border: 1px solid #dbdbdb;
  border-radius: 0px 0.25rem 0.25rem 0;
}

/* User page */

/* custom-checkbox CSS */
.custom-checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.custom-checkbox label {
  position: relative;
  cursor: pointer;
}

.custom-checkbox label:before {
  content: "";
  -webkit-appearance: none;
  background: #fff;
  border: 2px solid #dbdbdb;
  border-radius: 4px;
  height: 20px;
  width: 20px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
}

.custom-checkbox input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 7px;
  width: 6px;
  height: 11px;
  border: solid #ff6700;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* custom-checkbox CSS */
.user-box {
  background: #e6f1ff;
  border-radius: 10px;
  padding: 15px;
}
.user-details img {
  height: 36px;
  width: 36px;
  border-radius: 100px;
  object-fit: cover;
}
.user-details h5 {
  font-size: 16px;
}
.user-edit,
.user-delete {
  background: #fff;
  display: block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 100px;
}
.role-badge.admin {
  background: #ff5b1f;
}
.role-badge.engineer {
  background: #cff3d5;
  color: #333333;
}
.uploaded-image img {
  height: 150px;
  width: 150px;
  border-radius: 100px;
  object-fit: cover;
}

.contact-img {
  height: 30px;
  width: 30px;
  border-radius: 100px;
  object-fit: cover;
}

.tabs-wrapper .nav-tabs li a {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  padding: 15px;
  display: block;
  position: relative;
}
.tabs-wrapper .nav-tabs li a.active {
  color: #ff5b1f;
}
.tabs-wrapper .nav-tabs li a::after {
  position: absolute;
  background: transparent;
  content: "";
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s all;
}
.tabs-wrapper .nav-tabs li a.active::after {
  background: #ff5b1f;
  width: 100%;
  opacity: 1;
  transition: 0.3s all;
}

.settings-menu img {
  height: 60px;
  margin-bottom: 40px;
}
.settings-menu h4 {
  font-size: 18px;
  color: #000;
  margin-bottom: 0;
}
.settings-menu:hover h4 {
  color: #ff5b1f;
}
.required::after {
  content: "*";
  color: #ff5b1f;
  margin-left: 2px;
}
.filter-tabs.nav-tabs .nav-item.show .nav-link,
.filter-tabs.nav-tabs .nav-link.active {
  color: #ff6700;
  background-color: transparent;
  border: none;
}
.filter-tabs.nav-tabs .nav-link,
.filter-tabs.nav-tabs .nav-link:focus,
.filter-tabs.nav-tabs .nav-link:hover {
  border: none;
  position: relative;
}
.nav-tabs .nav-link {
  color: #000000;
  font-size: 14px;
  font-weight: 500;
}
.filter-tabs.nav-tabs .nav-link.active,
.filter-tabs.nav-tabs .nav-link:focus,
.filter-tabs.nav-tabs .nav-link:hover {
  color: #ff6700;
}
.filter-tabs.nav-tabs .nav-link.active::after,
.filter-tabs.nav-tabs .nav-link:focus::after,
.filter-tabs.nav-tabs .nav-link:hover::after {
  position: absolute;
  content: "";
  bottom: 0px;
  height: 2px;
  background: #ff6700;
  width: 100%;
  left: 0px;
}

/* Select 2 css */
.select2-container {
  margin: 4px !important;
}

.select2-container--classic .select2-selection--single {
  background: transparent !important;
  background-image: none !important;
  height: calc(2.25rem + 2px) !important;
  border: 1px solid #ced4da !important;
  display: flex !important;
  align-items: center !important;
  font-size: 14px;
}
.select2-container--classic.select2-container--open.select2-container--below
  .select2-selection--single {
  background: transparent !important;
  background-image: none !important;
}
.select2-container--classic
  .select2-selection--single
  .select2-selection__rendered {
  height: calc(2.25rem + 2px) !important;
  line-height: normal !important;
  display: flex !important;
  align-items: center !important;
  font-size: 12px;
}
.select2-container--classic
  .select2-selection--single
  .select2-selection__arrow {
  height: calc(2.25rem + 0px) !important;
  min-width: 30px !important;
}

div .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background: #ff5b1f !important;
  border-color: transparent !important;
  border-radius: 4px !important;
  color: #fff !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: #69727d !important;
  border-color: #69727d !important;
}
@media (min-width: 1100px) {
  section.content {
    max-height: calc(100vh - 85px);
    overflow-y: auto;
  }
}
.imgae_height {
  /* height: 25px !important; */
  width: 75% !important;
}
.donor-width {
  width: 425px;
}
.customize-select .select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  vertical-align: middle;
  border-radius: 3px;
  margin-bottom: 14px;
  position: relative;
  font-size: 14px !important;
  line-height: normal;
  font-weight: 400;
  padding: 0px 3px;
  max-width: 100%;
  width: 100%;
  background-size: 24px;
  border: 1px solid #d4d4d4;
}
.d-grid {
  display: grid;
}
.customize-select .select2-container--classic .select2-selection--single {
  border: none !important;
}
.mgc-into-text{
  color: #000000 !important;
}
.dataTables_length select{
  margin-left: 5px;
  margin-right: 5px;
}
.organisationid, .typeid {
  width: 170px !important;
}

.table-responsive{ max-width: 100%; overflow: hidden;}
.sidebar-menu .imgae_height{ min-width: 20px;}