:root {
  --white: #ffffff;
  --black: #000000;
  --primary: #01B992;
  --light: #FCFCFD;
  --dark: #181E25;
  --blue-25: #F5FAFF;
  --blue-50: #EFF8FF;
  --blue-100: #D1E9FF;
  --blue-200: #B2DDFF;
  --blue-300: #84CAFF;
  --blue-500: #2E90FA;
  --blue-600: #1570EF;
  --blue-700: #175CD3;
  --blue-800: #1849A9;
  --blue-900: #194185;
  
  --gray-25: #FCFCFD;
  --gray-50: #F9FAFB;
  --gray-100: #F2F4F7;
  --gray-200: #EAECF0;
  --gray-300: #D0D5DD;
  --gray-400: #98A2B3;
  --gray-500: #667085;
  --gray-600: #475467;
  --gray-700: #344054;
  --gray-800: #1D2939;
  --gray-900: #101828;

  --success-50: #ECFDF3;
  --success-100: #D1FADF;
  --success-500: #12B76A;
  --success-700: #027A48;

  --danger-50: #FFF6ED;
  --danger-100: #FFEAD5;
  --danger-700: #C4320A;

  --error-50: #FEF3F2;
  --error-500: #F04438;
  --error-600: #D92D20;

  --warning-25: #FFFCF5;
  --warning-100: #FEF0C7;
  --warning-500: #F79009;

  --fs-10: 0.625rem;
  --fs-12: 0.75rem;
  --fs-14: 0.875rem;
  --fs-15: 0.938rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-22: 1.375rem;
  --fs-24: 1.5rem;
  --fs-26: 1.625rem;
  --fs-28: 1.75rem;
  --fs-30: 1.875rem;
  --fs-32: 2rem;
  --fs-36: 2.25rem;
  --fs-38: 2.375rem;
  --fs-40: 2.5rem;
  --fs-42: 2.625rem;
  --fs-46: 2.875rem;
  --fs-48: 3rem;
  --fs-52: 3.25rem;

  --fw-100: 100;
  --fw-200: 200;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;
}

body {
  font-family: "DM Sans", sans-serif;
  background-color: var(--light);
  overflow-x: hidden;
}

.gap-x-4{column-gap: 4px !important;}
.gap-x-6{column-gap: 6px !important;}
.gap-x-8{column-gap: 8px !important;}
.gap-x-10{column-gap: 10px !important;}
.gap-x-12{column-gap: 12px !important;}
.gap-x-14{column-gap: 14px !important;}
.gap-x-16{column-gap: 16px !important;}
.gap-x-20{column-gap: 20px !important;}
.gap-x-24{column-gap: 24px !important;}

/* Navbar Start */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 16px 0;
  background-color: var(--blue-900) !important;
  z-index: 9;
}

.navbar .navbar-brand {
  padding: 0;
  display: flex;
  align-items: center;
  column-gap: 16px;
}

.navbar .navbar-brand .logo {
  display: block;
  text-decoration: none;
}

.navbar .navbar-brand .logo .full {
  display: block;
  width: 200px;
}

.navbar .navbar-brand .logo .w {
  display: none;
}

.navbar .navbar-brand .app-name {
  position: relative;
  font-size: var(--fs-14);
  font-weight: var(--fw-400);
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0;
}

.navbar .navbar-brand .app-name::before {
  content: "|";
  position: absolute;
  left: -10px;
  top: -4px;
  font-size: var(--fs-20);
  font-weight: var(--fw-100);
  color: var(--white);
}

.navbar .mob-sidebar {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.navbar .mob-sidebar .sidebar-brand,
.navbar .sidebar-actions,
.navbar .sidebar-profile,
.navbar .mob-sidebar-backdrop {
  display: none;
}

.navbar .navbar-nav {
  column-gap: 4px;
  margin-right: 50px;
}

.navbar-nav .nav-item .nav-link {
  height: 40px;
  display: flex;
  align-items: center;
  font-size: var(--fs-16);
  font-weight: var(--fw-600);
  color: var(--white);
  line-height: 1;
  background-color: transparent;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s;
}

.navbar-nav .nav-item .nav-link.active {
  background-color: var(--blue-800);
}

.navbar .navbar-actions {
  display: flex;
  column-gap: 16px;
}

.navbar .btn-refer {
  height: 36px;
  display: flex;
  align-items: center;
  column-gap: 8px;
  justify-content: center;
  padding: 8px 14px;
  background-color: var(--white);
  font-size: var(--fs-15);
  font-weight: var(--fw-600);
  color: var(--blue-900);
  line-height: 1;
  text-decoration: none;
  border: 0;
  border-radius: 8px;
  outline: 0;
  box-shadow: 0px 0px 7px 0px rgba(17, 17, 17, 0.04), 0px 1px 8px 0px rgba(16, 24, 40, 0.04);
}

.navbar .btn-refer .icon {
  width: 20px;
}

.navbar .btn-notifications-lg {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: transparent;
  border: 0;
  border-radius: 6px;
  outline: 0;
  box-shadow: none;
  transition: all 0.2s;
}

.navbar .btn-notifications-lg:hover {
  background-color: var(--blue-800);
}

.navbar .btn-notifications-lg img {
  width: 24px;
}

.navbar .dropdown .dropdown-toggle {
  display: block;
  text-decoration: none;
}

.navbar .dropdown .dropdown-toggle::after {
  display: none;
}

.navbar .dropdown .dropdown-toggle .profile-img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.navbar .dropdown .dropdown-menu {
  min-width: 160px;
  background-color: var(--white);
  border: 1px solid #F9FAFB;
  border-radius: 8px;
  box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
}

.navbar .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  column-gap: 8px;
  color: var(--gray-900);
  font-size: var(--fs-16);
  font-weight: var(--fw-500);
  background: transparent;
  padding: 8px 16px;
  transition: all 0.2s;
}

.navbar .dropdown .dropdown-menu .dropdown-item:hover,
.navbar .dropdown .dropdown-menu .dropdown-item:active,
.navbar .dropdown .dropdown-menu .dropdown-item:focus {
  color: var(--white);
  background: var(--blue-900);
}

.navbar .dropdown .dropdown-menu .dropdown-item .icon {
  width: 20px;
  transition: all 0.2s;
}

.navbar .dropdown .dropdown-menu .dropdown-item:hover .icon,
.navbar .dropdown .dropdown-menu .dropdown-item:active .icon,
.navbar .dropdown .dropdown-menu .dropdown-item:focus .icon {
  filter: brightness(0) invert(1);
}

.navbar .dropdown .dropdown-menu.dropdown-menu-end[data-bs-popper] {
  top: calc(100% + 4px);
}

/* Navbar End */

.main {
  padding: calc(72px + 32px) 0 24px;
}

/* Global Right Drawer */
.offcanvas {
  background-image: url("../images/bg-drawer-vector.png");
  background-repeat: no-repeat;
  background-position: top left;
}

.offcanvas.offcanvas-end {
  width: 400px;
  top: 16px;
  bottom: 16px;
  right: 16px;
  background-color: var(--white);
  border-left: 1px solid var(--gray-100);
  border-radius: 12px;
  box-shadow: 0px 8px 8px -4px rgba(16, 24, 40, 0.03), 0px 20px 24px -4px rgba(16, 24, 40, 0.08);
  overflow: hidden;
}

.offcanvas .offcanvas-body::-webkit-scrollbar {
  width: 8px;
}

.offcanvas .offcanvas-body::-webkit-scrollbar-track {
  background-color: var(--white);
}

.offcanvas .offcanvas-body::-webkit-scrollbar-thumb {
  background-color: var(--gray-100);
  border-radius: 8px;
}

.offcanvas-backdrop {
  background: linear-gradient(180deg, rgba(12, 17, 29, 0.19) 0%, rgba(12, 17, 29, 0.40) 100%);
  backdrop-filter: blur(0.5px);
}

.offcanvas-backdrop.show {
  opacity: 1;
}

.offcanvas .btn-close {
  width: 36px;
  height: 36px;
  position: absolute;
  top: 12px;
  right: 16px;
  padding: 0;
  box-shadow: none;
  border: 0;
  outline: 0;
}

.offcanvas .header {
  display: flex;
  align-items: flex-start;
  column-gap: 8px;
  padding: 20px 24px;
}

.offcanvas .header .icon {
  width: 22px;
}

.offcanvas .header .title {
  font-size: var(--fs-20);
  font-weight: var(--fw-600);
  color: var(--gray-900);
  line-height: 1.1;
  margin-bottom: 0;
}

.offcanvas .header .desc {
  font-size: var(--fs-14);
  font-weight: var(--fw-400);
  color: var(--gray-600);
  line-height: 1.4;
  margin-bottom: 0;
  margin-top: 6px;
}

.offcanvas .offcanvas-footer{
  display: flex;
  column-gap: 12px;
  justify-content: flex-end;
  padding: 16px 24px;
  border-top: 1px solid var(--gray-100);
}

/* Global Right Drawer */

/* Notifications Drawer */
#notificationsDrawer .offcanvas-body {
  padding: 12px 24px 24px;
}
#notificationsDrawer .offcanvas-body .label-unread{
  margin-bottom: 16px;
}
#notificationsDrawer .notifications-list {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.notifications-list .single-noti {
  position: relative;
  display: flex;
  align-items: flex-start;
  column-gap: 12px;
}
.notifications-list .single-noti.unread::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 8px;
  width: 8px;
  background-color: var(--blue-600);
  border-radius: 50%;
}
.notifications-list .single-noti .icon-container {
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue-50);
  border-radius: 50%;
}

.notifications-list .single-noti .icon-container img {
  width: 24px;
}

.notifications-list .single-noti .flex {
  display: flex;
  align-items: center;
  column-gap: 8px;
}

.notifications-list .single-noti .title {
  font-size: var(--fs-14);
  font-weight: var(--fw-600);
  color: var(--gray-700);
  line-height: 1.5;
  margin-bottom: 0;
  white-space: nowrap;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notifications-list .single-noti .date {
  font-size: var(--fs-12);
  font-weight: var(--fw-400);
  color: var(--gray-600);
  white-space: nowrap;
  line-height: 1.5;
  margin-bottom: 0;
}

.notifications-list .single-noti .desc {
  font-size: var(--fs-14);
  font-weight: var(--fw-400);
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 0;
}

.notifications-list .single-noti .desc a {
  font-weight: var(--fw-500);
  color: var(--blue-600);
  text-decoration: none;
}

.notifications-list .line-break {
  height: 1px;
  width: 100%;
  background-color: var(--gray-100);
}

/* Notifications Drawer */

/* Global Buttons */
.portal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  font-size: var(--fs-14);
  font-weight: var(--fw-600);
  text-decoration: none;
  border: 1px solid;
  border-radius: 8px;
  outline: 0;
}
.portal-btn .icon {
  width: 20px;
}
.portal-btn.btn-blue {
  color: var(--white);
  background-color: var(--blue-600);
  border-color: transparent;
}
.portal-btn.btn-light-blue{
  color: var(--blue-700);
  background-color: var(--blue-50);
  border-color: var(--blue-50);
}
.portal-btn.btn-white{
  color: var(--gray-900);
  background-color: var(--white);
  border-color: var(--gray-300);
  box-shadow: 0px 0px 7px 0px rgba(17, 17, 17, 0.04), 0px 1px 8px 0px rgba(16, 24, 40, 0.04);
}
.portal-btn.btn-red{
  color: var(--white);
  background-color: var(--error-600);
  border-color: var(--error-600);
  box-shadow: 0px 0px 7px 0px rgba(17, 17, 17, 0.04), 0px 1px 8px 0px rgba(16, 24, 40, 0.04);
}
.portal-btn:disabled,
.portal-btn:disabled,
.portal-btn:disabled{
  pointer-events: none;
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}
.portal-btn.btn-blue:disabled{
  background-color: var(--blue-200);
  border-color: var(--blue-200);
}
.portal-btn.btn-light-blue:disabled{
  color: var(--blue-300);
  background-color: var(--blue-25);
  border-color: var(--blue-25);
}
.portal-btn.btn-white:disabled{
  color: var(--gray-300);
  border-color: var(--gray-200);
}
.portal-btn.btn-lg{
  height: 44px;
  padding: 10px 16px;
}
.portal-btn.btn-md {
  height: 40px;
  padding: 10px 14px;
}
.portal-btn.btn-sm {
  height: 36px;
  padding: 8px 14px;
}
/* Global Buttons */

/* Global Searchbar */
.portal-searchbar{
  width: auto !important;
  background-image: url("../images/icons/icon-search.svg");
  background-repeat: no-repeat;
  background-position: left 10px center;
  background-size: 22px;
  padding-left: 40px !important;
}
/* Global Searchbar */

/* Global Label & Fields */
.portal-label{
  display: block;
  font-size: var(--fs-14);
  line-height: 1.4;
  margin-bottom: 4px;
}

.portal-label.light {
  font-weight: var(--fw-400);
  color: var(--gray-600);
}

.portal-label.dark {
  font-weight: var(--fw-500);
  color: var(--gray-700);
}

.portal-field {
  display: block;
  width: 100%;
  font-size: var(--fs-16);
  font-weight: var(--fw-400);
  color: var(--gray-900);
  background-color: var(--white);
  border: 1px solid var(--gray-300);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  border-radius: 8px;
  outline: 0;
}

.portal-field.is-invalid {
  border-color: red;
}

.portal-field.field-sm {
  height: 40px;
  padding: 8px 14px;
}

.portal-field.field-lg {
  height: 44px;
  padding: 10px 14px;
}

textarea.portal-field {
  height: auto;
  padding: 10px 14px;
  resize: none;
}

select.portal-field {
  padding-right: 42px !important;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url("../images/icons/icon-dd.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 22px;
}

.portal-field::-webkit-input-placeholder {
  color: var(--gray-400);
}

.portal-field::-moz-placeholder {
  color: var(--gray-400);
}

.portal-field:-ms-input-placeholder {
  color: var(--gray-400);
}

.portal-field:-moz-placeholder {
  color: var(--gray-400);
}
.portal-field:disabled {
  color: var(--gray-300);
  background-color: var(--gray-50);
  pointer-events: none;
  cursor: default;
}
/* Global Label & Fields */

/* Global Radio */
.portal-radio {
  display: flex;
  align-items: center;
  column-gap: 12px;
  min-height: auto;
  padding-left: 0;
  margin-bottom: 0;
}
.portal-radio .form-check-input{
  width: 20px;
  height: 20px;
  margin-top: 0;
  float: none;
  margin-left: 0;
  border-color: var(--gray-300);
  outline: 0;
  box-shadow: none;
}
.portal-radio .form-check-input:checked {
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%231570EF'/%3e%3c/svg%3e");
  border-color: var(--blue-600);
}
.portal-radio .form-check-input:disabled {
  background-color: var(--gray-100);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23F2F4F7'/%3e%3c/svg%3e");
  border-color: var(--gray-200);
  opacity: 1;
}
.portal-radio .form-check-label {
  font-size: var(--fs-16);
  font-weight: var(--fw-500);
  color: var(--gray-800);
  line-height: 1.25;
  margin-bottom: 0;
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}
.portal-radio .form-check-input:disabled + .form-check-label {
  color: var(--gray-400);
  opacity: 1;
}
/* Global Radio */

/* Global Checkbox */
.portal-checkbox {
  display: flex;
  align-items: center;
  column-gap: 12px;
  min-height: auto;
  padding-left: 0;
  margin-bottom: 0;
}
.portal-checkbox .form-check-input{
  width: 20px;
  height: 20px;
  margin-top: 0;
  float: none;
  margin-left: 0;
  border-color: var(--gray-300);
  outline: 0;
  box-shadow: none;
}
.portal-checkbox .form-check-input:checked {
  background-color: var(--blue-500);
  border-color: var(--blue-500);
}
.portal-checkbox .form-check-input:disabled {
  background-color: var(--gray-300);
  border-color: var(--gray-300);
  opacity: 1;
}
.portal-checkbox .form-check-label {
  font-size: var(--fs-16);
  font-weight: var(--fw-500);
  color: var(--gray-800);
  line-height: 1.25;
  margin-bottom: 0;
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}
.portal-checkbox .form-check-input:disabled + .form-check-label {
  color: var(--gray-400);
  opacity: 1;
}
/* Global Checkbox */

/* Global Tooltip */
.btn-tooltip{
  display: flex;
  align-items: center;
	padding: 0;
	background-color: transparent;
	border: 0;
	box-shadow: none;
	outline: 0;
}
.btn-tooltip img{
	width: 16px;
}
.tooltip{
  padding: 16px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
}
.tooltip.show {
  opacity: 1;
}
.tooltip[data-popper-placement^=top] .tooltip-arrow::before {
  border-top-color: var(--white);
}
.tooltip[data-popper-placement^=bottom] .tooltip-arrow::before {
  border-bottom-color: var(--white);
}
.tooltip[data-popper-placement^=left] .tooltip-arrow::before {
  border-left-color: var(--white);
}
.tooltip[data-popper-placement^=right] .tooltip-arrow::before {
  border-right-color: var(--white);
}
.tooltip .tooltip-inner {
  max-width: 320px;
  background-color: var(--white);
  padding: 0;
  text-align: left;
  color: var(--gray-600);
  border-radius: 0;
}
.tooltip .tooltip-inner .title{
  font-size: var(--fs-12);
  font-weight: var(--fw-600);
  color: var(--gray-700);
  line-height: 1.3;
  margin-bottom: 6px;
}
.tooltip .tooltip-inner .desc{
  font-size: var(--fs-12);
  font-weight: var(--fw-400);
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 0;
}
.tooltip .tooltip-inner .desc span{
  color: var(--blue-700);
}
/* Global Tooltip */

/* Global Select2 */
.select2-container {
  width: 100% !important;
}
.select2-container .select2-selection{
  align-items: center;
  justify-content: flex-start;
  background-image: url("../images/icons/icon-dd.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.select2-container.select2-container--open .select2-selection{
  border-color: var(--blue-300) !important;
}
.select2-container .select2-selection--multiple .select2-selection__rendered{
  display: flex !important;
  column-gap: 6px;
  row-gap: 8px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.select2-container .select2-selection--multiple .select2-selection__rendered li{
  align-items: center;
  height: 24px;
  padding-left: 8px;
  padding-right: 24px;
}
.select2-container .select2-selection--multiple .select2-selection__rendered li .select2-selection__choice__display{
  font-size: var(--fs-14);
  font-weight: var(--fw-500);
  color: var(--gray-700);
  line-height: 1;
}
.select2-container .select2-selection--multiple .select2-selection__rendered li button{
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-right: 0;
  color: var(--gray-500);
  font-size: var(--fs-18);
  padding: 0;
  left: auto;
  right: 0;
  bottom: 0;
}
.select2-container--default .select2-search{
  flex: 1;
}
.select2-container--default .select2-results__option{
  padding-left: 44px;
  font-size: var(--fs-14);
  font-weight: var(--fw-500);
  color: var(--gray-900);
  background-image: url("../images/icons/icon-select2-unchecked.svg");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: left 16px center;
}
.select2-container--default .select2-results__option--selected{
  background-image: url("../images/icons/icon-select2-checked.svg");
}
.select2-results__message{
  padding-left: 16px !important;
  background-image: none !important;
}
.select2-dropdown {
  box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
}
/* Global Select2 */

.page-header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
}
.page-header .page-title {
  font-size: var(--fs-30);
  font-weight: var(--fw-600);
  color: var(--blue-800);
  line-height: 1.2;
  margin-bottom: 0;
}

.item-count-header{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
  margin-bottom: 24px;
}
.item-count-header .title-flex{
	display: flex;
	align-items: center;
	column-gap: 8px;
}
.item-count-header .title-flex .title{
	font-size: var(--fs-18);
  font-weight: var(--fw-600);
  color: var(--gray-900);
	line-height: 1.5;
  margin-bottom: 0;
}
.item-count-header .title-flex .count{
	height: 24px;
	display: flex;
	align-items: center;
	padding: 0 8px;
	background-color: var(--white);
	font-size: var(--fs-12);
  font-weight: var(--fw-500);
  color: var(--blue-700);
	line-height: 1;
	border: 1px solid var(--blue-300);
	border-radius: 4px;
	box-shadow: 0px 0px 7px 0px rgba(17, 17, 17, 0.04), 0px 1px 8px 0px rgba(16, 24, 40, 0.04);
}
.item-count-header .desc{
	font-size: var(--fs-14);
  font-weight: var(--fw-400);
  color: var(--gray-600);
  margin-bottom: 0;
	margin-top: 4px;
}

/* Filter Flex */
.filter-flex{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
  margin-bottom: 24px;
}
.filter-flex .left-side,
.filter-flex .right-side{
	display: flex;
	column-gap: 12px;
}

.global-card {
  background-color: var(--white);
  padding: 20px;
  border: 1px solid var(--gray-100);
  box-shadow: 0px 0px 7px 0px rgba(17, 17, 17, 0.04), 0px 1px 8px 0px rgba(16, 24, 40, 0.04);
  border-radius: 8px;
}

/* Global DateRangePicker */
.custom-date-range-picker {
  height: 40px;
  min-width: 240px;
  font-family: "DM Sans", sans-serif;
  font-size: var(--fs-14);
  font-weight: var(--fw-600);
  color: var(--gray-700);
  padding: 10px 14px 10px 38px;
  background-color: var(--white);
  background-image: url("../images/icons/icon-calendar-dark.svg");
  background-repeat: no-repeat;
  background-position: left 10px center;
  background-size: 20px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  outline: 0;
  box-shadow: 0px 0px 7px 0px rgba(17, 17, 17, 0.04), 0px 1px 8px 0px rgba(16, 24, 40, 0.04);
  cursor: pointer;
}
.custom-date-range-picker::-webkit-input-placeholder {
  color: var(--gray-400);
  font-weight: var(--fw-500);
}
.custom-date-range-picker::-moz-placeholder {
  color: var(--gray-400);
  font-weight: var(--fw-500);
}
.custom-date-range-picker:-ms-input-placeholder {
  color: var(--gray-400);
  font-weight: var(--fw-500);
}
.custom-date-range-picker:-moz-placeholder {
  color: var(--gray-400);
  font-weight: var(--fw-500);
}
/* Global DateRangePicker */

/* Portal Steps */
.portal-steps {
  column-gap: 16px;
  flex-wrap: nowrap;
  margin-bottom: 32px;
}

.portal-steps .nav-item {
  width: 100%;
}

.portal-steps .nav-item .nav-link {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 2px;
  padding: 12px 0 0 0;
  font-size: initial;
  font-weight: normal;
  color: initial;
  border-top: 3px solid var(--gray-200);
}

.portal-steps .nav-item .nav-link.active {
  border-top-color: var(--blue-600);
}

.portal-steps .nav-item .nav-link.active-error {
  border-top-color: var(--error-600);
}

.portal-steps .nav-item .nav-link.completed {
  border-top-color: var(--blue-600);
  pointer-events: none;
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.portal-steps .nav-item .nav-link .title {
  font-size: var(--fs-16);
  font-weight: var(--fw-600);
  color: var(--gray-700);
  line-height: 1.3;
  text-align: left;
  margin-bottom: 0;
}

.portal-steps .nav-item .nav-link.active .title,
.portal-steps .nav-item .nav-link.completed .title {
  color: var(--blue-700);
}

.portal-steps .nav-item .nav-link .desc {
  font-size: var(--fs-16);
  font-weight: var(--fw-400);
  color: var(--gray-600);
  line-height: 1.3;
  text-align: left;
  margin-bottom: 0;
}

.portal-steps .nav-item .nav-link.active .desc,
.portal-steps .nav-item .nav-link.completed .desc {
  color: var(--blue-600);
}
.portal-step-footer{
  display: flex;
  column-gap: 12px;
  justify-content: flex-end;
  margin-top: 20px;
}
/* Portal Steps */

/* Portal Tabs */
.portal-tabs {
  column-gap: 40px;
  flex-wrap: nowrap;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 32px;
}
.portal-tabs .nav-item .nav-link {
  position: relative;
  padding: 0 0 16px 0;
  font-size: var(--fs-16);
  font-weight: var(--fw-600);
  color: var(--gray-500);
  line-height: 1.3;
}
.portal-tabs .nav-item .nav-link.active {
  color: var(--blue-700);
}
.portal-tabs .nav-item .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: var(--blue-700);
}
.portal-tabs .nav-item .nav-link.active .desc,
.portal-tabs .nav-item .nav-link.completed .desc {
  color: var(--blue-600);
}
.portal-tabs-dd{
  display: none;
}
/* Portal Tabs */

/* Global Modal */
.modal .modal-content{
  background-image: url("../images/bg-modal.svg");
  background-repeat: no-repeat;
  background-position: left top;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
}
.modal .modal-body {
  position: relative;
  padding: 24px;
}
.modal .modal-body .btn-close{
  position: absolute;
  right: 16px;
  top: 16px;
  width: 36px;
  height: 36px;
  background-image: none;
  padding: 0;
  box-shadow: none;
  outline: 0;
  opacity: 1;
}
.modal .modal-body .btn-close img{
  width: 20px;
}
.modal .header-type1{
  display: flex;
  column-gap: 8px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.modal .header-type1 .icon{
  min-width: 24px;
  width: 24px;
}
.modal .header-type2{
  display: flex;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.modal .header-type2 .icon{
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.modal .header-type2 .icon.danger{
  background-color: #FEE4E2;
}
.modal .header-type2 .icon.warning{
  background-color: #FFFAEB;
}
.modal .header-type2 .icon.info{
  background-color: var(--blue-50);
}
.modal .header-type2 .icon img{
  width: 24px;
}
.modal .header-title{
  font-size: var(--fs-18);
  font-weight: var(--fw-600);
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 6px;
}
.modal .header-text-dark{
  font-size: var(--fs-14);
  font-weight: var(--fw-500);
  color: var(--gray-700);
  line-height: 1.4;
  margin-bottom: 0;
}
.modal .header-text-light{
  font-size: var(--fs-14);
  font-weight: var(--fw-400);
  color: var(--gray-600);
  line-height: 1.4;
  margin-bottom: 0;
}
.modal .modal-footer{
  display: flex;
  column-gap: 12px;
  padding: 16px 20px;
  border-top-color: var(--gray-100);
}
.modal .modal-footer .portal-btn{
  flex: 1;
  margin: 0;
}
.modal-backdrop{
  background-color: rgba(12, 17, 29, 0.70);
  backdrop-filter: blur(0.5px);
  opacity: 1 !important;
}
/* Add Tag Modal */

/* UTILS */
.max-content {
  max-width: max-content;
}
.fit-content {
  max-width: fit-content;
}
/* UTILS */

/* Global Portal Table */
.dataTables_wrapper{
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  overflow: hidden;
}
.portal-table{
  width: 100% !important;
  margin-bottom: 0;
}
.portal-table thead tr{
  background-color: var(--gray-50);
}
.portal-table thead tr th{
  font-size: var(--fs-14);
  font-weight: var(--fw-600);
  color: var(--gray-600);
  line-height: 1.5;
  white-space: nowrap;
  padding: 12px 12px;
}
.portal-table thead tr th.sorting::after,
.portal-table thead tr th.sorting_asc::after{
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background-image: url("../images/icons/icon-sort-asc.png");
  background-size: 100% 100%;
  position: relative;
  top: 3px;
  margin-left: 4px;
}
.portal-table thead tr th.sorting_desc::after{
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background-image: url("../images/icons/icon-sort-dsc.png");
  background-size: 100% 100%;
  position: relative;
  top: 3px;
  margin-left: 4px;
}
.portal-table thead tr th:first-child,
.portal-table tbody tr td:first-child{
  padding-left: 20px;
}
.portal-table thead tr th:last-child,
.portal-table tbody tr td:last-child{
  padding-right: 20px;
}
.portal-table tbody tr{
  border-bottom: 1px solid var(--gray-200);
}
.portal-table tbody tr td{
  font-size: var(--fs-16);
  font-weight: var(--fw-400);
  color: var(--gray-900);
  line-height: 1.4;
  white-space: nowrap;
  padding: 16px 12px;
}
.portal-table tbody tr td .actions-dropdown{
  display: inline-block;
}
.portal-table tbody tr td .actions-dropdown .dropdown-toggle{
  display: block;
  padding: 0;
  background-color: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
}
.portal-table tbody tr td .actions-dropdown .dropdown-toggle::after{
  display: none;
}
.portal-table tbody tr td .actions-dropdown .dropdown-toggle .icon{
  width: 24px;
  height: 24px;
}
.portal-table tbody tr td .actions-dropdown .dropdown-menu{
  min-width: 160px;
  padding: 8px 0;
  background-color: var(--white);
  border: 1px solid var(--gray-50);
  border-radius: 8px;
  box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
  overflow: hidden;
}
.portal-table tbody tr td .actions-dropdown .dropdown-menu li a{
  display: flex;
  align-items: center;
  column-gap: 8px;
  padding: 10px 16px;
  font-size: var(--fs-16);
  font-weight: var(--fw-500);
  color: var(--gray-900);
  line-height: 1;
  background-color: var(--white);
  transition: all 0.2s;
}
.portal-table tbody tr td .actions-dropdown .dropdown-menu li a .icon{
  width: 20px;
  transition: all 0.2s;
}
.portal-table tbody tr td .actions-dropdown .dropdown-menu li a:active,
.portal-table tbody tr td .actions-dropdown .dropdown-menu li a:focus,
.portal-table tbody tr td .actions-dropdown .dropdown-menu li a:hover{
  color: var(--white);
  background-color: var(--blue-700);
}
.portal-table tbody tr td .actions-dropdown .dropdown-menu li a:active .icon,
.portal-table tbody tr td .actions-dropdown .dropdown-menu li a:focus .icon,
.portal-table tbody tr td .actions-dropdown .dropdown-menu li a:hover .icon{
  filter: invert(1) brightness(10);
}
.portal-table .user-info{
	display: flex;
	align-items: center;
	column-gap: 10px;
}
.portal-table .user-info .img-container{
	min-width: 40px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
}
.portal-table .user-info .img-container img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.portal-table .user-info .name{
	font-size: var(--fs-16);
	font-weight: var(--fw-600);
	line-height: 1.2;
	margin-bottom: 0;
}
.portal-table .user-info .email{
	font-size: var(--fs-14);
	color: var(--gray-400);
  line-height: 1.2;
	margin-top: 2px;
  margin-bottom: 0;
}
.portal-table .created-at .date{
	font-size: var(--fs-16);
	font-weight: var(--fw-400);
  line-height: 1.2;
  margin-bottom: 0;
}
.portal-table .created-at .time{
	font-size: var(--fs-16);
  color: var(--gray-400);
  line-height: 1.2;
  margin-top: 2px;
  margin-bottom: 0;
}

/* Table Pagination Start */
.dataTables_paginate{
  margin-top: 20px;
}
.dataTables_paginate .pagination{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 2px;
  margin-bottom: 0;
}
.dataTables_paginate .pagination li a{
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  background-color: var(--white);
  padding: 0;
  font-size: var(--fs-14);
  font-weight: var(--fw-500);
  color: var(--gray-500);
  line-height: 1;
  text-decoration: none;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}
.dataTables_paginate .pagination li.active a{
  background-color: var(--blue-50);
  color: var(--blue-700);
}
.dataTables_paginate .pagination li a img{
  width: 20px;
}
.dataTables_paginate .pagination li:first-child{
  margin-right: auto;
}
.dataTables_paginate .pagination li:last-child{
  margin-left: auto;
}
.dataTables_paginate .pagination li:first-child a,
.dataTables_paginate .pagination li:last-child a{
  width: auto;
  font-weight: var(--fw-600);
  color: var(--gray-600);
}
.dataTables_paginate .pagination li:last-child a{
  flex-direction: row-reverse;
}
/* Global Portal Table */

/* Table Badges */
.rounded-badge{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: max-content;
  padding: 0 10px;
  font-size: var(--fs-14);
  font-weight: var(--fw-500);
  line-height: 1;
  border: 1px solid;
  border-radius: 16px;
}
.rounded-badge.default{
  color: var(--gray-700);
  background-color: var(--gray-50);
  border-color: var(--gray-100);
}
.rounded-badge.success{
  color: var(--success-700);
  background-color: var(--success-50);
  border-color: var(--success-100);
}
.rounded-badge.danger{
  color: var(--danger-700);
  background-color: var(--danger-50);
  border-color: var(--danger-100);
}
.square-badge{
  position: relative;
  display: flex;
  align-items: center;
  height: 24px;
  width: max-content;
  padding: 0 10px 0 22px;
  font-size: var(--fs-14);
  font-weight: var(--fw-500);
  color: var(--gray-700);
  line-height: 1;
  border: 1px solid var(--gray-300);
  border-radius: 3px;
}
.square-badge::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  height: 8px;
  width: 8px;
  border-radius: 50%;
}
.square-badge.success::before{
  background-color: var(--success-500);
}
.square-badge.warning::before{
  background-color: var(--warning-500);
}
.square-badge.danger::before{
  background-color: var(--error-500);
}
/* Table Badges */

/* No Data Available */
.no-data{
  position: relative;
  width: 370px;
  margin: 0 auto 20px;
}
.no-data .vector{
  width: 100%;
}
.no-data .content{
  margin-top: -115px;
  padding: 0 15px;
}
.no-data .content .title{
  font-size: var(--fs-16);
  font-weight: var(--fw-600);
  color: var(--gray-900);
  line-height: 1.3;
  text-align: center;
  margin-bottom: 6px;
}
.no-data .content .desc{
  font-size: var(--fs-14);
  font-weight: var(--fw-400);
  color: var(--gray-500);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0;
}
.no-data .content .list{
  list-style-type: disc;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 8px;
}
.no-data .content .list li{
  font-size: var(--fs-14);
  font-weight: var(--fw-400);
  color: var(--gray-500);
  line-height: 1.4;
}
.no-data .content .action-flex{
  display: flex;
  column-gap: 12px;
  justify-content: center;
  margin-top: 20px;
}
.no-data .content .action-flex .portal-btn{
  white-space: nowrap;
}
/* No Data Available */

/* File Uploader & Uploaded File */
.file-upload{
	position: relative;
	width: 100%;
	min-height: 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 26px 14px;
	background-color: var(--white);
	border: 1px solid var(--blue-600);
	border-radius: 8px;
	box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
	cursor: pointer;
	overflow: hidden;
	margin-top: 6px;
}
.file-upload .dz-message{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.file-upload .bg-vector{
	width: 320px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.file-upload .icon{
  position: relative;
	display: block;
	width: 40px;
	margin-bottom: 12px;
	z-index: 1;
}
.file-upload .title{
  position: relative;
	font-size: var(--fs-14);
  font-weight: var(--fw-400);
	color: var(--gray-900);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 4px;
	z-index: 1;
}
.file-upload .title span{
	font-weight: var(--fw-600);
	color: var(--blue-600);
}
.file-upload .info{
  position: relative;
	font-size: var(--fs-12);
  font-weight: var(--fw-400);
	color: var(--gray-500);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0;
	z-index: 1;
}

.file-upload.dz-started{
  min-height: auto;
  padding: 16px 16px;
	background-color: var(--gray-50);
	border-color: var(--gray-100);
  box-shadow: none;
}
.file-upload.dz-started .dz-message{
  display: none;
}
.file-upload.dz-started .dz-preview{
  width: 100%;
  display: flex;
  align-items: center;
  column-gap: 16px;
  justify-content: flex-start;
}
.file-upload.dz-started .dz-preview .dz-image{
  border-radius: 6px;
  overflow: hidden;
}
.file-upload.dz-started .dz-preview .dz-image img{
  display: block;
  width: auto;
  max-height: 44px;
}
.file-upload.dz-started .dz-preview .dz-details{
  display: inline-flex;
  flex-direction: column-reverse;
}
.file-upload.dz-started .dz-preview .dz-details .dz-filename{
  font-size: var(--fs-14);
  font-weight: var(--fw-500);
  color: var(--gray-700);
  line-height: 1.5;
  margin-bottom: 0;
}
.file-upload.dz-started .dz-preview .dz-details .dz-size{
  font-size: var(--fs-14);
  font-weight: var(--fw-400);
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 0;
}
.file-upload.dz-started .dz-preview .dz-success-mark,
.file-upload.dz-started .dz-preview .dz-error-mark{
  display: none;
}
.file-upload.dz-started .dz-preview .dz-remove{
  margin-left: auto;
  font-size: var(--fs-14);
  font-weight: var(--fw-500);
  color: var(--gray-700);
  line-height: 1;
  text-decoration: none;
}

.uploaded-file{
	display: flex;
	align-items: center;
	column-gap: 16px;
	justify-content: flex-start;
	padding: 16px;
	background-color: var(--gray-50);
	border: 1px solid var(--gray-100);
	border-radius: 8px;
	margin-top: 10px;
}
.uploaded-file .file-icon{
	width: auto;
  max-height: 44px;
}
.uploaded-file .name{
	font-size: var(--fs-14);
  font-weight: var(--fw-500);
	color: var(--gray-700);
  line-height: 1.5;
  white-space: nowrap;
  margin-bottom: 0;
}
.uploaded-file .size{
	font-size: var(--fs-14);
  font-weight: var(--fw-400);
	color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 0;
}
.uploaded-file .btn-delete-file{
	height: 32px;
	width: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	background-color: transparent;
	border: 0;
	outline: 0;
	box-shadow: none;
	margin-left: auto;
}
.uploaded-file .btn-delete-file img{
	width: 22px;
}
/* File Uploader & Uploaded File */

/* Field Info */
.field-info{
  font-size: var(--fs-14);
  font-weight: var(--fw-400);
  color: var(--gray-600);
  line-height: 1.3;
  margin-bottom: 0;
  margin-top: 6px;
}
.field-info a{
	display: inline-block;
  text-decoration: none;
}
/* Field Info */

/* Field Text Limit */
.field-text-limit{
  font-size: var(--fs-14);
  font-weight: var(--fw-400);
	color: var(--gray-600);
  line-height: 1.3;
	text-align: right;
  margin-bottom: 0;
	margin-top: 6px;
}
/* Field Text Limit */

/* Info Box */
.info-box{
  display: flex;
	align-items: flex-start;
	column-gap: 12px;
	padding: 16px;
	border-radius: 8px;
}
.info-box.default{
	border: 1px solid var(--gray-100);
	background: var(--gray-50);
}
.info-box.warning{
	border: 1px solid #FEF0C7;
	background: #FFFAEB;
}
.info-box .icon{
  width: 20px;
	margin-top: 2px;
}
.info-box .text{
  font-size: var(--fs-14);
  font-weight: var(--fw-400);
	color: var(--gray-700);
  line-height: 1.5;
  margin-bottom: 0;
}
.info-box .list{
  display: flex;
	flex-direction: column;
	row-gap: 2px;
	list-style-type: disc;
	padding-left: 20px;
	margin-bottom: 0;
}
.info-box .list li{
  font-size: var(--fs-14);
  font-weight: var(--fw-400);
	color: var(--gray-700);
  line-height: 1.4;
  margin-bottom: 0;
}
/* Info Box */

/**************************
***************************
**** Responsive Design ****
***************************
**************************/

@media screen and (max-width: 1399.98px) and (min-width: 1200px) {
  .container {
    max-width: 1180px !important;
  }

  /* Navbar Start */
  .navbar .navbar-brand .logo .full {
    width: 180px;
  }

  .navbar .navbar-nav {
    margin-right: 35px;
  }

  .navbar-nav .nav-item .nav-link {
    height: 36px;
    font-size: var(--fs-14);
    padding: 6px 12px;
  }

  .navbar .btn-refer {
    padding: 6px 12px;
    font-size: var(--fs-14);
    border-radius: 6px;
  }

  .navbar .btn-refer .icon {
    width: 18px;
  }

  .navbar .btn-notifications-lg {
    height: 36px;
    width: 36px;
    border-radius: 4px;
  }

  .navbar .btn-notifications-lg img {
    width: 20px;
  }

  .navbar .dropdown .dropdown-toggle .profile-img {
    height: 36px;
    width: 36px;
  }

  .navbar .dropdown .dropdown-menu {
    min-width: 160px;
  }

  .navbar .dropdown .dropdown-menu .dropdown-item {
    font-size: var(--fs-15);
    padding: 8px 14px;
  }

  .navbar .dropdown .dropdown-menu .dropdown-item .icon {
    width: 18px;
  }

  /* Navbar End */

  .main {
    padding: calc(68px + 24px) 0 24px;
  }

  /* Right Drawer */
  .offcanvas {
    background-size: 110px;
  }

  .offcanvas.offcanvas-end {
    width: 360px;
  }

  .offcanvas .btn-close {
    width: 32px;
    height: 32px;
    top: 8px;
    right: 12px;
    background-size: 12px;
  }

  .offcanvas .header {
    padding: 16px 16px;
  }

  .offcanvas .header .icon {
    width: 20px;
  }

  .offcanvas .header .title {
    font-size: var(--fs-18);
  }

  .offcanvas .offcanvas-footer{
    padding: 16px 20px;
  }

  /* Right Drawer */

  /* Notifications Drawer */
  #notificationsDrawer .offcanvas-body {
    padding: 12px 16px 20px;
  }

  #notificationsDrawer .offcanvas-body .label-unread{
    margin-bottom: 14px;
  }

  #notificationsDrawer .notifications-list {
    row-gap: 20px;
  }

  .notifications-list .single-noti {
    column-gap: 10px;
  }

  .notifications-list .single-noti .icon-container {
    width: 36px;
    min-width: 36px;
    height: 36px;
  }

  .notifications-list .single-noti .icon-container img {
    width: 20px;
  }

  .notifications-list .single-noti .title {
    max-width: 210px;
  }
  /* Notifications Drawer */

  /* Global Buttons */
  .portal-btn .icon {
    width: 16px;
  }
  .portal-btn.btn-lg{
    height: 40px;
    padding: 10px 12px;
  }
  .portal-btn.btn-md {
    padding: 10px 12px;
  }
  .portal-btn.btn-sm {
    padding: 8px 12px;
  }
  /* Global Buttons */

  /* Global Searchbar */
  .portal-searchbar{
    background-size: 20px;
    padding-left: 38px !important;
  }
  /* Global Searchbar */

  /* Global Label & Fields */
  .portal-field {
    font-size: var(--fs-15);
  }
  .portal-field.field-lg {
    height: 42px;
    padding: 8px 14px;
  }
  textarea.portal-field {
    padding: 8px 14px;
  }
  select.portal-field {
    padding-right: 32px !important;
    background-position: right 8px center;
    background-size: 20px;
  }
  /* Global Label & Fields */

  /* Global Radio */
  .portal-radio {
    column-gap: 10px;
  }
  .portal-radio .form-check-input{
    width: 18px;
    height: 18px;
  }
  .portal-radio .form-check-label {
    font-size: var(--fs-14);
  }
  /* Global Radio */

  /* Global Tooltip */
  .tooltip{
    padding: 12px;
  }
  .tooltip .tooltip-inner {
    max-width: 260px;
  }
  /* Global Tooltip */

  .page-header {
    margin-bottom: 28px;
  }
  .page-header .page-title {
    font-size: var(--fs-28);
  }

  /* Portal Steps */
  .portal-steps {
    margin-bottom: 28px;
  }
  .portal-steps .nav-item .nav-link .title {
    font-size: var(--fs-14);
  }
  .portal-steps .nav-item .nav-link .desc {
    font-size: var(--fs-14);
  }
  /* Portal Steps */

  /* Portal Tabs */
  .portal-tabs {
    column-gap: 36px;
    margin-bottom: 28px;
  }
  .portal-tabs .nav-item .nav-link {
    font-size: var(--fs-14);
  }
  /* Portal Tabs */

  /* Global Modal */
  .modal .modal-content{
    background-size: 185px;
  }
  .modal .modal-body {
    padding: 20px;
  }
  .modal .modal-body .btn-close{
    right: 12px;
    top: 12px;
    width: 32px;
    height: 32px;
  }
  .modal .header-type1{
    margin-bottom: 20px;
  }
  .modal .header-type1 .icon{
    min-width: 22px;
    width: 22px;
  }
  .modal .header-type2 .icon{
    width: 40px;
    height: 40px;
  }
  .modal .header-type2 .icon img{
    width: 20px;
  }
  .modal .modal-footer{
    padding: 16px 16px;
  }
  /* Add Tag Modal */

  /* Global Portal Table */
  .portal-table thead tr th{
    font-size: var(--fs-12);
    padding: 12px 12px;
  }
  .portal-table thead tr th.sorting::after,
  .portal-table thead tr th.sorting_asc::after{
    width: 14px;
    height: 14px;
  }
  .portal-table thead tr th.sorting_desc::after{
    width: 14px;
    height: 14px;
  }
  .portal-table tbody tr td{
    font-size: var(--fs-14);
    padding: 14px 12px;
  }
  .portal-table tbody tr td .actions-dropdown .dropdown-menu{
    min-width: 140px;
    padding: 4px 0;
  }
  .portal-table tbody tr td .actions-dropdown .dropdown-menu li a{
    padding: 10px 12px;
    font-size: var(--fs-14);
  }
  .portal-table tbody tr td .actions-dropdown .dropdown-menu li a .icon{
    width: 16px;
  }

  /* Table Pagination Start */
  .dataTables_paginate .pagination li a{
    height: 36px;
    width: 36px;
    column-gap: 6px;
    font-size: var(--fs-12);
  }
  .dataTables_paginate .pagination li a img{
    width: 16px;
  }
  /* Global Portal Table */

  /* No Data Available */
  .no-data{
    width: 340px;
    margin: 0 auto 16px;
  }
  .no-data .content{
    padding: 0 12px;
  }
  .no-data .content .action-flex{
    margin-top: 16px;
  }
  /* No Data Available */

  /* File Uploader & Uploaded File */
  .file-upload{
    min-height: 130px;
    padding: 22px 14px;
  }
  .file-upload .bg-vector{
    width: 300px;
  }

  .file-upload.dz-started{
    padding: 14px 14px;
  }
  .file-upload.dz-started .dz-preview{
    column-gap: 12px;
  }
  
  .uploaded-file{
    column-gap: 12px;
    padding: 14px;
  }
  .uploaded-file .btn-delete-file{
    height: 32px;
    width: 32px;
  }
  .uploaded-file .btn-delete-file img{
    width: 20px;
  }
  /* File Uploader & Uploaded File */

  .field-info{
		font-size: var(--fs-12);
	}

  .field-text-limit{
    font-size: var(--fs-12);
  }

  /* Info Box */
  .info-box{
		column-gap: 10px;
		padding: 12px;
	}
	.info-box .icon{
		width: 18px;
	}
	.info-box .list{
		padding-left: 16px;
	}
  /* Info Box */
}

@media screen and (max-width: 1199.98px) and (min-width: 992px) {

  /* Navbar Start */
  .navbar {
    padding: 14px 0;
  }
  .navbar .navbar-brand {
    column-gap: 12px;
  }
  .navbar .navbar-brand .logo .full {
    width: 160px;
  }
  .navbar .navbar-brand .app-name {
    font-size: 11px;
  }
  .navbar .navbar-brand .app-name::before {
    left: -7px;
    top: -3px;
    font-size: var(--fs-16);
  }
  .navbar .navbar-nav {
    margin-right: 16px;
  }
  .navbar-nav .nav-item .nav-link {
    height: 32px;
    font-size: var(--fs-12);
    padding: 6px 10px;
    border-radius: 4px;
  }
  .navbar .navbar-actions {
    column-gap: 12px;
  }
  .navbar .btn-refer {
    height: 32px;
    column-gap: 6px;
    padding: 6px 10px 6px 8px;
    font-size: var(--fs-12);
    border-radius: 5px;
  }
  .navbar .btn-refer .icon {
    width: 16px;
  }
  .navbar .btn-notifications-lg {
    height: 32px;
    width: 32px;
    border-radius: 4px;
  }
  .navbar .btn-notifications-lg img {
    width: 18px;
  }
  .navbar .dropdown .dropdown-toggle .profile-img {
    height: 32px;
    width: 32px;
  }
  .navbar .dropdown .dropdown-menu {
    min-width: 120px;
    border-radius: 6px;
  }
  .navbar .dropdown .dropdown-menu .dropdown-item {
    column-gap: 6px;
    font-size: var(--fs-12);
    padding: 6px 12px;
  }
  .navbar .dropdown .dropdown-menu .dropdown-item .icon {
    width: 16px;
  }
  /* Navbar End */

  .main {
    padding: calc(60px + 20px) 0 20px;
  }

  /* Right Drawer */
  .offcanvas {
    background-size: 90px;
  }
  .offcanvas.offcanvas-end {
    width: 320px;
    top: 12px;
    bottom: 12px;
    right: 12px;
    border-radius: 8px;
  }
  .offcanvas .btn-close {
    width: 24px;
    height: 24px;
    top: 8px;
    right: 12px;
    background-size: 10px;
  }
  .offcanvas .header {
    column-gap: 6px;
    padding: 12px 16px;
  }
  .offcanvas .header .icon {
    width: 18px;
  }
  .offcanvas .header .title {
    font-size: var(--fs-16);
  }
  .offcanvas .offcanvas-footer{
    padding: 12px 16px;
  }
  /* Right Drawer */

  /* Notifications Drawer */
  #notificationsDrawer .offcanvas-body {
    padding: 8px 12px 16px;
  }
  #notificationsDrawer .offcanvas-body .label-unread{
    margin-bottom: 12px;
  }
  #notificationsDrawer .notifications-list {
    row-gap: 16px;
  }
  .notifications-list .single-noti {
    column-gap: 10px;
  }
  .notifications-list .single-noti .icon-container {
    width: 32px;
    min-width: 32px;
    height: 32px;
  }
  .notifications-list .single-noti .icon-container img {
    width: 20px;
  }
  .notifications-list .single-noti .title {
    font-size: var(--fs-12);
    max-width: 190px;
  }
  .notifications-list .single-noti .date {
    font-size: var(--fs-10);
  }
  .notifications-list .single-noti .desc {
    font-size: var(--fs-12);
  }
  /* Notifications Drawer */

  /* Global Buttons */
  .portal-btn {
    column-gap: 6px;
    font-size: var(--fs-12);
    border-radius: 6px;
  }
  .portal-btn .icon {
    width: 16px;
  }
  .portal-btn.btn-lg {
    height: 40px;
    padding: 8px 14px;
  }
  .portal-btn.btn-md {
    height: 36px;
    padding: 8px 12px;
  }
  .portal-btn.btn-sm {
    padding: 8px 12px;
  }
  /* Global Buttons */

  /* Global Searchbar */
  .portal-searchbar{
    background-position: left 8px center;
    background-size: 16px;
    padding-left: 30px !important;
  }
  /* Global Searchbar */

  /* Global Label & Fields */
  .portal-label{
    font-size: var(--fs-12);
  }
  .portal-field {
    font-size: var(--fs-12);
    border-radius: 6px;
  }
  .portal-field.field-sm {
    height: 36px;
    padding: 6px 12px;
  }
  .portal-field.field-lg {
    height: 36px;
    padding: 6px 12px;
  }
  textarea.portal-field {
    padding: 8px 10px;
  }
  select.portal-field {
    padding-right: 28px !important;
    background-position: right 8px center;
    background-size: 16px;
  }
  /* Global Label & Fields */

  /* Global Radio */
  .portal-radio {
    column-gap: 8px;
  }
  .portal-radio .form-check-input{
    width: 14px;
    height: 14px;
  }
  .portal-radio .form-check-label {
    font-size: var(--fs-12);
  }
  /* Global Radio */

  /* Global Tooltip */
  .btn-tooltip img{
    width: 12px;
  }
  .tooltip{
    padding: 10px;
    border-radius: 6px;
  }
  .tooltip .tooltip-inner {
    max-width: 200px;
  }
  .tooltip .tooltip-inner .title{
    font-size: var(--fs-10);
  }
  .tooltip .tooltip-inner .desc{
    font-size: var(--fs-10);
  }
  /* Global Tooltip */

  /* Global Select2 */
  .select2-container .select2-selection{
    min-height: 36px !important;
    padding: 5px 24px 5px 6px !important;
    background-position: right 8px center;
    background-size: 16px;
    border-radius: 6px !important;
  }
  .select2-container .select2-selection--multiple .select2-selection__rendered{
    row-gap: 6px;
  }
  .select2-container .select2-selection--multiple .select2-selection__rendered li{
    height: 22px;
    padding-right: 16px;
  }
  .select2-container .select2-selection--multiple .select2-selection__rendered li .select2-selection__choice__display{
    font-size: var(--fs-10);
  }
  .select2-container .select2-selection--multiple .select2-selection__rendered li button{
    width: 20px;
    height: 20px;
    font-size: var(--fs-14);
  }
  .select2-container .select2-search--inline .select2-search__field {
    font-size: 12px !important;
    height: 20px !important;
  }
  .select2-container--default .select2-results__options{
    padding: 4px 0 !important;
  }
  .select2-container--default .select2-results__option{
    padding: 8px 12px 8px 34px !important;
    font-size: var(--fs-12);
    background-size: 12px;
    background-position: left 12px center;
  }
  /* Global Select2 */

  .page-header {
    margin-bottom: 24px;
  }
  .page-header .page-title {
    font-size: var(--fs-24);
  }
  .global-card {
    padding: 16px;
  }

  /* Global DateRangePicker */
  .custom-date-range-picker {
    height: 36px;
    min-width: 205px;
    font-size: var(--fs-12);
    padding: 8px 12px 8px 32px;
    background-size: 16px;
    border-radius: 6px;
  }
  /* Global DateRangePicker */

  /* Portal Steps */
  .portal-steps {
    column-gap: 16px;
    margin-bottom: 32px;
  }
  .portal-steps .nav-item .nav-link .title {
    font-size: var(--fs-12);
  }
  .portal-steps .nav-item .nav-link .desc {
    font-size: var(--fs-12);
  }
  /* Portal Steps */

  /* Portal Tabs */
  .portal-tabs {
    column-gap: 32px;
    margin-bottom: 24px;
  }
  .portal-tabs .nav-item .nav-link {
    position: relative;
    padding: 0 0 12px 0;
    font-size: var(--fs-12);
  }
  /* Portal Tabs */

  /* Global Modal */
  .modal .modal-content{
    background-size: 160px;
  }
  .modal .modal-body {
    padding: 16px;
  }
  .modal .modal-body .btn-close{
    right: 10px;
    top: 10px;
    width: 28px;
    height: 28px;
  }
  .modal .modal-body .btn-close img{
    width: 16px;
  }
  .modal .header-type1{
    margin-bottom: 16px;
  }
  .modal .header-type1 .icon{
    min-width: 20px;
    width: 20px;
  }
  .modal .header-type2{
    margin-bottom: 12px;
  }
  .modal .header-type2 .icon{
    width: 36px;
    height: 36px;
  }
  .modal .header-type2 .icon img{
    width: 18px;
  }
  .modal .header-title{
    font-size: var(--fs-16);
  }
  .modal .header-text-dark{
    font-size: var(--fs-12);
  }
  .modal .header-text-light{
    font-size: var(--fs-12);
  }
  .modal .modal-footer{
    padding: 14px 16px;
  }
  /* Add Tag Modal */

  /* Global Portal Table */
  .portal-table thead tr th{
    font-size: var(--fs-10);
    padding: 10px 12px;
  }
  .portal-table thead tr th.sorting::after,
  .portal-table thead tr th.sorting_asc::after{
    width: 12px;
    height: 12px;
  }
  .portal-table thead tr th.sorting_desc::after{
    width: 12px;
    height: 12px;
  }
  .portal-table thead tr th:first-child,
  .portal-table tbody tr td:first-child{
    padding-left: 16px;
  }
  .portal-table thead tr th:last-child,
  .portal-table tbody tr td:last-child{
    padding-right: 16px;
  }
  .portal-table tbody tr td{
    font-size: var(--fs-12);
    padding: 14px 12px;
  }
  .portal-table tbody tr td .actions-dropdown .dropdown-toggle .icon{
    width: 20px;
    height: 20px;
  }
  .portal-table tbody tr td .actions-dropdown .dropdown-menu{
    min-width: 120px;
    padding: 4px 0;
  }
  .portal-table tbody tr td .actions-dropdown .dropdown-menu li a{
    column-gap: 6px;
    padding: 8px 10px;
    font-size: var(--fs-12);
  }
  .portal-table tbody tr td .actions-dropdown .dropdown-menu li a .icon{
    width: 16px;
  }

  /* Table Pagination Start */
  .dataTables_paginate{
    margin-top: 16px;
  }
  .dataTables_paginate .pagination li a{
    height: 30px;
    width: 30px;
    column-gap: 4px;
    font-size: var(--fs-10);
    border-radius: 4px;
  }
  .dataTables_paginate .pagination li a img{
    width: 14px;
  }
  /* Global Portal Table */

  /* Table Badges */
  .rounded-badge{
    height: 22px;
    font-size: var(--fs-12);
  }
  .square-badge{
    padding: 0 8px 0 18px;
    font-size: var(--fs-12);
  }
  .square-badge::before{
    left: 6px;
    height: 6px;
    width: 6px;
  }
  /* Table Badges */

  /* No Data Available */
  .no-data{
    width: 280px;
    margin: 0 auto 12px;
  }
  .no-data .content{
    margin-top: -80px;
    padding: 0 0;
  }
  .no-data .content .title{
    font-size: var(--fs-14);
  }
  .no-data .content .desc{
    font-size: var(--fs-12);
  }
  .no-data .content .list li{
    font-size: var(--fs-12);
  }
  .no-data .content .action-flex{
    margin-top: 16px;
  }
  /* No Data Available */

  /* File Uploader & Uploaded File */
  .file-upload{
    min-height: 115px;
    padding: 20px 14px;
  }
  .file-upload .bg-vector{
    width: 250px;
  }
  .file-upload .icon{
    width: 32px;
    margin-bottom: 8px;
  }
  .file-upload .title{
    font-size: var(--fs-12);
  }
  .file-upload .info{
    font-size: var(--fs-10);
  }

  .file-upload.dz-started{
    padding: 12px 10px;
  }
  .file-upload.dz-started .dz-preview{
    column-gap: 10px;
  }
  .file-upload.dz-started .dz-preview .dz-image img{
    max-height: 36px;
  }
  .file-upload.dz-started .dz-preview .dz-details .dz-filename{
    font-size: var(--fs-12);
  }
  .file-upload.dz-started .dz-preview .dz-details .dz-size{
    font-size: var(--fs-12);
  }
  .file-upload.dz-started .dz-preview .dz-remove{
    font-size: var(--fs-12);
  }

  .uploaded-file{
    column-gap: 10px;
    padding: 12px 10px;
    margin-top: 8px;
  }
  .uploaded-file .file-icon{
    max-height: 36px;
  }
  .uploaded-file .name{
    font-size: var(--fs-12);
  }
  .uploaded-file .size{
    font-size: var(--fs-10);
  }
  .uploaded-file .btn-delete-file{
    height: 24px;
    width: 24px;
  }
  .uploaded-file .btn-delete-file img{
    width: 18px;
  }
  /* File Uploader & Uploaded File */

  .field-info{
		font-size: var(--fs-10);
		margin-top: 5px;
	}

  .field-text-limit{
    font-size: var(--fs-10);
    margin-top: 5px;
  }

  /* Info Box */
  .info-box{
		column-gap: 8px;
		padding: 12px;
	}
	.info-box .icon{
		width: 16px;
	}
	.info-box .text{
		font-size: var(--fs-12);
	}
	.info-box .list{
		padding-left: 18px;
	}
	.info-box .list li{
		font-size: var(--fs-12);
	}
  /* Info Box */

}

@media screen and (max-width: 991.98px) and (min-width: 768px) {

}

@media screen and (max-width: 991.98px) {

  /* Navbar Start */
  .navbar {
    padding: 16px 4px;
  }

  .navbar .navbar-brand {
    margin-right: 0;
    column-gap: 16px;
  }

  .navbar .navbar-brand .logo .full {
    display: none;
  }

  .navbar .navbar-brand .logo .w {
    display: block;
    width: 47px;
  }

  .navbar .navbar-brand .app-name {
    font-size: var(--fs-14);
  }

  .navbar .navbar-brand .app-name::before {
    left: -11px;
    top: -3px;
    font-size: var(--fs-18);
  }

  .navbar .navbar-toggler {
    background-color: transparent;
    padding: 0;
    border: 0;
    outline: 0;
    box-shadow: none;
  }

  .navbar .navbar-toggler img {
    width: 24px;
  }

  .navbar .mob-sidebar {
    width: 310px;
    height: 100vh;
    overflow: auto;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    transform: translateX(-100%);
    background-color: var(--blue-900);
    padding: 16px 16px 20px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    transition: all 0.2s;
    z-index: 11;
  }

  .navbar .mob-sidebar.opened {
    transform: translateX(0);
  }

  .navbar .mob-sidebar .sidebar-brand {
    padding: 0;
    display: flex;
    align-items: center;
    column-gap: 16px;
    margin-bottom: 24px;
  }

  .navbar .mob-sidebar .sidebar-brand .logo {
    display: block;
    text-decoration: none;
  }

  .navbar .mob-sidebar .sidebar-brand .logo img {
    display: block;
    width: 47px;
  }

  .navbar .mob-sidebar .sidebar-brand .app-name {
    position: relative;
    font-size: var(--fs-14);
    font-weight: var(--fw-400);
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 0;
    margin-top: 2px;
  }

  .navbar .mob-sidebar .sidebar-brand .app-name::before {
    content: "|";
    position: absolute;
    left: -11px;
    top: -3px;
    font-size: var(--fs-18);
    font-weight: var(--fw-100);
    color: var(--white);
  }

  .navbar .navbar-nav {
    flex-direction: column;
    row-gap: 4px;
    margin-right: 0;
    margin-bottom: 16px;
  }

  .navbar .navbar-actions {
    flex-direction: column;
    row-gap: 16px;
    margin-top: auto;
  }

  .navbar .btn-notifications-lg,
  .navbar .dropdown {
    display: none;
  }

  .navbar .sidebar-actions {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
  }

  .navbar .sidebar-actions .sidebar-action-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 12px;
    height: 40px;
    background-color: transparent;
    padding: 8px 12px;
    border: 0;
    box-shadow: none;
    outline: 0;
    text-decoration: none;
  }

  .navbar .sidebar-actions .sidebar-action-item .icon {
    width: 24px;
  }

  .navbar .sidebar-actions .sidebar-action-item .text {
    font-size: var(--fs-16);
    font-weight: var(--fw-600);
    color: var(--white);
    line-height: 1.5;
    text-transform: capitalize;
    margin-bottom: 0;
  }

  .navbar .sidebar-actions .sidebar-action-item .count {
    position: relative;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--blue-800);
    padding: 2px 8px 2px 20px;
    font-size: var(--fs-12);
    font-weight: var(--fw-500);
    color: var(--blue-50);
    margin-left: auto;
    border-radius: 16px;
  }

  .navbar .sidebar-actions .sidebar-action-item .count::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    height: 8px;
    width: 8px;
    background-color: var(--white);
    border-radius: 50%;
  }

  .navbar .sidebar-profile {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 8px;
  }

  .navbar .sidebar-profile .pic {
    height: 40px;
    width: 40px;
    min-width: 40px;
    border-radius: 50%;
    overflow: hidden;
  }

  .navbar .sidebar-profile .pic img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .navbar .sidebar-profile .name {
    font-size: var(--fs-14);
    font-weight: var(--fw-600);
    color: var(--white);
    line-height: 1.5;
    text-transform: capitalize;
    white-space: nowrap;
    margin-bottom: 0;
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .navbar .sidebar-profile .email {
    font-size: var(--fs-14);
    font-weight: var(--fw-400);
    color: var(--gray-200);
    line-height: 1.5;
    white-space: nowrap;
    margin-bottom: 0;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .navbar .sidebar-profile .btn-logout {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: transparent;
    width: 40px;
    height: 40px;
    border: 0;
    outline: 0;
    box-shadow: none;
    margin-left: auto;
  }

  .navbar .sidebar-profile .btn-logout img {
    width: 32px;
  }

  .navbar .mob-sidebar-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: rgba(12, 17, 29, 0.40);
    backdrop-filter: blur(8px);
    z-index: 10;
  }

  .navbar .mob-sidebar-backdrop.show {
    display: block !important;
  }

  .navbar .mob-sidebar-backdrop .btn-close-sidebar {
    position: absolute;
    top: 12px;
    right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: transparent;
    padding: 0;
    border: 0;
    outline: 0;
    box-shadow: none;
  }

  .navbar .mob-sidebar-backdrop .btn-close-sidebar img {
    width: 24px;
  }

  /* Navbar End */

  .main {
    padding: calc(63px + 20px) 0 20px;
  }
}

@media screen and (max-width: 767.98px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Global Buttons */
  .portal-btn.btn-lg {
    height: 40px;
    padding: 10px 14px;
  }
  .portal-btn.btn-sm {
    height: 40px;
    padding: 8px 14px;
  }
  /* Global Buttons */

  /* Global Label & Fields */
  .portal-field {
    font-size: var(--fs-15);
  }
  .portal-field.field-sm {
    height: 44px;
  }
  select.portal-field {
    padding-right: 36px !important;
    background-position: right 8px center;
    background-size: 20px;
  }
  /* Global Label & Fields */

  /* Global Radio */
  .portal-radio {
    column-gap: 10px;
  }
  .portal-radio .form-check-input{
    width: 18px;
    height: 18px;
  }
  /* Global Radio */

  /* Global Tooltip */
  .btn-tooltip img{
    width: 14px;
  }
  .tooltip{
    padding: 14px;
  }
  .tooltip .tooltip-inner {
    max-width: 240px;
  }
  /* Global Tooltip */

  /* Global Select2 */
  .select2-container .select2-selection{
    background-position: right 8px center;
  }
  .select2-container .select2-selection--multiple .select2-selection__rendered{
    column-gap: 4px;
    row-gap: 6px;
  }
  .select2-container--default .select2-results__option{
    padding-left: 36px;
    background-size: 14px;
    background-position: left 12px center;
  }
  /* Global Select2 */

  .page-header {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 16px;
    margin-bottom: 24px;
  }
  .page-header .page-title {
    font-size: var(--fs-24);
  }
  .global-card {
    padding: 16px;
    border-radius: 6px;
  }

  /* Global DateRangePicker */
  .custom-date-range-picker {
    width: 100%;
  }
  /* Global DateRangePicker */

  /* Portal Steps */
  .portal-steps {
    flex-direction: column;
    row-gap: 20px;
    margin-bottom: 24px;
  }
  .portal-steps .nav-item .nav-link .title {
    font-size: var(--fs-14);
  }
  .portal-steps .nav-item .nav-link .desc {
    font-size: var(--fs-14);
  }
  /* Portal Steps */

  /* Portal Tabs */
  .portal-tabs {
    display: none;
  }
  .portal-tabs-dd{
    display: block;
  }
  /* Portal Tabs */

  /* Global Modal */
  .modal .modal-content{
    background-size: 200px;
  }
  .modal .modal-body {
    padding: 20px;
  }
  .modal .modal-body .btn-close{
    right: 12px;
    top: 12px;
  }
  .modal .header-type1{
    margin-bottom: 20px;
  }
  .modal .modal-footer{
    flex-direction: column;
    align-items: stretch;
    row-gap: 12px;
  }
  /* Add Tag Modal */

  /* Global Portal Table */
  .portal-table thead tr th{
    font-size: var(--fs-12);
  }
  .portal-table thead tr th.sorting::after,
  .portal-table thead tr th.sorting_asc::after{
    width: 14px;
    height: 14px;
    margin-left: 3px;
  }
  .portal-table thead tr th.sorting_desc::after{
    width: 14px;
    height: 14px;
    margin-left: 3px;
  }
  .portal-table thead tr th:first-child,
  .portal-table tbody tr td:first-child{
    padding-left: 12px;
  }
  .portal-table thead tr th:last-child,
  .portal-table tbody tr td:last-child{
    padding-right: 12px;
  }
  .portal-table tbody tr td{
    font-size: var(--fs-14);
    padding: 14px 12px;
  }
  .portal-table tbody tr td .actions-dropdown .dropdown-menu{
    min-width: 140px;
  }
  .portal-table tbody tr td .actions-dropdown .dropdown-menu li a{
    padding: 8px 12px;
    font-size: var(--fs-14);
  }
  .portal-table tbody tr td .actions-dropdown .dropdown-menu li a .icon{
    width: 18px;
  }
  .portal-table .user-info{
    column-gap: 8px;
  }
  .portal-table .user-info .img-container{
    min-width: 36px;
    width: 36px;
    height: 36px;
  }
  .portal-table .user-info .name{
    font-size: var(--fs-14);
  }
  .portal-table .user-info .email{
    font-size: var(--fs-12);
  }
  .portal-table .created-at .date{
    font-size: var(--fs-14);
  }
  .portal-table .created-at .time{
    font-size: var(--fs-14);
  }

  /* Table Pagination Start */
  .dataTables_paginate{
    margin-top: 16px;
  }
  .dataTables_paginate .pagination li a{
    height: 36px;
    width: 36px;
    column-gap: 6px;
    font-size: var(--fs-12);
    border-radius: 6px;
  }
  .dataTables_paginate .pagination li:first-child span,
  .dataTables_paginate .pagination li:last-child span{
    display: none;
  }
  /* Global Portal Table */

  /* No Data Available */
  .no-data{
    width: 100%;
    margin: 0 auto 16px;
  }
  .no-data .content{
    margin-top: -100px;
    padding: 0 0px;
  }
  .no-data .content .list{
    padding-left: 20px;
    margin-top: 10px;
  }
  .no-data .content .action-flex .portal-btn {
    flex: 1;
  }
  /* No Data Available */

  /* File Uploader & Uploaded File */
  .file-upload{
    min-height: 100px;
    padding: 12px 8px;
  }
  .file-upload .bg-vector{
    width: 250px;
  }
  .file-upload .icon{
    width: 36px;
    margin-bottom: 10px;
  }

  .file-upload.dz-started{
    padding: 12px 10px;
  }
  .file-upload.dz-started .dz-preview{
    column-gap: 10px;
  }
  .file-upload.dz-started .dz-preview .dz-image img{
    max-height: 40px;
  }
  .file-upload.dz-started .dz-preview .dz-details .dz-filename{
    max-width: 180px;
    font-size: 13px;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .file-upload.dz-started .dz-preview .dz-details .dz-size{
    font-size: var(--fs-12);
  }
  .file-upload.dz-started .dz-preview .dz-remove{
    font-size: var(--fs-10);
  }

  .uploaded-file{
    column-gap: 10px;
    padding: 12px 10px;
  }
  .uploaded-file .file-icon{
    max-height: 40px;
  }
  .uploaded-file .name{
    max-width: 180px;
    font-size: 13px;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .uploaded-file .size{
    font-size: var(--fs-12);
  }
  .uploaded-file .btn-delete-file{
    height: 28px;
    width: 28px;
  }
  .uploaded-file .btn-delete-file img{
    width: 20px;
  }
  /* File Uploader & Uploaded File */

  .field-info{
		font-size: var(--fs-12);
		line-height: 1.4;
	}

  .field-text-limit{
    font-size: var(--fs-12);
  }

  /* Info Box */
  .info-box{
		column-gap: 10px;
		padding: 12px;
	}
	.info-box .icon{
		width: 18px;
	}
	.info-box .list{
		padding-left: 20px;
	}
  /* Info Box */

}

@media screen and (max-width: 575.98px) {

  /* Right Drawer */
  .offcanvas {
    background-size: 100px;
  }

  .offcanvas.offcanvas-end {
    width: calc(100% - 24px);
    top: 12px;
    bottom: 12px;
    right: 12px;
    border-radius: 10px;
  }

  .offcanvas .btn-close {
    width: 32px;
    height: 32px;
    top: 10px;
    right: 12px;
    background-size: 14px;
  }

  .offcanvas .header {
    padding: 16px 16px;
  }

  .offcanvas .header .icon {
    width: 20px;
  }

  .offcanvas .header .title {
    font-size: var(--fs-18);
  }

  .offcanvas .offcanvas-footer{
    padding: 16px 16px;
  }

  .offcanvas .offcanvas-footer .portal-btn{
    width: 100%;
  }

  /* Right Drawer */

  /* Notifications Drawer */
  #notificationsDrawer .offcanvas-body {
    padding: 12px 16px 16px;
  }

  #notificationsDrawer .notifications-list {
    row-gap: 20px;
  }

  .notifications-list .single-noti {
    column-gap: 10px;
  }

  .notifications-list .single-noti .icon-container {
    width: 36px;
    min-width: 36px;
    height: 36px;
  }

  .notifications-list .single-noti .icon-container img {
    width: 20px;
  }

  .notifications-list .single-noti .title {
    max-width: 180px;
  }
  /* Notifications Drawer */
}