/* Google Fonts Import Link */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');


:root {
  font-size: 16px;
  --table-color: #495057;
  --border-color: #f6f6f6;
  --table-accent-bg: transparent;
  --table-bg: transparent;
  --menu-item-color: #7b8190;
  --menu-item-active-color: #5b73e8;
  --body-bg: #edf1f7;
  --body-color: #687281;
  --display-none: none;
  --display-block: block;
  --card-title-desc: #74788d;
  --light: #f5f6f8;
  --light-rgb: 245, 246, 248;
  --dark: #212529;
  --dark-rgb: 33, 37, 41;
  --text-muted: #74788d;
  --link-color: #5b73e8;
  --link-hover-color: #5b73e8;
  --lightgray: #efefef;
  --blue: steelblue;
  --white: #fff;
  --black: rgba(0, 0, 0, 0.8);
  --bounceEasing: cubic-bezier(0.51, 0.92, 0.24, 1.15);
}

.fullscreen-spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.spinner-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'IBM Plex Sans', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial,
    sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
    'Noto Color Emoji';
}

body {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  box-shadow: none !important;
  color: var(--body-color);
  text-align: left;
  background-color: #F4F4F4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: #495057;
}

a {
  font-weight: 600;
  color: #495057;
  text-decoration: none;
}

:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}



.table>tbody {
  vertical-align: inherit;
}

.table> :not(caption)>*>* {
  border-bottom-width: 0;
  border-top-width: 1px;
  padding: 0.4rem;
  background-color: var(--table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--table-accent-bg);
}

.table-borderless> :not(caption)>*>* {
  border-bottom-width: 0;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border: 0 solid;
  border-color: inherit;
  vertical-align: top !important;
  white-space: nowrap;
}

tr.selected {
  background-color: #edf1f7;
}*/

/* UtilitY classes */
.btn {
  display: inline-block;
  font-weight: 400;
  /* line-height: 1.5; */
  color: #495057;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.47rem 0.75rem;
  font-size: 0.9rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, -color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.7875rem;
  border-radius: 0.2rem;
}

.btn-icon i {
  font-size: 20px;
  /* padding: 5px !important; */
  color: #687281 !important;
}

.btn-link {
  font-weight: 400;
  color: #5b73e8;
  text-decoration: none;
}

.btn-success {
  color: #fff;
  background-color: #34c38f !important;
  border-color: #34c38f !important;
}

.btn-error {
  color: #fff;
  background-color: #f46a6a;
  border-color: #f46a6a;
}

.table-action-btn {
  padding: 0.25rem 0.5rem !important;
  font-size: 0.7875rem;
  border-radius: 0.2rem !important;
  color: #fff;
  background-color: rgb(99, 91, 255);
  box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px,
    rgb(0 0 0 / 12%) 0px 1px 1px 0px, rgb(99 91 255) 0px 0px 0px 1px,
    rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px,
    rgb(64 68 82 / 8%) 0px 2px 5px 0px;
}

.search-btn {
  padding: 0.55rem 0.5rem !important;
  color: #fff;
  border: none;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  background-color: rgb(99, 91, 255);
  box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px,
    rgb(0 0 0 / 12%) 0px 1px 1px 0px, rgb(99 91 255) 0px 0px 0px 1px,
    rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px,
    rgb(64 68 82 / 8%) 0px 2px 5px 0px;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.rounded-pill {
  padding-left: 0.6em;
  padding-right: 0.6em;
}

.success-badge {
  font-size: 0.75rem;
  color: #34c38f;
  background-color: rgba(52, 195, 143, 0.18);
  padding-right: 0.6rem;
  padding-left: 0.6rem;
  border-radius: 50rem;
}

.error-badge {
  font-size: 0.75rem;
  color: #f46a6a;
  background-color: rgba(244, 106, 106, 0.25);
  padding-right: 0.6rem;
  padding-left: 0.6rem;
  border-radius: 50rem;
}

.warning-badge {
  font-size: 0.75rem;
  color: #E36A17;
  background-color:#FFF8EB;
  padding-right: 0.6rem;
  padding-left: 0.6rem;
  border-radius: 50rem;
  padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}

.notify-badge-primary {
  color: #5b73e8;
  background-color: rgba(80, 165, 241, 0.25);
  padding-right: 0 0.6rem;
  padding-left: 0.6rem;
  border-radius: 50rem;
}

.notify-badge-danger {
  color: #f46a6a;
  background-color: rgba(244, 106, 106, 0.25);
  padding-right: 0 0.6rem;
  padding-left: 0.6rem;
  border-radius: 50rem;
}


/* Class for adding border top to an element */
.border-top {
  border-top: 1px solid #f1f1f1;
}

/* Font awesome custom size */
.fa_xl_1_5 {
  font-size: 1.5em;
  line-height: 0.03125em;
  vertical-align: -0.1875em;
}

/* Class for aligning an element to the right */
.float-end {
  float: right !important;
}

/*Custom table header wrapper*/ 
.custom-table-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
  margin-top: -15px !important;
}

/* Styling for table header title */
.custom-table-header-wrapper .card-title {
  margin-bottom: 0px !important;
}

/* Wrapper for table action buttons */
.table-action-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0px;
}

/* Styling for table action buttons */
.table-action-wrapper button:not(:last-child) {
  margin-right: 0.5rem !important;
}

/* Styling for success text */
.text-success {
  color: #3cb72c;
}

/* Styling for danger text */
.text-danger {
  color: #f42b3d;
}

/* Wrapper for content with a max-width of 100% */
.wrapper {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Wrapper for rows */
.row-wrapper {
  display: flex;
  flex-wrap: wrap;
   margin-right: -15px;
  margin-left: -15px; 
}

/* Styling for user avatar */
.user-avatar {
  height: 2rem;
  width: 2rem;
  border-radius: 50% !important;
}

/* Fluid container */
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .container-fluid {
    width: 100%;
    max-width: 100%;
  }
}

/* .column-wrapper-12,
.column-wrapper-11,
.column-wrapper-10,
.column-wrapper-9,
.column-wrapper-8,
.column-wrapper-7,
.column-wrapper-6,
.column-wrapper-5,
.column-wrapper-4,
.column-wrapper-3,
.column-wrapper-2 {
  position: relative;
  flex: 0 0 100%;
  padding-right: 15px;
  padding-left: 15px;
} */

/* Column 12*/
/* .column-wrapper-12 {
  flex: 0 0 100%;
  max-width: 100%;
} */

/* Column 11*/
/* .column-wrapper-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
} */

/* Column 10 */
/* .column-wrapper-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
} */

/* Column 9 */
/* .column-wrapper-9 {
  flex: 0 0 75%;
  max-width: 75%;
} */

/* Column 8*/
/* .column-wrapper-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
} */

/* Column 7*/
/* .column-wrapper-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
} */

/* Column 6*/
/* .column-wrapper-6 {
  flex: 0 0 50%;
  max-width: 50%;
} */

/* Column 5*/
/* .column-wrapper-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
} */

/* Column 4*/
/* .column-wrapper-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
} */

/* Column 3*/
/* .column-wrapper-3 {
  flex: 0 0 25%;
  max-width: 25%;
} */

/* Column 2*/
/* .column-wrapper-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
} */

/*================================ New Styles ===================================*/
/* .column-wrapper-2,
.column-wrapper-3,
.column-wrapper-4,
.column-wrapper-5,
.column-wrapper-6,
.column-wrapper-7,
.column-wrapper-8,
.column-wrapper-9,
.column-wrapper-10,
.column-wrapper-11,
.column-wrapper-12 {
  position: relative;
  flex: 0 0 100%;
  padding-right: 15px;
  padding-left: 15px;
} */

/* Small devices (landscape phones, 576px and up) */
/* @media (min-width: 576px) {
  .column-wrapper-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .column-wrapper-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .column-wrapper-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .column-wrapper-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .column-wrapper-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .column-wrapper-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .column-wrapper-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .column-wrapper-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .column-wrapper-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .column-wrapper-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .column-wrapper-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
} */

/* @media (min-width: 768px) and (max-width: 991.98px) {
  /* Medium devices (tablets, 768px and up) */
/* .column-wrapper-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .column-wrapper-3 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .column-wrapper-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .column-wrapper-5 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .column-wrapper-6 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .column-wrapper-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .column-wrapper-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .column-wrapper-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .column-wrapper-10 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .column-wrapper-11 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .column-wrapper-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
} */

/* Small devices (tablets, 768px and up) */
/* @media (min-width: 768px) {
  .column-wrapper-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .column-wrapper-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .column-wrapper-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .column-wrapper-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .column-wrapper-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .column-wrapper-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .column-wrapper-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .column-wrapper-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .column-wrapper-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .column-wrapper-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .column-wrapper-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
} */

/* Medium devices (desktops, 992px and up) */
/* @media (min-width: 992px) {
  .column-wrapper-2 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .column-wrapper-3 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .column-wrapper-4 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .column-wrapper-5 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .column-wrapper-6 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .column-wrapper-7 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .column-wrapper-8 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .column-wrapper-9 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .column-wrapper-10 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .column-wrapper-11 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .column-wrapper-12 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
} */

/* Large devices (desktops, 992px and up) */
/* @media (min-width: 992px) and (max-width: 1199.98px) {
  .column-wrapper-2 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .column-wrapper-3 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .column-wrapper-4 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .column-wrapper-5 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .column-wrapper-6 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .column-wrapper-7 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .column-wrapper-8 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .column-wrapper-9 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .column-wrapper-10 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .column-wrapper-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .column-wrapper-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
} */

/* Large devices (large desktops, 1200px and up) */
/* @media (min-width: 1200px) {
  .column-wrapper-2 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .column-wrapper-3 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .column-wrapper-4 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .column-wrapper-5 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .column-wrapper-6 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .column-wrapper-7 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .column-wrapper-8 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .column-wrapper-9 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .column-wrapper-10 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .column-wrapper-11 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .column-wrapper-12 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
} */

/* Extra large devices (large desktops, 1200px and up) */
/* @media (min-width: 1200px) {
  .column-wrapper-2 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .column-wrapper-3 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .column-wrapper-4 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .column-wrapper-5 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .column-wrapper-6 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .column-wrapper-7 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .column-wrapper-8 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .column-wrapper-9 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .column-wrapper-10 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .column-wrapper-11 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .column-wrapper-12 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
} */

/*======== New Columns ========*/
/* Small devices (landscape phones, 576px and up) */
/* @media (min-width: 576px) {
  [class^="col-sm-"] {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
} */

/* Large devices (desktops, 992px and up) */
/* @media (min-width: 992px) {
  [class^="col-lg-"] {
    padding-right: 1.875rem;
    padding-left: 1.875rem;
  }
} */

/* Extra-large devices (large desktops, 1200px and up) */
/* @media (min-width: 1200px) {
  [class^="col-xl-"] {
    padding-right: 2.1875rem;
    padding-left: 2.1875rem;
  }
} */

[class^='col-sm-'],
[class^='col-md-'],
[class^='col-lg-'],
[class^='col-xl-'] {
  position: relative;
  flex: 0 0 100%;
}

/* .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    position: relative;
    flex: 0 0 100%;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  } */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 768px) {
  [class^='col-sm-'] {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }

  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .unauthorized-container {
    text-align: center;
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }

  .unauthorized-icon {
    font-size: 80px;
    color: #ff4b4b;
    margin-bottom: 20px;
  }

  .button {
    background-color: #ff4b4b;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .button:hover {
    background-color: #d43c3c;
  }

  /* Paddings */
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .pr-sm-3 {
    padding-right: 1rem !important;
  }

  .pl-sm-3 {
    padding-left: 1rem !important;
  }

  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }

  /* Visibility control*/
  .d-sm-none {
    display: none !important;
  }

  .d-sm-block {
    display: block !important;
  }
}

/* Medium devices (desktops, 768px and up) */
@media (min-width: 769px) {
  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Paddings */
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .pr-md {
    padding-right: 0 !important;
  }

  .pl-md {
    padding-left: 0 !important;
  }

  .pr-md-1 {
    padding-right: 0.25rem !important;
  }

  .pl-md-1 {
    padding-left: 0.25rem !important;
  }

  .pr-md-2 {
    padding-right: 0.5rem !important;
  }

  .pl-md-2 {
    padding-left: 0.5rem !important;
  }

  .pr-md-3 {
    padding-right: 1rem !important;
  }

  .pl-md-3 {
    padding-left: 1rem !important;
  }

  .pr-md-4 {
    padding-right: 1.5rem !important;
  }

  .pl-md-4 {
    padding-left: 1.5rem !important;
  }

  .pr-md-5 {
    padding-right: 3rem !important;
  }

  .pl-md-5 {
    padding-left: 3rem !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  /* Visibility control*/
  .d-md-none {
    display: none !important;
  }

  .d-md-block {
    display: block !important;
  }
}

/* Large devices (large desktops, 992px and up) */
@media (min-width: 993px) and (max-width: 1280px) {
  /* [class^="col-lg-"] {
      padding-right: 0.4375rem !important;
      padding-left: 0.4375rem !important;
   } */

  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* [class^="col-lg-"] {
    position: relative !important;
    flex: 0 0 100% !important;
  } */

  /* Paddings*/
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pr-lg {
    padding-right: 0 !important;
  }

  .pl-lg {
    padding-left: 0 !important;
  }

  .pr-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pl-lg-1 {
    padding-left: 0.25rem !important;
  }

  .pr-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pl-lg-2 {
    padding-left: 0.5rem !important;
  }

  .pr-lg-3 {
    padding-right: 1rem !important;
  }

  .pl-lg-3 {
    padding-left: 1rem !important;
  }

  .pr-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pl-lg-4 {
    padding-left: 1.5rem !important;
  }

  .pr-lg-5 {
    padding-right: 3rem !important;
  }

  .pl-lg-5 {
    padding-left: 3rem !important;
  }

  /* Visibility control*/
  .d-lg-none {
    display: none !important;
  }

  .d-lg-block {
    display: block !important;
  }
}

/* Extra large devices (extra large desktops, 1200px and up) */
@media (min-width: 1281px) {
  /* [class^="col-xl-"] {
     padding-right: 0.9375rem !important;
     padding-left: 0.9375rem !important;
   } */

  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Paddings */
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .pr-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pr-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pr-xl-3 {
    padding-right: 1rem !important;
  }

  .pr-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pr-xl-5 {
    padding-right: 3rem !important;
  }

  .pl-xl-1 {
    padding-left: 0.25rem !important;
  }

  .pl-xl-2 {
    padding-left: 0.5rem !important;
  }

  .pl-xl-3 {
    padding-left: 1rem !important;
  }

  .pl-xl-4 {
    padding-left: 1.5rem !important;
  }

  .pl-xl-5 {
    padding-left: 3rem !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  /* Visibility control*/
  .d-xl-none {
    display: none !important;
  }

  .d-xl-block {
    display: block !important;
  }
}

label {
  color: #1a1b25;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: inline-block;
}


.custom-select-dropdown {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 0.188rem);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem 0.75rem;
  border: 0.063rem solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
}

select {
  word-wrap: normal;
  text-transform: none;
  margin: 0;
  font-family: inherit;
}

.text-input-control:focus,
.custom-select-dropdown:focus {
  border-color: #5b73e8;
  outline: none;
}



.card-title-flex {
  display: flex;
  padding-top: 15px;
  padding-left: 25px;
}

.card-title-flex p {
  font-size: medium;
}

.card-sticker {
  background: #fff;
  border-radius: 0.313rem;
  -ms-box-shadow: 0 0.625rem 1.875rem 0 rgba(0, 60, 179, 0.05);
  -o-box-shadow: 0 0.625rem 1.875rem 0 rgba(0, 60, 179, 0.05);
  box-shadow: 0 0.625rem 1.875rem 0 rgb(0 60 179 / 5%);
  margin: 0 !important;
  box-shadow: none !important;
  border: 0 !important;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
}

.wallet-name-pad {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 12px;
  padding-bottom: 10px;
}

.wallet-name-pad p {
  margin: 0 auto;
  padding-top: 10px;
  font-size: 40px;
  color: #142a4a;
  font-weight: bolder;
  font-family: 'nunito';
}

.terminalId-pad {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 5px;
}

.terminalId-pad p {
  margin: 0 auto;
  font-size: 700px;
  color: #142a4a;
  font-weight: 800;
  font-family: 'nunito';
}

.terminalId-pad-short {
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.terminalId-pad-short p {
  margin: 0 auto;
  font-size: x-large;
  color: #142a4a;
  font-weight: 800;
  font-family: 'nunito';
}

.short-code {
  font-size: 24px;
  color: #142a4a;
  font-weight: 800;
  font-family: 'nunito';
}

.bottom-align {
  font-size: 12px;
  color: #142a4a;
  font-weight: bolder;
  font-family: 'Nunito';
}

.center-text {
  text-align: center;
  align-items: center;
  margin: 0 auto;
  font-size: xx-large;
  color: #142a4a;
  font-weight: 800;
  font-family: 'nunito';
}

.center-text-white {
  text-align: center;
  align-items: center;
  margin: 0 auto;
  font-size: xx-large;
  color: white;
  font-weight: 800;
  font-family: 'nunito';
}

.terminalId-pad p {
  margin: 0 auto;
  font-size: xx-large;
  color: #142a4a;
  font-weight: 800;
  font-family: 'nunito';
}

/* Container flexbox styling */




/* Flex items styling */
.short-code,
.card.terminalId-pad-short {
  flex: 4;
  /* Flex-grow: 1 to make all items take equal width */
  text-align: center;
  /* Center the content horizontally */
  padding: 10px;
  /* Optional: add padding for better spacing */
}

/* Optional: Add some margin to create spacing between items */
.short-code+.card.terminalId-pad-short,
.card.terminalId-pad-short+.short-code {
  margin-left: 0px;
}


.ghqrsticker {

  width: 826px;
  height: 1168px;
  padding: 45px;
  display: none;
  border: 1px solid #f1f1f3;
  border-radius: 10px;

  font-size: small;
  font-weight: 400;
  color: #142a4a;
  line-height: 1.428571429;
  font-family: 'Nunito', sans-serif;
  /* width: 626px;
  height: 626px;
  padding-top: 15px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  display:block; */
}

.ghqrsticker .ghqrtop {
  width: 100%;
  height: 90px;
  border-radius: 10px;
  position: relative;
  font-family: 'Nunito', sans-serif;
}

.secghqr {
  text-align: center;
  display: flex;
}

img.ghqrtoplogo {
  height: 51px;
}

img {
  /* font-family: Montserrat; */
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
}

.secright {
  margin-left: 10px;
  font-size: 38px;
  color: #ffc200;
  font-weight: 600;
  font-family: 'Nunito', sans-serif;
}

.ghqrname {
  font-size: 55px;
  text-align: center;
  margin-top: 30px;
  font-weight: 600;
  height: 186px;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  display: grid;
  align-items: center;
  padding: 15px;
}

.ghqrid {
  font-size: 46px;
  text-align: center;
  margin-top: 96px;
  font-weight: 600;
}

.ghqrterminalid {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 60px;
  font-weight: 600;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
}

.t-white {
  color: #fff;
}

.ghqrid {
  font-size: 46px;
  text-align: center;
  margin-top: 96px;
  font-weight: 600;
}

.topay {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 44px;
  font-weight: 600;
  background: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  position: absolute;
  top: -13px;
  left: 144px;
  width: 280px;
  text-align: center;
}

.help {
  text-align: right;
  font-family: nunito;
  font-weight: 600;
  font-size: 20px;
  width: 676px;
  display: flex;
  position: relative;
  bottom: -130px;
  margin-left: -31px;
}

.secghqr {
  text-align: center;
  display: flex;
}

.ghqrshow {
  display: block
}

.ghqrsticker .contentghqr {
  width: 100%;
  height: calc(100% - 90px);
  border-radius: 10px;
  padding: 60px;
  position: relative;
  background: #ffc200;
  /* border: 15px solid #ffc200;
  background: #ffc200;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 15px;
  position: relative;
  font-family: sovereign */
}

/* img.ghqrtopimg {
  width: 300px
} */

/* img.ghqrtoplogo {
  height: 45px;
  width: 58px
} */

.topghqr {
  text-align: center
}

/* end fo */

.card-header {
  height: 0.438rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding-top: 0.5625rem;
      padding-bottom: 0.5625rem; */
}

.card .card-header {
  display: flex;
  align-items: center;
  font-weight: 500;
}

.card-header:first-child {
  border-radius: 0.035rem 0.035rem 0 0;
}

.card-header {
  padding: 1rem 1.35rem;
  margin-bottom: 0;
  background-color: #f8f8f9;
  border-bottom: 0.063rem solid rgba(31, 45, 65, 0.125);
}

.card-title {
  font-size: 1rem;
  margin: 0 0 0.4375rem;
  font-weight: 600;
}

/*.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 0.78125rem;
}*.

/* End utilities */

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 16.25rem;
  /* 260px */
  background: white;
  z-index: 99 !important;
  transition: all 0.5s ease;
}

.sidebar.close {
  width: 4.875rem;
  /* 78px */
}

.sidebar .logo-details {
  display: flex;
  align-items: center;
  height: 3.75rem;
  /* 60px */
  width: 100%;
}

.sidebar .logo-details img {
  font-size: 1.875rem;
  color: #fff;
  margin-left: 1.25rem;
  text-align: center;
  width: 1.875rem;
  height: 1.875rem;

}

.sidebar .logo-details .logo_name {
  margin-left: 0.625rem;
  color: #fff;
  font-size: 1.1875rem;
  line-height: 2.625rem;
  padding-left: 0.0625rem;
  letter-spacing: 0.09375rem;
  font-weight: 600;
  flex: 1;
  transition: all 0.6s ease-in-out;
}

.sidebar.close .logo-details .logo_name {
  transition-delay: 0s;
  opacity: 0;
  pointer-events: none;
}

.sidebar .nav-links {
  height: 100%;
  margin: 0 0.625rem;
  /* 10px /
    padding: 1.875rem 0 9.375rem 0; / 30px 0 150px 0 */
  overflow: auto;
}

.sidebar.close .nav-links {
  overflow: hidden;
}

.sidebar .nav-links::-webkit-scrollbar {
  display: none;
}

.sidebar .nav-links li {
  position: relative;
  list-style: none;
  margin-top: 0.625rem;
  /* 10px */
}

.sidebar .nav-links li:hover {
  /* background-color: #FFF8EB; */
  border-radius: 0.3125rem;
  /* 5px */
  cursor: pointer !important;
}

.sidebar .nav-links .parent-tab:hover {
  background-color: #FFF8EB;
}

.sub-menu li:hover {
  background-color: #FFF8EB;
}

.sidebar .nav-links li .active {
  /* background-color: #FFF8EB; */
  border-radius: 0.3125rem;
  /* 5px */
  cursor: pointer !important;
}

.sidebar .nav-links li .iocn-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar .nav-links li .iocn-link a {
  flex: 1;
  /* cursor: pointer; */
}

.sidebar.close .nav-links li .iocn-link {
  display: block;
}

.sidebar .nav-links li i {
  text-align: center;
  /* color: #8f9fbc; */
  font-size: 1.1875rem;
  /* 19px */
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar .nav-links li.showMenu i.arrow {
  transform: rotate(-180deg);
}

.sidebar.close .nav-links i.arrow {
  display: none;
}

.sidebar .nav-links li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding-inline-start: 0.9375rem;
  /* 15px */
}

.sidebar .nav-links li a .link_name {
  font-size: 0.875rem;
  /* 14px */
  white-space: nowrap;
  display: block;
  /* color: #898989; */
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease-in-out;
  cursor: pointer;
  font-weight: 400;
}

.sidebar.close .nav-links li a .link_name {
  opacity: 0;
  pointer-events: none;
}

.sidebar.close .nav-links li a .link_name {
  opacity: 0;
  pointer-events: none;
}

.sidebar .nav-links li .sub-menu {
  padding: 0 0 0 2.188rem;
  /* margin-top: -0.625rem; /
    / background: #1d1b31; */
  display: none;
}

.sidebar .nav-links li.showMenu .sub-menu {
  display: block;
}

.sidebar .nav-links li .sub-menu a {
  font-size: 0.875rem;
  white-space: nowrap;
  display: block;
  /* color: #8f9fbc; */
  position: relative;
  padding: 0.563rem;
  line-height: 1.125rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  /* text-transform: capitalize; */
  transition: all 0.4s;
  font-weight: 400;
}

.sidebar .nav-links li .sub-menu a .sub-menu-icon {
  height: 50%;
  text-align: center;
  line-height: 0;
  color: #8f9fbc;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar .nav-links li .sub-menu a span {
  white-space: nowrap;
  padding: 0;
  display: inline-block;
  transition: none;
  margin-left: 0.625rem;
}

.sidebar .nav-links li .sub-menu a:hover {
  /* color: #FFBC38; */
  background-color: hsla(0, 0%, 100%, 0.08);
  border-radius: 0.313rem;
}

.sidebar.close .nav-links li .sub-menu {
  position: absolute;
  left: 100%;
  top: -0.625rem;
  margin-top: 0;
  padding: 0.625rem 1.25rem;
  border-radius: 0 0.375rem 0.375rem 0;
  opacity: 0;
  display: block;
  pointer-events: none;
  transition: 0s;
}

.sidebar.close .nav-links li:hover .sub-menu {
  top: 0;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
}

.sidebar .nav-links li .sub-menu .link_name {
  display: none;
}

.sidebar.close .nav-links li .sub-menu .link_name {
  font-size: 1.125rem;
  opacity: 1;
  display: block;
}

.sidebar .nav-links li .sub-menu.blank {
  opacity: 1;
  pointer-events: auto;
  padding: 0.188rem 1.25rem 0.375rem 1rem;
  opacity: 0;
  pointer-events: none;
}

.sidebar .nav-links li:hover .sub-menu.blank {
  top: 50%;
  transform: translateY(-50%);
}

/* main content wrapper */
.main-content-wrapper {
  position: relative;
  height: 100vh;
  transition: all 0.5s ease;
}

/* main content wrapper */
.main-content-wrapper {
  height: auto;
  min-height: 100vh;
  padding: 6.25rem 0.625rem 0.625rem 0.625rem;
  transition: all 0 0.3s ease-in-out;
}

/* main content wrapper on sidebar closed */
.main-content-wrapper-full {
  left: 80px;
  width: calc(100% - 80px);
}

/* main content wrapper on sidebar opened */
.main-content-wrapper-minimized {
  left: 260px;
  width: calc(100% - 260px);
}

@media (max-width: 400px) {
  .sidebar.close .nav-links li .sub-menu {
    display: none;
  }

  .sidebar {
    width: 78px;
  }

  .sidebar.close {
    width: 0;
  }

  .main-content-wrapper {
    left: 0px;
    width: calc(100%);
    z-index: 0;
  }

  .sidebar.close~.main-content-wrapper {
    width: 100%;
    left: 0;
  }
  .adm-nav-icon{
    display: none;
  }
  .top-navbar-full {
    left: 0px !important;
    width: calc(100% ) !important;
}
.wrapper{
  overflow-x: scroll;
}


}

/* Top Navbar*/
.main-wrapper .top-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding-right: 20px;
  min-height: 73px;
  max-height: 73px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  margin: 0;
  transition: all 0.3s ease-in-out;
  -ms-box-shadow: 0 0 30px rgba(12, 37, 86, 0.05);
  -o-box-shadow: 0 0 30px rgba(12, 37, 86, 0.05);
  box-shadow: 0 0 30px rgb(12 37 86 / 5%);
}

/* top navbar style when sidebar is closed */
.top-navbar-full {
  left: 80px ;
  width: calc(100% - 76px) ;
}

/* top navbar style when sidebar is opened */
.top-navbar-minimized {
  left: 260px !important;
  width: calc(100% - 260px) !important;
}

.top-navbar .bx-menu,
.top-navbar .text {
  color: #8f9fbc;
  font-size: 35px;
}

.top-navbar .bx-menu {
  margin: 15px;
  cursor: pointer;
  align-items: center;
}

.top-navbar .text {
  font-size: 26px;
  font-weight: 600;
  align-items: center;
}

/* Navbar toolbar menu */
.top-navbar .toolbar-content {
  display: flex;
  flex-basis: auto;
  align-items: center;
}

.top-navbar .toolbar-content .navbar-toolbar-menu {
  display: flex;
  list-style: none;
  flex-direction: row;
  margin: 0;
  padding: 0;
  float: right;
  margin-left: auto !important;
  align-items: center !important;
}

.top-navbar .toolbar-content .navbar-toolbar-menu .nav-item {
  list-style-type: none;
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.top-navbar .toolbar-content .navbar-toolbar-menu .nav-item svg {
  color: #8f9fbc !important;
}

.top-navbar .toolbar-content .navbar-toolbar-menu .nav-item .dropdown-toggle {
  color: #324253;
  padding: 0 10px;
  display: block;
  white-space: nowrap;
  text-decoration: none;
  background-color: transparent;
}

.top-navbar .toolbar-content .navbar-toolbar-menu>.nav-item>.dropdown-toggle .user-name {
  margin-left: 0.425rem;
  margin-bottom: 0;
  font-size: 15px;
}

.top-navbar .toolbar-content .navbar-toolbar-menu>.nav-item>a>img {
  width: 35px;
  height: 35px;
  min-width: 35px;
  border-radius: 50%;
  overflow: hidden;
  vertical-align: middle;
  border-style: none;
}

/* User dropdown menu*/
.navbar-toolbar-menu .nav-item .user-dropdown-menu {
  position: absolute;
  min-width: 12rem;
  padding: 0.4rem;
  float: none;
  top: 100%;
  right: 0;
  left: auto;
  z-index: 1000;
  margin: 20px 0;
  font-size: 1rem;
  color: #324253;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 0 solid rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  box-shadow: 0 16px 24px rgb(96 97 112 / 10%), 0 32px 48px rgb(0 0 0 / 15%);
  animation: d 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  display: inline-block;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
}

.navbar-toolbar-menu .nav-item .user-dropdown-menu.active {
  animation: d.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  visibility: visible;
  opacity: 1;
  transform: translateY(0%);
  transform: translateY(-1%);
}

.navbar-toolbar-menu .nav-item .user-dropdown-menu .dropdown-item {
  padding: 0.6rem 1rem;
  font-size: 14px;
  color: #324253;
  float: left;
  list-style-type: none;
  position: relative;
  display: flex;
  width: 100%;
  clear: both;
  font-weight: 400;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.navbar-toolbar-menu .nav-item ul li .dropdown-svg-icon {
  font-size: 1rem;
  vertical-align: -17%;
  color: #8f9fbc;
  margin-right: 0;
  overflow: hidden;
}

.user-dropdown-menu .dropdown-item>a {
  color: #324253;
  font-size: 14px;
  padding: 0 10px;
  display: block;
  text-decoration: none;
  background-color: transparent;
}

.navbar-toolbar-menu .nav-item .user-dropdown-menu .dropdown-item:hover {
  color: #3378ff;
  background: rgba(51, 120, 255, 0.1);
  border-radius: 5px;
  padding: 0.6rem 1rem;
}

.top-navbar .toolbar-content .navbar-toolbar-menu>.nav-item>a>img {
  width: 35px;
  height: 35px;
  min-width: 35px;
  border-radius: 50%;
  overflow: hidden;
  vertical-align: middle;
  border-style: none;
}

/* User dropdown menu*/
.navbar-toolbar-menu .nav-item .user-dropdown-menu {
  position: absolute;
  min-width: 12rem;
  padding: 0.4rem;
  float: none;
  top: 100%;
  right: 0;
  left: auto;
  z-index: 1000;
  margin: 20px 0;
  font-size: 1rem;
  color: #324253;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 0 solid rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  box-shadow: 0 16px 24px rgb(96 97 112 / 10%), 0 32px 48px rgb(0 0 0 / 15%);
  animation: d 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  display: inline-block;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
}

.navbar-toolbar-menu .nav-item .user-dropdown-menu.active {
  animation: d.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  visibility: visible;
  opacity: 1;
  transform: translateY(0%);
  transform: translateY(-1%);
}

.navbar-toolbar-menu .nav-item .user-dropdown-menu .dropdown-item {
  padding: 0.6rem 1rem;
  font-size: 14;
  color: #324253;
  float: left;
  list-style-type: none;
  position: relative;
  display: flex;
  width: 100%;
  clear: both;
  font-weight: 400;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.navbar-toolbar-menu .nav-item ul li .dropdown-svg-icon {
  font-size: 1rem;
  vertical-align: -17%;
  color: #8f9fbc;
  margin-right: 0;
  overflow: hidden;
}

.user-dropdown-menu .dropdown-item>a {
  color: #324253;
  font-size: 14px;
  padding: 0 10px;
  display: block;
  text-decoration: none;
  background-color: transparent;
}

.navbar-toolbar-menu .nav-item .user-dropdown-menu .dropdown-item:hover {
  color: #3378ff;
  background: rgba(51, 120, 255, 0.1);
  border-radius: 5px;
  padding: 0.6rem 1rem;
}

/* End user dropdown */

/* Notifications dropdown */
.notifications-dropdown {
  width: 500px;
  position: absolute;
  min-width: 12rem;
  padding: 0.4rem;
  float: none;
  top: 100%;
  right: 0;
  left: auto;
  z-index: 1000;
  margin: 20px 0;
  font-size: 1rem;
  color: #324253;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: none;
  background-color: #fff;
  padding: 0;
  border-radius: 5px;
  -ms-box-shadow: 0 16px 24px rgba(96, 97, 112, 0.1),
    0 32px 48px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0 16px 24px rgba(96, 97, 112, 0.1),
    0 32px 48px rgba(0, 0, 0, 0.15);
  box-shadow: 0 16px 24px rgb(96 97 112 / 10%), 0 32px 48px rgb(0 0 0 / 15%);
  transition: all 0.3s ease-in-out;
  animation: d 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  display: inline-block;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
}

.notifications-dropdown.active {
  animation: d.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  visibility: visible;
  opacity: 1;
  transform: translateY(0%);
  transform: translateY(1%);
}

.notification-badge>.badge {
  position: absolute;
  top: -10px;
  right: -7px;
}

.notifications-dropdown .card {
  background: #fff;
  margin-bottom: 0 !important;
  box-shadow: 0 !important;
}

.notifications-dropdown .card .card-header-border {
  border-bottom: 1px solid #f1f1f1;
  padding: 1.25rem !important;
}

.notifications-dropdown .card .card-header-border h6 {
  font-family: DM Sans, sans-serif;
  font-weight: 600;
  margin: 0;
  color: #213446;
  font-size: 0.95rem;
  text-align: center !important;
}

.notifications-dropdown .card .card-body {
  border-bottom: 1px solid #f1f1f1;
  padding: 0 !important;
  overflow: auto !important;
  flex: 1 1 auto;
  min-height: 1px;
}

.notifications-dropdown .card .card-body .notifications-dropdown-menu {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0 !important;
  overflow: auto !important;
  margin-top: 0;
}

.notifications-dropdown .dropdown-item-list {
  border-bottom: 1px solid #f1f1f1;
  list-style-type: none;
  position: relative;
  padding: 0.5rem !important;
  float: none !important;
}

.notifications-dropdown .dropdown-item-list:hover {
  color: #3378ff;
  background: rgba(143, 159, 188, 0.1);
}

.notifications-dropdown .card .card-body .notifications-dropdown-menu .dropdown-item-list .list-item {
  min-width: 33.3%;
  align-items: flex-start;
  justify-content: flex-start;
  display: flex;
  position: relative;
}

.list-item .avatar {
  position: relative;
}

.notifications-dropdown .avatar-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 50px;
  min-width: 50px;
  height: 50px;
  object-fit: cover;
}

.list-item .avatar img {
  height: 45px;
  width: 45px;
  border-radius: 50% !important;
  vertical-align: middle;
  border-style: none;
}

.dropdown-item-list .list-item .list-style-detail {
  margin-left: 1rem;
  margin-right: 0.625rem;
}

.dropdown-item-list .list-item .list-style-detail h6 {
  font-family: DM Sans, sans-serif;
  font-weight: 500;
  margin: 0;
  color: #213446;
  font-size: 1rem;
}

.notifications-dropdown .dropdown-item-list:hover h6 {
  color: #3378ff;
  font-weight: 700 !important;
}

.dropdown-item-list .list-item .list-style-detail>p {
  margin: 0px;
}

.list-style-detail>p>small {
  color: #8f9fbc !important;
  font-size: 80%;
  font-weight: 400;
}

.list-style-detail>p>small>svg {
  overflow: hidden;
  color: #8f9fbc !important;
  margin-right: 0.3125rem !important;
  vertical-align: middle;
}

.dropdown-item-list .list-item .download-icon {
  /* Position the download icon */
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.dropdown-item-list .list-item .download-icon i {
  /* Add styles for the icon (you can customize this as needed) */
  font-size: 20px;
  color: #ccc;
  cursor: pointer;
}

.card-footer {
  background: transparent;
  border-top-color: #f1f1f1;
  border-radius: 0 0 5px 5px;

  color: #6c757d !important;
  padding: 1.25rem !important;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border-top: 0 solid #dfe7ff;
}

.card-footer .show-all-notifications {
  color: #3378ff;
  text-align: center;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 0;
}

.user-welcome-wrapper {
  margin-bottom: 0.9375rem;
}

.user-welcome-wrapper div h1 {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: #213446;
}

.user-welcome-wrapper .date-time-wrapper {
  font-size: 0.875rem;
  font-weight: 400;
}

.user-welcome-wrapper .date-time-wrapper span {
  font-weight: 500;
}

.card {
  margin-bottom: 0.78125rem !important;
  box-shadow: 0 0.125rem 0.25rem rgba(15, 34, 58, 0.12) !important;
}

.stats-title {
  margin-bottom: 0.25rem !important;
  margin-top: 0.25rem !important;
  /* font-size: 1.35rem; */
  font-size: 1.15rem;
  color: #495057;
  font-weight: 500;
  line-height: 1.2;
}

.stats-label,
.stats-changed {
  color: #74788d !important;
  margin-bottom: 0 !important;
  margin-top: 0;
  font-size: 0.9rem;
  display: inline-flex;
}

.stats-hero-icon-wrapper i {
  font-size: 1.875rem;
  /* 30px/16 = 1.875rem */
  color: #74788d !important;
}

.stats-changed {
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
  display: inline-block;
}

.stats-changed span {
  margin-right: 0.25rem !important;
}

.stats-changed i {
  font-size: 1.375rem;
  /* 22px/16 = 1.375rem /
    / margin-right: 0.15rem!important; */
}

@media (max-width: 1280px) {
  .stats-title {
    font-size: 1.1rem !important;
  }

  .stats-label,
  .stats-changed {
    font-size: 0.8rem !important;
  }

  .stats-hero-icon-wrapper i {
    font-size: 1.263rem;
    /* 25px/16 = 1.563rem */
  }
}

/* Custom dropdown UI style start*/

.dropdown,
.calender {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: white;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
  /* display: flex;
        align-items: center; */
}

.dropbtn:hover {
  background-color: white;
  /* No background color on hover */
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  width: 100%;
}

.dropdown-content div {
  color: black;
  padding: 12px 16px;
  cursor: pointer;
}

.dropdown-content div:hover {
  background-color: #f1f1f1;
}

.dropdown.show .dropdown-content {
  display: block;
}

.is-visible {
  display: block;
}

/* Custom dropdown UI style end*/

/* pagination UI style start*/
.pagination {
  display: flex;
  list-style: none;
  margin: 0.125rem 0;
  /* 2px/16 = 0.125rem */
  white-space: nowrap;
  justify-content: flex-end;
  padding-left: 0;
}

.pagination li a {
  font-weight: 100 !important;
  padding: 0.375rem 0.75rem;
  position: relative;
  display: block;
  border: 0.063rem solid #f6f6f6;
  /* 1px/16 = 0.063rem */
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.pagination li.active,
.pagination li.a:hover,
.pagination li:first-child:hover,
.pagination li:last-child:hover {
  z-index: 3;
  color: #fff !important;
  background-color: #5b73e8 !important;
  border-color: #5b73e8 !important;
}

/* pagination UI style end*/

/* no permissions card style  start */
.no-permission-card-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.no-permission-card-message p {
  font-size: 1rem;
}

/* no permissions card style  end*/

/* no results found div style start*/
.no-results-found-wrapper {
  min-height: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.no-results-found-wrapper .no-results-message-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.no-results-found-wrapper .no-results-message-wrapper i {
  font-size: 3.5rem;
  margin: 2rem;
  color: #ffae00;
}

.no-results-found-wrapper .no-results-message-wrapper .no-results-hero {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* .no-results-found-wrapper p {
    font-size: 1rem;
} */
/* no results found div style end*/

/* incidents statistics */
.incidents .card-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.incidents .list-inline {
  padding-left: 0;
  list-style: none;
  margin-top: 0;
}

.incidents .sorting-dropdown a {
  opacity: 1;
  color: inherit;
  text-decoration: none;
  font-size: 0.9375rem;
}

.incidents .sorting-dropdown a .sorting-label {
  font-weight: 600;
}

.incidents .sorting-dropdown a .sorting-value {
  opacity: 1;
  color: #74788d;
}

.incidents .sorting-dropdown a .sorting-value i {
  margin-left: 0.25rem;
}

.incidents .list-inline .list-inline-item {
  border-left: 0.0875rem solid #f6f6f6;
  padding: 0.125rem 1.25rem;
  margin-right: 0.5rem;
  display: inline-block;
}

.incidents .incidents-analytics-label {
  opacity: 1;
  color: #74788d;
  margin-left: 1rem;
  font-size: 0.5625rem;
}

.incidents .incidents-charts {
  margin-top: 1rem;
  min-height: 22.125rem;
}

/* Activity tracker start*/
[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  /* Required for horizontal native scrollbar to not appear if parent is taller than natural height /
    width: auto;
    overflow: auto;
    / Scroll on this element otherwise element can't have a padding applied properly /
    max-width: 100%;
    / Not required for horizontal scroll to trigger /
    max-height: 100%;
    / Needed for vertical scroll to trigger */
  scrollbar-width: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.simplebar-content:before,
.simplebar-content:after {
  content: ' ';
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  right: 0.125rem;
  width: 0.3125rem;
  min-height: 0.625rem;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: '';
  background: #a2adb7;
  border-radius: 0.4375rem;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.timeline-alt .timeline-item:before {
  background-color: #f1f3fa;
  bottom: 0;
  content: '';
  left: 0.875rem;
  position: absolute;
  top: 2rem;
  width: 0.125rem;
  z-index: 0;
}

.simplebar-scrollbar.simplebar-visible:before {
  /* When hovered, remove all transitions from drag handle */
  opacity: 0.5;
  transition: opacity 0s linear;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 0.6875rem;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 0.125rem;
  bottom: 0.125rem;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 0.6875rem;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0.125rem;
  height: 0.4375rem;
  min-height: 0;
  min-width: 0.625rem;
  width: auto;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 0.125rem;
  right: 0.125rem;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
}

.custom-scroll {
  height: 100%;
}

[data-simplebar-lg] .simplebar-scrollbar {
  right: 0.0625rem;
  width: 0.625rem;
}

.timeline-alt .timeline-item {
  position: relative;
}

.timeline-alt .timeline-item .timeline-icon {
  float: left;
  height: 1.875rem;
  width: 1.875rem;
  border-radius: 50%;
  border: 0.125rem solid transparent;
  font-size: 0.75rem;
  text-align: center !important;
  line-height: 1rem;
  background-color: #fff;
}

.timeline-item-info {
  margin-left: 2.5rem !important;
}

.text-info {
  color: #5b73e8 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.mb-1 {
  margin-bottom: 0.375rem !important;
}

.d-block {
  display: block !important;
}

.small,
small {
  font-size: 0.75rem;
}

.pb-2 {
  padding-bottom: 0.375rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

/* Activity tracker end */

/* New users table start */
.new-users-wrapper {
  max-height: 22.81rem;
  min-height: 22.81rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.new-users-wrapper .user-fullname {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
  font-weight: 400;
}

.new-users-wrapper .user-location {
  color: #74788d;
  font-size: 0.8125rem;
  margin-bottom: 0;
}

.new-users-wrapper .verified-status-success {
  color: #34c38f;
  font-size: 0.75rem;
  background-color: rgba(52, 195, 143, 0.25);
}

.new-users-wrapper .verified-status-error {
  font-size: 0.75rem;
  color: #f46a6a;
  background-color: rgba(244, 106, 106, 0.25);
}

.new-users-wrapper .user-account-type {
  color: #74788d;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
}

/*Transactions*/
.transactions .transactions-wrapper {
  max-height: 21.875rem;
  /* 350px / 16px = 21.875rem */
  min-height: 21.875rem;
  /* 350px / 16px = 21.875rem */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/*table.table-light {
  color: #495057;
  border-color: #f6f6f6;
  border-color: var(--border-color);
  background-color: #f8f9fa;
}*/

.table>thead {
  vertical-align: bottom;
}

.table>thead {
  vertical-align: bottom;
}

.transactions .card-title h4 {
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.transactions .transaction-id {
  font-weight: 600;
  --bs-text-opacity: 1;
  color: rgba(73, 80, 87, var(--bs-text-opacity));
}

.transactions .view-transactions-details-btn {
  padding: 0.25rem 0.5rem !important;
  font-size: 0.7875rem;
  border-radius: 0.2rem !important;
  color: #fff;
  background-color: #5b73e8;
  border-color: #5b73e8;
}

/* Account balance table style */
.account-balance-wrapper {
  /* min-height: 350px; */
  max-height: 450px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Account balance table style end */

/* Account balance table style */

/* Incidents Page*/
.current-page-title {
  margin-bottom: 0.9375rem;
  /* 15px / 16px = 0.9375rem */
}

.search-box .text-input-control {
  border-radius: 1.875rem;
  /* 30px / 16px = 1.875rem */
  padding-left: 2.5rem;
  /* 40px / 16px = 2.5rem */
}

.sorting-dropdown-wrapper {
  display: flex;
  align-items: center;
  align-content: center;
}

/* .sorting-dropdown-wrapper .status-label {
  min-width: 100px;
  margin: 0;
} */

/* .incidents-table .sorting-dropdown-wrapper .staff-label {
  min-width: 90px;
  margin: 0;
} */

/*Action buttons tooltip style*/

.tooltip-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.tooltip-container-padding {
  padding: 30px;
}

.download-icon {
  font-size: x-large;
}

.tooltip-text {
  color: #fff;
  background-color: var(--menu-item-active-color);
  position: absolute;
  bottom: 1rem;
  /* top: -100%; */
  /* left: 0; */
  transform: translateX(-50%);
  padding: 0.3125rem 0.625rem;
  border-radius: 0.3125rem;
  font-size: 0.875rem;
  opacity: 0;
  transition: all 0.5s;
}

.tooltip-text::after {
  content: '';
  border-width: 0.3125rem;
  border-style: solid;
  border-color: var(--menu-item-active-color) transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 55%;
  transform: translateX(-50%);
  margin-left: -0.3125rem;
}

.tooltip-container:hover .tooltip-text {
  opacity: 1;
  transform: translateY(-0.625rem);
}

.restore i {
  font-size: 1.625rem !important;
}

.btn-icon:hover i {
  color: #34c38f !important;
}

.delete:hover i {
  color: #f42b3d !important;
}

/*Modal Styles */
a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  font-size: inherit;
}

.btn-group {
  text-align: center;
}

.save-incident-btn {
  padding: 0.55rem 0.5rem !important;
  font-size: 0.7875rem;
  border-radius: 0.2rem !important;
  color: #fff;
  background-color: #5b73e8;
  border-color: #5b73e8;
}

.open-modal {
  font-weight: bold;
  background: var(--blue);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  margin-bottom: 1rem;
  border-radius: 5px;
}

/* MODAL
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
.modal {
  position: fixed;
  z-index: 1055;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--black);
  visibility: hidden;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  transition: all 0.35s ease-in;
  box-shadow: 0 7px 14px 0 rgba(65, 69, 82, 0.08),
    0 3px 6px 0 rgba(0, 0, 0, 0.12) !important;
}

.fade {
  transition: opacity 0.15s linear;
}

.modal.is-visible {
  visibility: visible;
  opacity: 1;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  box-shadow: inset 0 -1px rgb(235, 238, 241);
  border-top-left-radius: calc(0.4rem - 1px);
  border-top-right-radius: calc(0.4rem - 1px);
}

.modal-header .modal-title {
  margin-bottom: 0px !important;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 500px;
  /* max-height: 100%; */
  max-height: 95vh;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #f6f6f6;
  border-radius: 0.4rem;
  outline: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-dialog>* {
  padding: 1rem;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header .close-modal {
  font-size: 1.5rem;
}

.modal-submit-btn,
.modal-delete-btn {
  margin: 10px 5px;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  min-height: 28px;
  border-radius: 6px;
  padding: 4px 8px;
  background-color: rgb(99, 91, 255);
  box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px,
    rgb(0 0 0 / 12%) 0px 1px 1px 0px, rgb(99 91 255) 0px 0px 0px 1px,
    rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px,
    rgb(64 68 82 / 8%) 0px 2px 5px 0px;
}

.modal-cancel-btn {
  margin: 10px;
  color: rgb(64, 68, 82);
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  min-height: 28px;
  border-radius: 6px;
  padding: 4px 8px;
  background-color: rgb(255, 255, 255);
  box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px,
    rgb(0 0 0 / 12%) 0px 1px 1px 0px, rgb(64 68 82 / 16%) 0px 0px 0px 1px,
    rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px,
    rgb(64 68 82 / 8%) 0px 2px 5px 0px;
}

.modal-delete-btn {
  background-color: #f42b3d !important;
  color: #fff !important;
  box-shadow: 0 !important;
}

.modal-footer {
  box-shadow: inset 0 1px rgb(235, 238, 241) !important;
}

.modal-footer .modal-footer-content-wrapper {
  margin: 10px;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.pl-0 {
  padding-left: 0;
}

.button {
  padding: 0.7rem 1.5rem;
  border: 1px solid #4361ee;
  background-color: #4361ee;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

.submit-btn {
  border: 1px solid #0e9594;
  background-color: #0e9594;
}

.mt-3 {
  margin-top: 2rem;
}

.d-none {
  display: none;
}

/* .form-step {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 3rem;
} */

.font-normal {
  font-weight: normal;
}

.form-stepper-inner-wrapper {
  margin: 35px;
}

ul.form-stepper {
  counter-reset: section;
  margin-bottom: 1.5rem;
}

ul.form-stepper .form-stepper-circle {
  position: relative;
}

.form-step .card-title {
  margin-bottom: 1.4rem;
}

ul.form-stepper .form-stepper-circle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.form-input-wrapper {
  margin-bottom: 1rem;
  margin-right: 0.6rem;
}

/* .form-input-wrapper label span {
  color: ;
} */

.form-stepper-horizontal {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

ul.form-stepper>li:not(:last-of-type) {
  margin-bottom: 0.625rem;
  -webkit-transition: margin-bottom 0.4s;
  -o-transition: margin-bottom 0.4s;
  transition: margin-bottom 0.4s;
}

.form-stepper-horizontal>li:not(:last-of-type) {
  margin-bottom: 0 !important;
}

.form-stepper-horizontal li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.form-stepper-horizontal li:not(:last-child):after {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 1px;
  content: '';
  top: 32%;
}

.form-stepper-horizontal li:after {
  background-color: #dee2e6;
}

.form-stepper-horizontal li.form-stepper-completed:after {
  background-color: rgb(251, 140, 0);
}

.form-stepper-horizontal li:last-child {
  flex: unset;
}

ul.form-stepper li a .form-stepper-circle {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 0;
  line-height: 1.7rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.38);
  border-radius: 50%;
}

.form-stepper .form-stepper-active .form-stepper-circle {
  /* background-color: #4361ee !important;
  color: #fff; */
  color: rgb(251, 140, 0);
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 12px;
  background-color: rgb(255, 255, 255);
  box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px,
    rgb(0 0 0 / 12%) 0px 1px 1px 0px, rgb(64 68 82 / 16%) 0px 0px 0px 1px,
    rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px,
    rgb(64 68 82 / 8%) 0px 2px 5px 0px;
}

.form-stepper .form-stepper-active .label {
  color: rgba(0, 0, 0, 0.7) !important;
}

.form-stepper .form-stepper-active .form-stepper-circle:hover {
  background-color: rgb(251, 140, 0) !important;
  color: #fff !important;
}

.form-stepper .form-stepper-unfinished .form-stepper-circle {
  background-color: #f8f7ff;
}

.form-stepper .form-stepper-completed .form-stepper-circle {
  background-color: rgb(251, 140, 0) !important;
  color: #fff;
}

.form-stepper .form-stepper-completed .label {
  color: rgb(251, 140, 0) !important;
}

.form-stepper .form-stepper-completed .form-stepper-circle:hover {
  background-color: rgb(251, 140, 0) !important;
  color: #fff !important;
}

.form-stepper .form-stepper-active span.text-muted {
  /* color: rgb(251, 140, 0) !important; */
}

.form-stepper .form-stepper-completed span.text-muted {
  color: #fff !important;
}

.form-stepper .label {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #1a1b25;
  font-weight: 600;
}

.form-stepper a {
  cursor: default;
}

.btn-navigate-form-step {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
  color: rgb(251, 140, 0);
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  min-height: 28px;
  border-radius: 6px;
  padding: 8px 12px;
  background-color: rgb(255, 255, 255);
  box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px,
    rgb(0 0 0 / 12%) 0px 1px 1px 0px, rgb(64 68 82 / 16%) 0px 0px 0px 1px,
    rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px,
    rgb(64 68 82 / 8%) 0px 2px 5px 0px;
}

.incident-page .modal-content {
  width: 570px;
}

.incident-details-modal .details-wrapper {
  background-color: #f8f9fa;
  /* margin: 15px; */
  padding: 15px;
  border-radius: 0.75rem;
  margin-top: 10px;
  margin-bottom: 15px;
}

.incident-details-modal .details-wrapper .group-wrapper {
  margin-top: 0.8rem;
}

.incident-details-modal .details-wrapper label {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: block;
}

.incident-details-modal .details-wrapper .incident-label {
  line-height: 1.25;
  font-size: 0.9rem;
  /* margin-bottom: 0.5rem; */
}

.incident-details-modal .details-wrapper .incident-data-span {
  font-weight: 600;
  color: #344767;
  font-size: 0.85rem;
}

/* Customers page */
.customers .sorting-dropdown-wrapper .staff-label {
  min-width: 65px;
  margin: 0;
}

/* Loading spinner start */
.customers-loading-wrapper {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 999;
}

/* Loading spinner end */

/* Customer details page */
.customer-details .fa_icon {
  font-size: 19px !important;
}

.customer-avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 50% !important;
  padding: 0.25rem;
  background-color: #3cb72c;
  border-radius: 0.25rem;
}

.customer-name {
  font-size: 1.125rem;
  color: #495057;
  margin-top: 1rem !;
  margin-bottom: 0.25rem;
}

.customer-avatar-wrapper {
  margin-top: 20px;
  margin-bottom: 20px;
}

.verification-status-btn-wrapper {
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap !important;
}

.verification-status-btn {
  margin-right: 3px;
  color: #000;
  border-color: #f5f6f8;
}

.verification-status-btn .bx {
  text-align: center;
}

@media (max-width: 1280px) {
  .verification-status-btn {
    margin-bottom: 5px !important;
  }
}

@media (min-width: 1281px) {
  .verification-status-btn .bx {
    font-size: 17px !important;
  }
}

hr:not([size]) {
  height: 1px;
}

hr {
  margin: 1rem 0;
  color: rgba(0, 0, 0, 0.1);
  background-color: currentColor;
  border: 0;
  opacity: 0.5;
}

.hr-spacing {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.customer-info-wrapper,
.merchant-info-wrapper {
  margin-bottom: 1.5rem;
}

.customer-info-wrapper i {
  font-size: 14px;
  margin-right: 6px;
}

.customer-info-wrapper .user_info {
  font-size: 15px;
  color: #495057;
  font-weight: 500;
  display: inline-block !important;
}

.merchant-info-wrapper {
  font-size: 14px;
}

/* Tab */
.nav-tabs-custom {
  border-bottom: 2px solid #f6f6f6 !important;
}

.nav-tabs {
  border-bottom: 1px solid #f6f6f6;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-tabs-custom .nav-item {
  position: relative;
  color: #343a40;
}

.nav-justified .nav-item,
.nav-justified>.nav-link {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.nav-tabs-custom .nav-item .nav-link.active {
  color: #5b73e8;
}

.nav-tabs-custom .nav-item .nav-link {
  border: none;
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: 0 0;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-pills>a,
.nav-pills>li>a,
.nav-tabs>li>a {
  color: #495057;
  font-weight: 500;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #0d6efd;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}

.nav-tabs-custom .nav-item .nav-link.active:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.nav-tabs-custom .nav-item .nav-link:after {
  content: '';
  background: #5b73e8;
  height: 2px;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -2px;
  transition: all 0.25s ease 0s;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.nav-link i {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.tab-content {
  margin: 15px;
}

/*  Account Management  */




/* Permissions Management  */

.role-name {
  font-size: 15px;
  font-weight: 500;
}

.form-check {
  display: block;
  min-height: 1.35rem;
  margin-bottom: 0.125rem;
}

.form-check-input:checked {
  background-color: #5b73e8;
  border-color: #5b73e8;
}

.form-check-input[type='checkbox'] {
  border-radius: 0.25em;
  margin-right: 8px;
}

.form-check,
.form-check-input,
.form-check-label {
  cursor: pointer;
  margin-bottom: 0;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.permissions-wrapper {
  margin-left: 13px;
  margin-bottom: 10px;
}

.permissions-wrapper .label {
  font-weight: 800;
  color: #495057;
}

/* GhQR Onboarding start */

.ghqr-onboarding .total_onboarded_merchants,
.ghqr-onboarding .total_inactive_merchants,
.ghqr-onboarding .total_active_merchants,
.ghqr-onboarding .other_merchants_status {
  font-size: 1.5rem;
  font-weight: 500;
  color: #495057;
  margin-bottom: 0.5rem;
}

.ghqr-onboarding .total_onboarded_merchants .stats-label,
.ghqr-onboarding .total_inactive_merchants .stats-label,
.ghqr-onboarding .total_active_merchants .stats-label,
.ghqr-onboarding .other_merchants_status .stats-label {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 1rem;
}

.ghqr-onboarding .total_onboarded_merchants .stats-title,
.ghqr-onboarding .total_inactive_merchants .stats-title,
.ghqr-onboarding .total_active_merchants .stats-title,
.ghqr-onboarding .other_merchants_status .stats-title {
  color: rgba(255, 255, 255, 1) !important;
  font-size: 1.25rem;
  font-weight: 500;
}

.ghqr-onboarding .total_onboarded_merchants .stats-hero-icon-wrapper,
.ghqr-onboarding .total_inactive_merchants .stats-hero-icon-wrapper,
.ghqr-onboarding .total_active_merchants .stats-hero-icon-wrapper,
.ghqr-onboarding .other_merchants_status .stats-hero-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.ghqr-onboarding .total_onboarded_merchants .stats-icon,
.ghqr-onboarding .total_inactive_merchants .stats-icon,
.ghqr-onboarding .total_active_merchants .stats-icon,
.ghqr-onboarding .other_merchants_status .stats-icon {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.75) !important;
  align-items: center;
}

.ghqr-onboarding .total_onboarded_merchants .card {
  background-color: #015fec;
}

.ghqr-onboarding .total_active_merchants .card {
  background-color: #00ac69;
}

.ghqr-onboarding .total_inactive_merchants .card {
  background-color: #f1b44c;
}

.ghqr-onboarding .other_merchants_status .card {
  background-color: #e81500;
}

.export-btn-wrapper {
  margin-top: 0.8rem;
}

.export-btn,
.export-link {
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.export-btn {
  height: 30px !important;
  background-color: #5b73e8;
  color: #fff;
}

.export-link {
  color: #5b73e8;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.view-merchant-details-btn {
  color: #5b73e8;
  background-color: #fff;
  padding: 0.25rem 0.5rem;
  font-size: 0.7875rem;
  font-size: 14px;
  cursor: pointer;
}

.merchant-filters-modal-content {
  background-color: #f6f8fa;
}

/* GhQR Onboarding end */

/* GhQR Onboarding Details start */

.merchant-transactions-wrapper {
  min-height: 219px !important;
}

/* .btn-outline-light {
  color: #212529;
} */

.btn-outline-light {
  /* color: #f5f6f8; */
  /* border-color: #f5f6f8; */
}




.active-filter-btn {
  color: #5b73e8 !important;
  background-color: rgba(91, 115, 232, 0.25) !important;
  padding-right: 0.6em;
  padding-left: 0.6em;
}

.reset-filters-btn {
  color: #f42b3d !important;
  background-color: rgba(244, 43, 61, 0.25) !important;
  padding-right: 0.6em;
  padding-left: 0.6em;
}

.table-btn i {
  font-size: 14px;
  margin-right: 5px;
}

/* GhQR Onboarding Details end */

/* GhQR Marketers Onboarding start*/

.add-merchant-btn {
  margin: 10px 5px;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  min-height: 28px;
  border-radius: 6px;
  padding: 4px 8px;
  background-color: rgb(99, 91, 255);
  box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px,
    rgb(0 0 0 / 12%) 0px 1px 1px 0px, rgb(99 91 255) 0px 0px 0px 1px,
    rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px,
    rgb(64 68 82 / 8%) 0px 2px 5px 0px;
}

.add-merchant-btn i {
  font-size: 19px !important;
}

/* GHQR Marketers Onboarding end */

/* ISMS Management start */

/* Policy document details modal header style */
.modal-section-wrapper {
  width: 100%;
}

.modal-section-wrapper p {
  background-color: #ff9800;
  color: #000;
  width: 180px;
  padding: 10px !important;
  margin-top: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 14px !important;
  box-shadow: inset 0 -1px rgb(235 238 241);
  border-top-left-radius: calc(0.4rem - 1px);
  border-top-right-radius: calc(0.4rem - 1px);
}

.modal-section-wrapper div {
  margin-bottom: 10px;
  margin-left: 10px;
  border-bottom: 1px solid #ccc;
}

.modal-list {
  margin-left: 20px;
}

.modal-list li {
  color: #1a1b25;
  font-weight: 600;
}

.modal-list li:last-child {
  margin-bottom: 20px;
}

/* .heading-1 {
  font-family: "Roboto Slab", serif;
  font-size: 1.5em;
  letter-spacing: 0.08em;
  font-weight: 300;
  color: #f60;
  text-shadow: 0 1px 1px #ffffff;
  text-transform: uppercase;
}

.divider-1 {
  border-bottom: 1px solid #fff;
  background-color: #dadada;
  height: 1px;
  margin: 0.5em 0px 1.5em;
  width: 100% !important;
  padding: 1rem;
  box-shadow: inset 0 -1px rgb(235 238 241);
  border-top-left-radius: calc(0.4rem - 1px);
  border-top-right-radius: calc(0.4rem - 1px);
}

.divider-1 span {
  display: block;
  width: 50px;
  height: 1px;
  background-color: #f60;
} */

/* end of custom divider */

/* ISMS management end*/

/* Settings page start */
.center-modal-content a {
  color: rgb(99, 91, 255);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.center-modal-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.center-modal-content>p {
  color: #495057 !important;
}

.center-modal-content>img {
  max-height: 166px;
  margin: 20px;
}

.otp-wrapper {
  margin-top: 20px;
  display: flex;
}

.otp-wrapper input {
  width: 45px;
  font-size: 32px;
  padding: 5px;
  text-align: center;
  border: 1px solid #ced4da;
  color: #495057;
  font-weight: bold;
  outline: none;
  transition: all 0.1s ease;
}

.otp-wrapper input:focus {
  outline: none;
  border: 2px solid #5b73e8;
}

.otp-wrapper input:nth-child(3) {
  margin-right: 30px !important;
}

.otp-wrapper input:nth-child(1),
.otp-wrapper input:nth-child(4) {
  border-start-start-radius: 10px;
  border-end-start-radius: 10px;
}

.otp-wrapper input:nth-child(3),
.otp-wrapper input:nth-child(6) {
  border-start-end-radius: 10px;
  border-end-end-radius: 10px;
}

/* Settings end */

/* Profile page */
.admin-avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 50% !important;
  padding: 0.25rem;
  border-radius: 0.25rem;
}

.profile .edit-info-icon,
.profile .cancel-edit-icon {
  font-size: 23px;
  color: rgb(37, 99, 235);
  cursor: pointer;
}

.profile-photo-wrapper {
  width: auto;
  height: 88px;
  margin-left: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.image-preview-holder {
  display: flex;
  width: 88px;
  height: 100%;
  background-color: rgb(219, 234, 254);
  color: rgb(37, 99, 235);
  border-radius: 50%;
  border: 1.5px dashed rgb(37, 99, 235);
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.upload-image-btn {
  color: rgb(255, 255, 255) !important;
  background-color: rgb(37, 99, 235);
  border-radius: 50%;
  position: relative;
  bottom: -30px;
  right: 23px;
}

.upload-image-btn-icon {
  vertical-align: middle;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: inline-flex;
  -webkit-box-flex: 0;
  flex-grow: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  justify-content: center;
  align-content: center;
  -webkit-box-align: center;
  align-items: center;
  justify-items: center;
}

.remove-image-btn-icon {
  transform: scale(0.6);
}

.profile-image-input {
  position: absolute;
  opacity: 0;
  inset: 0px;
  margin: 0px;
  cursor: pointer;
  direction: ltr;
  z-index: 1;
  width: 100%;
  display: hidden;
}

.edit-Profile-info-card {
  padding: 1rem;
  background-color: rgb(255, 255, 255);
  box-shadow: rgb(0 0 0 / 7%) 0px 1px 1px, rgb(0 0 0 / 8%) 0px 1px 2px,
    rgb(0 0 0 / 10%) 0px 2px 2px, rgb(0 0 0 / 5%) 0px 0px 8px;
  position: relative;
  border: 1px solid rgb(37, 99, 235);
}

.submit-btn {
  min-width: 100px;
  padding: 0.55rem 0.5rem !important;
  font-size: 0.7875rem;
  border-radius: 0.2rem !important;
  color: #fff;
  background-color: rgb(37, 99, 235);
  border-color: rgb(37, 99, 235);
}

.submit-btn:hover {
  background-color: rgb(5, 51, 153);
  border-color: rgb(5, 51, 153);
}

.cancel-btn {
  min-width: 80px;
  margin-right: 10px;
  padding: 0.55rem 0.5rem !important;
  font-size: 0.7875rem;
  border-radius: 0.2rem !important;
  color: rgb(63, 63, 70);
  font-family: Inter, sans-serif;
  background: none rgb(255, 255, 255);
  margin: 0px 1rem 0px 0px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(212, 212, 216);
  border-image: initial;
  border-radius: 8px;
}

.cancel-btn:hover {
  background: #d9d9db;
  border-color: #a3a3a8;
}

.b-contain *,
.b-contain *::before,
.b-contain *::after {
  box-sizing: content-box !important;
}

.b-contain input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.b-contain span {
  line-height: 1.5;
  font-size: 0.9rem;
  color: #1a1b25;
  font-weight: 400 !important;
}

.b-contain {
  display: table;
  position: relative;
  padding-left: 2rem;
  cursor: pointer;
  margin-bottom: 0.4rem;
}

.b-contain input[type='checkbox']~.b-input {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.2rem;
  width: 1.2rem;
  background: #f1f5f9;
  transition: background 250ms;
  border: 1px solid #94a3b8;
  border-radius: 0.2rem;

  /* transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;

  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; */
}

/* .b-contain input[type="radio"] ~ .b-input {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.25rem;
  width: 1.25rem;
  background: #f1f5f9;
  transition: background 250ms;
  border: 1px solid #94a3b8;
  border-radius: 3rem;
} */

.b-contain input[type='checkbox']~.b-input::after {
  content: '';
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 0.3rem;
  height: 0.6rem;
  /* border: solid #ffffff; */
  border: solid #dadce0;
  border-width: 0 2px 2px 0;
  transition: background 250ms;
  transform: rotate(45deg);
}

/* .b-contain input[type="radio"] ~ .b-input::after {
  content: "";
  position: absolute;
  display: none;
  left: 4px;
  top: 4px;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 3rem;
  background: #ffffff;
  transition: background 250ms;
} */

.b-contain input[type='checkbox']:disabled~.b-input::after {
  border-color: #ffffff;
}

.b-contain input:checked~.b-input::after {
  display: block;
}

.b-contain:hover input[type='checkbox']:not([disabled])~.b-input,
.b-contain input[type='checkbox']:focus~.b-input {
  background: #e2e8f0;
  /* border-color: rgb(224, 69, 0); */
}

/* .b-contain:hover input[type="radio"]:not([disabled]) ~ .b-input,
.b-contain input[type="radio"]:focus ~ .b-input {
  background: #e2e8f0;
  border-color: #64748b;
} */

/* .b-contain input:focus ~ .b-input {
  box-shadow: 0 0 0 2px #60a5fa;
} */

.b-contain input[type='checkbox']:checked~.b-input {
  background: rgb(251, 140, 0);
  /* border-color: rgb(224, 69, 0); */
}

/* .b-contain input[type="radio"]:checked ~ .b-input {
  background: #3b82f6;
  border-color: #1d4ed8;
} */

.b-contain input[type='checkbox']:disabled~.b-input {
  opacity: 0.5;
  cursor: not-allowed;
}

/* .b-contain input[type="radio"]:disabled ~ .b-input::after {
  background: #ffffff;
} */

.b-contain:hover input[type='checkbox']:not([disabled]):checked~.b-input,
.b-contain input[type='checkbox']:checked:focus~.b-input {
  background: rgb(251, 140, 0);
  border-color: rgb(246, 124, 1);
}

/* .b-contain:hover input[type="radio"]:not([disabled]):checked ~ .b-input,
.b-contain input[type="radio"]:checked:focus ~ .b-input {
  background: #2563eb;
  border-color: #1e40af;
} */


.tabs {
  display: flex;
  border-bottom: 1px solid #ccc;
}

.tab {
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid #ccc;
  border-bottom: none;
  background-color: #f9f9f9;
  margin-right: 5px;
  transition: background-color 0.3s;
}

.tab:hover {
  background-color: #e9e9e9;
}

.tab.active {
  background-color: #fff;
  border-top: 2px solid #007bff;
  border-bottom: none;
}

.tab-content {
  padding: 20px;
  /* border: 1px solid #ccc; */
  border-top: none;
}

.tab-content>div {
  display: block;
}

.tab-content>div.ng-show {
  display: block;
}


/* sms service */
.smslist-container {
  display: flex;
  flex-direction: column;
  width: 400px;
}

.smslist-item {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 29px;
  padding: 10px;
  margin-bottom: 10px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.smslist-item:hover {
  background-color: #e0e0e0;
  transform: scale(1.05);
}

.smslist-item:active {
  background-color: #d0d0d0;
  transform: scale(1);
}

.selected-badge {
  background-color: rgba(241, 180, 76, 0.25);
}

.non-badge {
  background-color: white;
}

.adm-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.adm-greeting {
  color: #212B36;
  font-size: 16px;
  font-weight: 500;
}

.adm-subtext {
  color: #637381;
  font-size: 12px;
  font-weight: 300;
}

.adm-nav-icon {
  font-size: 16px !important;
  border: 1px solid #ECECEC;
  border-radius: 6px;
  padding: 7.5px 10px;
}

.nav-links .active {
  color: #FFBC38 !important;
}

.bx.bxs-chevron-down.arrow {
  margin-right: 8px;
}

/* SEARCH */
.search-container {
  display: flex;
  margin-right: 8px;
border:1px solid #E7E7E7;
  align-items: center;
  background: #F8FAFC; 
  padding: 9px 15px;
  border-radius: 8px;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
  width: 300px;
}

.search-container i {
  color: #b0b0b0;
  margin-right: 10px;
  
}

.search-container input {
  border: none;
  outline: none;
  background: none;
  font-weight: 300;
  color: #333;
  flex: 1;
}

.search-container input::placeholder {
  color: #b0b0b0;
}

.textarea-class{
  width: 100%;
  padding: 10px;
  border-top: none;
  border-bottom: none;
  border-left: none;
  border-image: initial;
  border-radius: 5px;
  background-color: rgb(244, 244, 244) !important;
  border-right: 8px solid transparent !important;
  height: 147px;
  resize: none;
}


/* Notification */


.adm-notification {
  overflow: hidden;
  border-radius: 0.5rem;
  width: 99%;
  max-width: 99%;
  margin: 10px;
  padding: 1rem;
  background: #ffffff;
  pointer-events: auto;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    position: fixed;
    top: 00px;
    right: 0;
    left: 0;
    margin: 8px;
}

.adm-notification-inner {
  display: flex;
  align-items: flex-start;
}

.adm-notification-icon {
  flex-shrink: 0;
}

.adm-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #34d399;
}

.adm-notification-text {
  padding-top: 0.125rem;
  margin-left: 0.75rem;
  flex: 1 1 0%;
  width: 0;
}

.adm-title {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  color: #111827;
}

.adm-subtitle {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #6b7280;
}

.adm-notification-action {
  display: flex;
  margin-left: 1rem;
  flex-shrink: 0;
}

.adm-button {
  display: inline-flex;
  border-radius: 0.375rem;
  color: #9ca3af;
  border: none;
  background-color: #ffffff;
  cursor: pointer;
}
.adm-button:hover {
  color: #6b7280;
}

.adm-x-icon {
  width: 1.25rem;
  height: 1.25rem;
}
