/* RESET RULES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

:root {
  --page-header-bgColor: #242e42;
  --page-header-bgColor-hover: #1d2636;
  --page-header-txtColor: #dde9f8;
  --page-header-headingColor: #7889a4;
  --page-header-width: 220px;
  --page-content-bgColor: #f0f1f6;
  --page-content-txtColor: #171616;
  --page-content-blockColor: #fff;
  --white: #fff;
  --black: #333;
  --blue: #00b9eb;
  --red: #ec1848;
  --border-radius: 4px;
  --box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.075);
  --switch-bgLightModeColor: #87cefa;
  --switch-sunColor: gold;
  --switch-moonColor: #f4f4f4;
  --switch-bgDarkModeColor: #1f1f27;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a,
button {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  background: none;
  cursor: pointer;
}

input {
  -webkit-appearance: none;
}

[type="checkbox"] {
  position: absolute;
  left: -9999px;
}

label {
  cursor: pointer;
}

button,
input {
  border: none;
}

svg {
  display: block;
}

body {
  font-family: 'Poppins', sans-serif !important;
  background: #f8f8f8;
}


/* HEADER STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  padding-top: 20px;
  width: var(--page-header-width);
  color: var(--page-header-txtColor);
  background: var(--page-header-bgColor);
}

/*In case you prefer an absolutely positioned header that covers the full page height, add these styles*/
/*body {
  position: relative;
}

.page-header {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}*/

/*remove these styles*/
/*.page-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
}*/

.page-header nav {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.page-header .logo {
  display: block;
  margin: 0 15px;
}

.page-header .logo svg {
  max-width: 120px;
  fill: var(--white);
}

.page-header .toggle-mob-menu {
  display: none;
  margin-left: 5px;
  padding: 4px;
  background: var(--page-content-blockColor);
  border-radius: var(--border-radius);
}

.page-header .toggle-mob-menu svg {
  fill: var(--black);
  transition: transform 0.2s;
}

.page-header .admin-menu {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-top: 50px !important;
  padding: 0 !important;
}

.admin-menu .active {
  background: #3e4049;
  opacity: 1 !important;
  color: #fff;
}

.admin-menu li {
  margin: 2px 0;
}

.page-header .admin-menu li:nth-last-child(2) {
  margin-bottom: 35px;
}

.page-header .admin-menu li:last-child {
  margin-top: auto;
  margin-bottom: 20px;
}

.page-header .admin-menu li>* {
  width: 100%;
  padding: 12px 15px;
}

.page-header .admin-menu .switcher {
  display: inline-block;
  width: auto;
}

.page-header .admin-menu .menu-heading h3 {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  margin-top: 12px;
  color: var(--page-header-headingColor);
}

.page-header .admin-menu svg {
  width: 20px;
  height: 20px;
  fill: var(--page-header-txtColor);
  margin-right: 10px;
}

.page-header .admin-menu a,
.page-header .admin-menu button {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

.page-header .admin-menu a:hover,
.page-header .admin-menu a:focus,
.page-header .admin-menu button:hover,
.page-header .admin-menu button:focus {
  background: #3e4049;
  opacity: 1 !important;
  color: #fff;
}

.page-header .admin-menu a:hover svg,
.page-header .admin-menu a:focus svg,
.page-header .admin-menu button:hover svg,
.page-header .admin-menu button:focus svg {
  fill: var(--blue);
}


/* PAGE CONTENT STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-content {
  position: relative;
  left: var(--page-header-width);
  width: calc(100% - var(--page-header-width));
  min-height: 100vh;
  padding: 30px;
  color: var(--page-content-txtColor);
  background: #f8f8f8;
}

.search-and-user {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-column-gap: 50px;
  align-items: center;
  margin-bottom: 10px;
}

.search-and-user form {
  position: relative;
}

.search-and-user [type="search"] {
  width: 100%;
  height: 50px;
  font-size: 1.5rem;
  padding-left: 15px;
  background: var(--page-content-blockColor);
  color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.search-and-user ::-moz-placeholder {
  color: var(--page-content-txtColor);
}

.search-and-user :-ms-input-placeholder {
  color: var(--page-content-txtColor);
}

.search-and-user ::placeholder {
  color: var(--page-content-txtColor);
}

.search-and-user form svg {
  width: 26px;
  height: 26px;
  fill: var(--page-content-txtColor);
}

.search-and-user form button {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.search-and-user .admin-profile {
  display: flex;
  align-items: center;
}

.search-and-user .admin-profile .greeting {
  margin: 0 10px 0 20px;
  font-weight: 400;
  font-size: 14px;
  color: #64748B;
  border-left: 1px solid #D0D6DE;
  padding-left: 20px;
}

.search-and-user .admin-profile .greeting span {
  font-weight: 400;
  font-size: 12px;
  color: #B9B9C3;
  display: block;
  text-align: right;
}

.search-and-user .admin-profile svg {
  width: 30px;
  height: 30px;
}

.search-and-user .admin-profile .notifications {
  position: relative;
}

img {
  object-fit: cover;
}

.search-and-user .admin-profile .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -10px;
  right: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-weight: 400;
  font-size: 12px;
  color: var(--white);
  background: #2D9CDB;
}

.page-content .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

.page-content .grid>article {
  display: flex;
  height: 300px;
  background: var(--page-content-blockColor);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.page-content .grid>article:first-child,
.page-content .grid>article:last-child {
  grid-column: 1 / -1;
}


/* MQ RULES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 767px) {

  .page-header,
  .page-content {
    position: static;
    width: 100%;
  }

  .page-header {
    padding: 10px;
  }

  .page-header nav {
    flex-direction: row;
  }

  .page-header .logo {
    margin: 0;
  }

  .page-header .logo svg {
    width: 83px;
    height: 35px;
  }

  .page-header .toggle-mob-menu {
    display: block;
  }

  .page-header .admin-menu {
    position: absolute;
    left: 98px;
    top: 5px;
    margin-top: 0;
    z-index: 2;
    border-radius: var(--border-radius);
    background: var(--page-header-bgColor);
    visibility: hidden;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.2s;
  }

  .page-header .admin-menu li:nth-last-child(2) {
    margin-bottom: 12px;
  }

  .page-content {
    min-height: 0;
    padding: 10px;
  }

  .page-content .grid {
    grid-gap: 10px;
  }

  .search-and-user {
    position: absolute;
    left: 131px;
    top: 10px;
    padding: 0;
    grid-column-gap: 5px;
    width: calc(100% - 141px);
    border-radius: var(--border-radius);
    background: transparent;
  }

  .search-and-user [type="search"] {
    font-size: 1rem;
    height: 35px;
  }

  .search-and-user form svg {
    width: 18px;
    height: 18px;
  }

  .search-and-user .admin-profile svg {
    fill: var(--white);
  }
}

@media screen and (max-width: 400px) {
  .page-content .grid>article {
    grid-column: 1 / -1;
  }
}


/* BODY CLASSES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.mob-menu-opened .toggle-mob-menu svg {
  transform: rotate(180deg);
}

.mob-menu-opened .page-header .admin-menu {
  transform: scale(1);
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .collapsed .page-header {
    width: 40px;
  }

  .collapsed .page-header .admin-menu li>* {
    padding: 10px;
  }

  .collapsed .page-header .logo,
  .collapsed .page-header .admin-menu span,
  .collapsed .page-header .admin-menu .menu-heading {
    display: none;
  }

  .collapsed .page-header .admin-menu svg {
    margin-right: 0;
  }

  .collapsed .page-header .collapse-btn svg {
    transform: rotate(180deg);
  }

  .collapsed .page-content {
    left: 40px;
    width: calc(100% - 40px);
  }
}


/* SWITCH STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.switch label {
  display: grid;
  grid-template-columns: auto auto;
  grid-column-gap: 10px;
  align-items: center;
  justify-content: flex-start;
}

.switch span:first-child {
  position: relative;
  width: 50px;
  height: 26px;
  border-radius: 15px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.4);
  background: var(--switch-bgLightModeColor);
  transition: all 0.3s;
}

.switch span:first-child::before,
.switch span:first-child::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.switch span:first-child::before {
  top: 1px;
  left: 1px;
  width: 24px;
  height: 24px;
  background: var(--white);
  z-index: 1;
  transition: transform 0.3s;
}

.switch span:first-child::after {
  top: 50%;
  right: 8px;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  background: var(--switch-sunColor);
  box-shadow: 0 0 4px 2px #ffdb1a;
}

.switch [type="checkbox"]:checked+label span:first-child {
  background: var(--switch-bgDarkModeColor);
}

.switch [type="checkbox"]:focus+label span:first-child {
  box-shadow: 0 3px 5px rgba(255, 255, 255, 0.25);
}

.switch [type="checkbox"]:checked+label span:first-child::before {
  transform: translateX(24px);
}

.switch [type="checkbox"]:checked+label span:first-child::after {
  left: 12px;
  width: 15px;
  height: 15px;
  background: transparent;
  box-shadow: -2px -5px 0 var(--switch-moonColor);
  transform: translateY(-50%) rotate(-72deg);
}


/* LIGHT MODE STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.light-mode {
  --page-header-bgColor: #f1efec;
  --page-header-bgColor-hover: #b9e4e0;
  --page-header-txtColor: #2c303a;
  --page-header-headingColor: #979595;
  --page-content-bgColor: #fff;
  --box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.25);
}

.light-mode .page-header .admin-menu a:hover,
.light-mode .page-header .admin-menu a:focus,
.light-mode .page-header .admin-menu button:hover,
.light-mode .page-header .admin-menu button:focus {
  color: var(--black);
}

.light-mode .page-header .logo svg,
.light-mode .page-header .admin-menu a:hover svg,
.light-mode .page-header .admin-menu a:focus svg,
.light-mode .page-header .admin-menu button:hover svg,
.light-mode .page-header .admin-menu button:focus svg {
  fill: var(--black);
}

.light-mode .switch [type="checkbox"]:focus+label span:first-child {
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 767px) {
  .light-mode .search-and-user .admin-profile svg {
    fill: var(--black);
  }
}


/* FOOTER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-footer {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 10px;
}

.page-footer a {
  margin-left: 4px;
}

.toggle-mob-menu {
  color: #171616;
}

.profile {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #ccc;
}

.notificaion {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  color: #2D9CDB;
  background: rgba(45, 156, 219, 0.15);
  border-radius: 15px;
  font-size: 24px;
  cursor: pointer;
}

.notificaion:hover,
.notificaion:active {
  background: rgba(45, 156, 219, 0.3);
}

.breadcrumb-item {
  font-weight: 500;
  font-size: 14px;
  color: #464255;
}

.filters-title {
  font-weight: 600;
  font-size: 20px;
  color: #20B6E9;
}

.card {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.03) !important;
  border-radius: 10px !important;
  border: none;
}

label {
  font-weight: 500;
  font-size: 15px;
  color: #35373a;
  margin-bottom: 3px;
  font-weight: 200;
}

.form-control,
.form-select {
  border: 1px solid #D7D7D7 !important;
  border-radius: 8px !important;
}

.btn-primary {
  background: #20B6E9 !important;
  border-radius: 8px !important;
  border-color: #20B6E9 !important;
}

.filters-card {
  margin: 20px 0;
}

.table {
  margin: 18px 0;
}

.table-bordered , .table-bordered td, .table-bordered th {
    border: 1px solid #dee2e6;
}

.table-bordered th {
  border: 1px solid #dee2e6;
  text-align: center;
}

.table-arrows {
  font-size: 13px;
}

.table-arrows i {
  display: block;
  cursor: pointer;
}

.table-th {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
  margin-top: 0.2rem !important;
}

.table-arrows .active {
  color: #C4C4C4 !important;
}

td {
  font-weight: 400 !important;
  font-size: 15px !important;
  color: #64748B !important;
  padding: 20px !important;
}

.badgee {
  width: 102px !important;
  height: 33px !important;
  line-height: 33px;
  border-radius: 15.5px !important;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}

.badge-danger {
  background: rgba(230, 46, 46, 0.1);
  color: #E62E2E;
}

.badge-success {
  background: rgba(59, 168, 26, 0.1);
  color: #22ca00;
}

.view {
  color: #1C6BA4;
  font-size: 20px;
  cursor: pointer;
}

.delete {
  color: #FF4C61;
  font-size: 20px;
  cursor: pointer;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
  background-color: #fff !important;
  --bs-table-accent-bg: #fff !important;
}

.table-striped>tbody>tr:nth-of-type(even)>* {
  background-color: rgba(241, 244, 250, 0.7) !important;
  --bs-table-accent-bg: rgba(241, 244, 250, 0.7) !important;
}

.page-link {
  border: none !important;
  background-color: transparent !important;
}

.page-link.next,
.page-link.prev {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  margin: 3px 15px !important;
  font-size: 13px !important;
  background-color: #fff !important;
}

.pagination-pages {
  display: flex;
  background-color: #fff;
  border-radius: 20px;
}

.pagination-pages .active,
.pagination-pages a:hover {
  background-color: #1C6BA4 !important;
  border-radius: 50%;
  color: #fff;
}

.table>:not(:first-child) {
  border-top: none !important;
}

.dashboard-widget .dashboard-icon {
  width: 85px;
  height: 85px;
  line-height: 85px;
  text-align: center;
  border-radius: 50%;
  background: rgba(0, 176, 116, 0.15);
  margin: 20px;
}

.dashboard-widget h5 {
  font-weight: 700;
  font-size: 46px;
  color: #464255;
}

.dashboard-widget h6 {
  font-weight: 400;
  font-size: 16px;
  color: #464255;
}

.dashboard-widget p {
  font-weight: 400;
  font-size: 12px;
  color: #A3A3A3;
}

.dashboard-arrow-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  line-height: 16px;
  text-align: center;
  display: inline-block;
  font-size: 10px;
  margin-right: 4px;
}

.dashboard-arrow-icon.green {
  background: rgba(46, 214, 163, 0.15);
  color: #00A389;
}

.dashboard-arrow-icon.red {
  background: rgba(255, 91, 91, 0.15);
  color: #FF5B5B;
}

.total-services-chart {
  position: relative;
}

.total-services-chart .data {
  position: absolute;
  left: 35%;
  top: 50%;
  text-align: center;
}

.total-services-chart .data p {
  font-weight: 400;
  font-size: 12px;
  color: #8491A5;
  margin: 0;
}

.total-services-chart .data h5 {
  font-weight: 700;
  font-size: 26px;
  color: #09244B;
}

.login-page {
  background-color: #f1f4fa;
}

.login-content {
  background-color: #fff;
  height: 100vh;
}

.login-img {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.login-img img {
  zoom: 0.8;
  animation: fadeIn 1s infinite alternate ease-in-out;
  max-width: 100%;
}

/* body.modal-open .modal {
  display: flex !important;
  height: 100%;
}

body.modal-open .modal .modal-dialog {
  margin: auto;
} */
.d-block,
.btn-block {
  display: block !important;
  width: 100% !important;
}

.form-group {
  margin-bottom: 14px;
}

.btn-default {
  background: #EFEFEF;
  border-radius: 8px;
  text-align: center;
}

.btn-default:hover {
  background: #dadada;
}

.modal-header {
  background: rgba(241, 244, 250, 0.7);
}

.modal-header .btn-close {
  background-color: #fff;
}

.tab-btn-active {
  background: #1C6BA4 !important;
  color: #fff !important;
}

.tab-btn {
  background: #fff;
  color: #919499;
  border: none !important;
  height: 70px;
  border-radius: 15px;
}

.tab-btn:hover {
  background: #1C6BA4 !important;
  color: #fff !important;
}

.tab-btns {
  margin-bottom: 20px;
}

.btn {
  border-radius: 8px;
}

.btn-success {
  background: #25BF50;
  border-color: #25BF50;
}

.alert-circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  opacity: 0.3;
  display: block;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
}

.alert-circle.red {
  background: #fbd4ce;
}

.alert-circle.red i {
  color: #ff2500;
  font-weight: bold;
}

ul {
  margin: 0 !important;
  padding: 0 !important;
}

.request-details-list {
  height: 250px;

}

.request-details-list h5 {
  font-weight: 600;
  font-size: 15px;
  color: #20B6E9;
}

.request-details-list h6 {
  font-weight: 500;
  font-size: 15px;
  color: #64748B;
}

.request-details-list li {
  margin-bottom: 14px;
}

.request-details-list h4 {
  font-weight: 600;
  font-size: 24px;
  color: #474747;
}

.request-details-list h4 span {
  color: #E8B31B;
}

.tab-btns-grid {
  display: grid;
}

.bg-orange-dark {
  background: #E8B31B;
}

.text-grey,
.text-gray {
  color: #919499 !important;
}

.partially-approved-card {
  display: flex;
  justify-content: space-between;
}

.login-form-container {
  margin-top: 100px;
}

.login-form-container .form-control {
  background: #F1F4FA !important;
  border-radius: 10px !important;
  font-weight: 400 !important;
  font-size: 14.22px !important;
  color: #8e9aac !important;
  height: 50px !important;
  border: none !important;
  padding-left: 46px;
}

.login-form-container .form-control::placeholder {
  color: #64748B !important;
}

.login-input-wrapper {
  display: flex;
  position: relative;
}

.login-input-wrapper-block {
  display: block;
}

.login-form-container .login-input-wrapper::before {
  content: ' ';
  display: inline-block;
  background-image: url("./../images/icons/login-username-icon.svg");
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 18px;
  top: 17px;
  z-index: 99999;
}

.login-form-container .login-input-wrapper.password::before {
  background-image: url("./../images/icons/login-password-icon.svg");
  width: 22px;
  height: 22px;
  top: 14px;
}

.login-form-container button {
  height: 50px !important;
  background: #20B6E9 !important;
  border-radius: 10px !important;
  line-height: 40px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  margin-top: 50px;
}

.login-form-container button:hover {
  background: #14a1cf !important;
}

.show-hide-password {
  position: absolute;
  right: 20px;
  top: 16px;
  color: #64748B;
  font-size: 12px;
  cursor: pointer;
}

@keyframes fadeIn {
  0% {
    opacity: 0.6
  }

  100% {
    opacity: 1
  }
}


@media screen and (max-width: 768px) {
  .login-img {
    display: none;
  }

  .breadcrumb-item {
    font-size: 11px;
    color: #fff;
  }

  .search-and-user .admin-profile {
    zoom: 0.7;
  }

  .search-and-user .admin-profile .notifications {
    margin: 0 6px;
  }

  .breadcrumb {
    position: relative;
    top: 7px;
  }
}

.btn-check:active+.btn-outline-primary,
.btn-check:checked+.btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active {
  background-color: #1C6BA4 !important;
  border-color: #1C6BA4 !important;
}

.btn-check:active+.btn-outline-primary:focus,
.btn-check:checked+.btn-outline-primary:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus,
.btn-outline-primary:active:focus {
  box-shadow: none !important;
}

@media screen and (max-width: 480px) {
  .breadcrumb {
    display: none;
  }
}


.greeting-profile-dropdown-container {
  position: relative;
}

.greeting-profile-dropdown {
  z-index: 99999;
  position: absolute;
  right: 53px;
  background-color: #fff;
  top: 20px;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
  min-width: 100px;
  text-align: center;
}

.greeting-profile-dropdown li {
  padding: 10px;
  border-bottom: 1px solid rgb(238, 238, 238);
  font-size: 14px;
}

.notificaion-dropdown-container {
  position: relative;
}

.list-group-item {
  font-size: 13px;
  color: #006da4;
}


.notificaion-dropdown {
  position: absolute;
  right: 0;
  width: 260px;
  z-index: 99999;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
  top: 30px;
}

.card-header{
  background-color: white;
}

.approval_letter {
  margin: 25px;
  border:1px solid black;
  background-image: url('/assets/images/others/approval_background.PNG');
  background-repeat: no-repeat;
  background-size:100% 100%;
}

.custom-loader {
  display: none;
  position: fixed;
  left: 37%;
  top: 20%;
  width: 340px;
  height: 340px;
  z-index: 9999;
  background: url(../../assets/images/others/loading.gif) center no-repeat;
}

.fa-edit, .fa-eye{
  color: #20b6e9;
  font-weight: bold;
}

.card{
  width: 100%;
}

.me-3{
  margin-right: 1rem!important; 
}

.ms-5{
  margin-left:3rem!important;
}
.mt-5{
  margin-top: 5rem!important;
}

.p-2{
  padding: .5rem!important;
}
.p-3{
  padding: 1rem!important;
}
.p-4 {
  padding: 1.5rem!important;
}

.mb-2{
  margin-bottom:.5rem!important;
}
.mt-2{
  margin-top:.5rem!important;
}
.border-end{
  border-right :1px solid #dee2e6!important
}
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.bg-info{

  background-color: #0dcaf0;
}

.bg-info{
  background-color: red;
}

.card{
  position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
}

.col-lg-6{
  width: 50%;
}

.text-info{
    color: #00cdf4 !important;
}
.table th{
    border: none !important;
}
#requestdetails-tab-pane .col-lg-12 .card{
    background-color: transparent !important;
    box-shadow: none !important;
}
#requestdetails-tab-pane .table {
    margin: 0 !important;
}
.partially-approved-card span{
    width: 33.3%;
}
.table td {
    color: #64748B !important;
}
.bg-info{
    background-color: #00cdf2 !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 7px !important;
    right: 7px !important;
}
.select2-container--default .select2-selection--single {
    border: 1px solid #D7D7D7 !important;
    border-radius: 8px !important;
    height: calc(2.25rem + 2px) !important;
    padding: 0.375rem 0.75rem !important;
}
.action-column{
    display: flex;
    justify-content: space-evenly;
}