@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&family=Work+Sans:wght@300;700&display=swap");
:root {
	--primCol: #0c8f49;
	--secCol: #2E73B4;
	--lpCol: #F3F9FD;
	--dpCol: #418ecc;
	--bodbgcolor: #eef3f7;
	--lashcolor: #fbfaff;
	--dtbodbgcolor: #2b2e3b;
	--bs-emphasis-color: #495057;
	--bs-body-color: #495057;
	--dashcolor: #545A6D;
}
[data-bs-theme="dark"] {
	--bs-body-color: #ced4da;
	--bs-emphasis-color: #ced4da;
}
* {
  margin: 0;
  padding: 0;
}
a,
a:hover,
a:focus {
  text-decoration: none;
  color: unset;
}
a,
p,
span,
button {
  font-family: "Manrope", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  margin: 0;
}
hr {
  margin: 0;
}
button,
.btn {
  text-transform: capitalize;
}
.text-justify {
  text-align: justify;
}
.bg-red {
  background: var(--red);
}
.bg-lgreen {
  background: var(--light-green);
}
.bg-green {
  background: var(--green);
}
.bg-dark {
  background: var(--dark);
}
/***** preloader *****/
.preloader {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: var(--lpCol);
	z-index: 999;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.preloader img {
	width: 300px;
}
/***** End preloader *****/
/*=====================================
=            universal css            =
=====================================*/
html {
	overflow: auto;
	height: 100%;
}
html, body {
	min-height: 100%;
}
body {
	overflow-x: hidden;
	font-family: "Manrope", sans-serif;
	font-weight: 400;
	background-color: var(--bodbgcolor);
	position: relative;
}
[data-bs-theme="dark"] body {
	background-color: var(--bs-body-bg);
}
.pt15 {
  padding-top: 15px;
}
.pt30 {
  padding-top: 30px;
}
.pt60 {
  padding-top: 60px;
}
.pb15 {
  padding-bottom: 15px;
}
.pb30 {
  padding-bottom: 30px;
}
.pb60 {
  padding-bottom: 60px;
}
.ptb15 {
  padding-top: 15px;
  padding-bottom: 15px;
}
.ptb30 {
  padding-top: 30px;
  padding-bottom: 30px;
}
.ptb60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.mt15 {
  margin-top: 15px;
}
.mt30 {
  margin-top: 30px;
}
.mt60 {
  margin-top: 60px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb60 {
  margin-bottom: 60px;
}
.mtb15 {
  margin-top: 15px;
  margin-bottom: 15px;
}
.mtb30 {
  margin-top: 30px;
  margin-bottom: 30px;
}
.mtb60 {
  margin-top: 60px;
  margin-bottom: 60px;
}
.svg-ico {
  display: inline-block;
  fill: #ffffff;
}
.sec-title {
	text-transform: uppercase;
	text-align: center;
	display: inline-block;
	color: var(--bs-emphasis-color);
}
.sec-title::after {
	content: "";
	border-bottom: 3px solid var(--bs-emphasis-color);
	width: calc(100% - 50%);
	display: block;
	margin: 0 auto;
	transition: 0.3s all;
}
[data-bs-theme="dark"] .sec-title {
	color: var(--bs-card-cap-color);
}
[data-bs-theme="dark"] .sec-title::after {
	border-bottom: 3px solid var(--bs-border-color-translucent);
}
.sec-desc {
  text-align: justify;
  text-align-last: center;
  font-family: var(--para);
}
section:hover .sec-title::after {
  width: 75%;
}
.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: var(--primCol);
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: white;
  background: var(--primCol);
}
#dashboard #dm,
#home #hm,
#buySell #bso,
#fundDepot #fd,
#fundWith #fw,
#ipoMan #im,
#ledger #led,
#portfolio #port,
#taxCer #tc,
#profileUpdate #pu,
#news #nw {
  color: white;
  background: var(--primCol);
}
#dashboard #dm .icon,
#home #hm .icon,
#buySell #bso .icon,
#fundDepot #fd .icon,
#fundWith #fw .icon,
#ipoMan #im .icon,
#ledger #led .icon,
#portfolio #port .icon,
#taxCer #tc .icon,
#profileUpdate #pu .icon,
#news #nw .icon {
  filter: brightness(0) invert(1);
}
.ui-widget-header {
  border: 1px solid #ddd;
  background: var(--primCol);
  color: #fff;
  font-weight: bold;
}
.ui-state-highlight,
.ui-widget-content .ui-state-highlight {
	border: 1px solid var(--primCol);
	background: var(--dpCol);
	color: var(--bs-white);
}
.ui-state-active,
.ui-widget-content .ui-state-active {
	border: 1px solid var(--primCol);
	background: var(--primCol);
	font-weight: bold;
	color: var(--bs-white);
}
.ui-datepicker {
	z-index: 1056 !important;
}
/* Works on Firefox */
* {
	scrollbar-width: thin;
	scrollbar-color: var(--primCol) var(--lpCol);
}
/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
	width: 12px;
}
*::-webkit-scrollbar-track {
	background: var(--lpCol);
}
*::-webkit-scrollbar-thumb {
	background-color: var(--primCol);
	border-radius: 20px;
	border: 3px solid var(--lpCol);
}
/* Placeholder */
::-webkit-input-placeholder {
	opacity: 1;
	-webkit-transition: opacity .5s;
	transition: opacity .5s;
}
:-moz-placeholder {
	opacity: 1;
	-moz-transition: opacity .5s;
	transition: opacity .5s;
}
::-moz-placeholder {
	opacity: 1;
	-moz-transition: opacity .5s;
	transition: opacity .5s;
}
:-ms-input-placeholder {
	opacity: 1;
	-ms-transition: opacity .5s;
	transition: opacity .5s;
}
::placeholder {
	opacity: 1;
	transition: opacity .5s;
}
*:focus::-webkit-input-placeholder {
	opacity: 0;
}
*:focus:-moz-placeholder {
	opacity: 0;
}
*:focus::-moz-placeholder {
	opacity: 0;
}
*:focus:-ms-input-placeholder {
	opacity: 0;
}
*:focus::placeholder {
	opacity: 0;
}
.form-control:disabled {
	background-color: var(--bs-secondary-bg);
}
.themechanger {
	color: var(--bs-nav-link-color);
}
.themechanger .bi {
	width: 1em;
	height: 1em;
}
.themechanger svg * {
	fill: var(--bs-emphasis-color) !important;
}
[data-bs-theme="dark"] .themechanger svg * {
	fill: var(--bs-emphasis-color) !important;
}
/*=====  End of universal css  ======*/
/*============================================
=            portal header            =
============================================*/
/* ------------------ public ------------------ */
.overflow-hidden {
  overflow: hidden;
}
.logo {
  max-width: 100%;
  height: 70px;
}
.header-public {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-inline: 1rem;
}
.header-public .contact-info {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.header-public .contact-info .info-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 14px;
  gap: .5rem;
}
.header-public .contact-info .info-block .icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid var(--primCol);
  font-size: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--primCol);
}
.header-public .navbar-brand {
  margin-right: unset;
  padding: unset;
}
.header-public .navbar-brand img {
  width: 100%;
  height: 50px;
}
.header-public .apps {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 1rem;
  margin-left: 1rem;
}
.header-public .apps a img {
  width: 100%;
  height: 45px;
}
.header-public .apps a:hover {
  transform: scale(1.1);
}
/* ------------------ private ----------------- */
.logo-mobile {
	background: var(--bs-body-bg);
	border-bottom: var(--bs-border-color-translucent);
	padding-block: .5rem;
	padding-inline: 16px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.logo-mobile svg {
  max-width: 300px;
  width: 100%;
  height: auto;
}
.header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	background: var(--bs-body-bg);
	padding: .5rem 1rem;
	margin-left: 60px;
}
[data-bs-theme="dark"] .header {
	background: var(--dtbodbgcolor);
}
.header .logo {
	height: 40px;
	visibility: hidden;
}
.header .logo svg {
  width: auto;
  height: 65px;
}
.header .logo-mobile svg {
  width: 150px;
  height: auto;
}
.header .page-name {
	font-weight: 700;
	color: var(--bs-emphasis-color);
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: .5rem;
}
.header .page-name svg {
	width: auto;
	height: 20px;
}
.header .page-name svg path {
	fill: var(--bs-emphasis-color) !important;
}
.header .page-name label {
  font-size: 1.125rem;
  line-height: 0;
}
.header .user-name {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
.header .user-name .drop-btn::after {
  content: "";
  width: 100%;
  height: 3px;
  background: transparent;
  display: block;
  position: absolute;
}
.sidebar {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	background: var(--lashcolor);
	overflow-x: clip;
	box-shadow: 3px -3px 9px #00000017;
	width: 60px;
	transition: 0.3s;
	height: 100vh;
	z-index: 1021;
}
[data-bs-theme="dark"] .sidebar {
	background: var(--dtbodbgcolor);
}

.sidebar::-webkit-scrollbar {
	width: 5px;
}
.sidebar::-webkit-scrollbar-track {
  background: var(--lpCol);
}
.sidebar::-webkit-scrollbar-thumb {
  opacity: 0.5;
  background: var(--primCol);
  border-left: 3px var(--lpCol) solid;
  background-clip: padding-box;
}
.sidebar .logo-wrapper {
	padding: 5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-bottom: 1px solid var(--bs-border-color-translucent);
	margin-left: -1rem;
	margin-right: -1rem;
}
.sidebar .logo-wrapper svg {
  width: auto;
  height: 45px;
}
.sidebar .logo-wrapper svg #logo_x5F_text {
	display: none;
}
.sidebar .menu-wrapper {
  display: flex;
  flex-direction: column;
}
.sidebar .menu-wrapper .menu {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	border-bottom: 1px solid var(--bs-border-color-translucent);
	padding: .75rem 1rem;
	gap: 1rem;
}
.sidebar .menu-wrapper .menu .icon svg {
  width: auto;
  height: 24px;
}
.sidebar .menu-wrapper .menu .text {
	color: var(--bs-emphasis-color);
	font-size: 18px;
	display: none;
	line-height: 1;
}
.sidebar .menu-wrapper .menu:hover {
	background: var(--bs-body-color);
	transition: 0.3s;
}
[data-bs-theme="dark"] .sidebar .menu-wrapper .menu:hover {
	background: var(--bs-body-bg);
	transition: 0.3s;
}
.sidebar .menu-wrapper .menu:hover .icon svg * {
	fill: var(--bs-white) !important;
}
.sidebar .menu-wrapper .menu:hover .text {
  color: var(--bs-white);
}
.sidebar:hover {
  width: auto;
  overflow-y: scroll;
}
.sidebar:hover .logo-wrapper svg #logo_x5F_text {
	display: block;
}
.sidebar:hover .menu-wrapper .menu {
  justify-content: start;
}
.sidebar:hover .menu-wrapper .menu .text {
  display: block;
}
.main-content {
  margin-left: 60px;
}
/*=====  End of portal header  ======*/
.navbar-nav {
  font-size: 15px;
}
.circle-info {
	height: 16px;
	fill: var(--bs-body-color);
	margin-right: 10px;
	margin-top: -17px;
}
.investor-code-selection {
	background: var(--bs-body-bg);
	padding: 15px;
	border-radius: var(--bs-border-radius);
	border: 1px solid var(--bs-border-color-translucent);
}
.investor-code-selection div {
  display: flex;
  align-items: center;
}
.my-account {
  border: 1px solid var(--primCol);
  font-weight: bold;
}
.navbar-light .navbar-nav .my-account .nav-link {
  color: var(--primCol);
}
.navbar-light .navbar-nav .my-account .nav-link:hover {
  color: #ffffff;
}
.allignment {
  text-align: right;
}
.mobile-sidebar {
  position: absolute;
  top: 0;
  left: -100%;
  background: #FFFFFF;
  padding: 0px !important;
  transition: left 0.3s ease;
  width: 100%;
  align-items: unset;
  align-content: flex-start;
  height: calc(100vh - 56px);
  overflow-y: auto;
}
.mobile-sidebar.active {
  left: 0;
}
.mobile-nav {
	display: flex;
	background: #F8F9FA;
	border-top: 1px solid var(--bs-border-color-translucent);
	position: fixed;
	padding: 10px 40px;
	bottom: 0;
	left: 0;
	width: 100%;
	justify-content: space-between;
	color: var(--primCol);
	text-transform: capitalize;
	z-index: 1;
}
.mobile-nav .owl-carousel {
  justify-content: center;
}
.mobile-nav .owl-carousel.owl-loaded {
  display: flex;
  align-items: center;
}
.mobile-nav .owl-carousel.owl-loaded .owl-nav {
  position: absolute;
  width: calc(100% + 80px);
  display: flex;
  justify-content: space-between;
  background: transparent;
  left: -40px;
  font-size: 24px;
  padding-left: 10px;
  padding-right: 10px;
  z-index: -1;
}
.mobile-nav .menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.mobile-nav .menu i {
  font-size: 25px;
}
.mobile-nav .menu img,
.mobile-nav .menu svg {
  width: unset;
  height: 25px;
  fill: var(--primCol);
}
.mobile-nav .menu:hover {
  text-decoration: none;
}
.mobile-nav2 {
	display: flex;
	background: var(--bs-body-bg);
	border-top: 1px solid var(--bs-border-color-translucent);
	position: fixed;
	padding: 10px 7.5px;
	overflow-x: scroll;
	bottom: 0;
	left: 0;
	width: 100%;
	justify-content: space-between;
	color: var(--primCol);
	text-transform: capitalize;
	z-index: 1022;
}
[data-bs-theme="dark"] .mobile-nav2 {
	background: var(--dtbodbgcolor);
}
.mobile-nav2::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  cursor: pointer;
}
.mobile-nav2::-webkit-scrollbar-track {
  background: #ECF2FF;
}
.mobile-nav2::-webkit-scrollbar-thumb {
  border-radius: 0px;
  opacity: 0.5;
  background: var(--primCol);
}
.mobile-nav2 .owl-carousel {
  justify-content: center;
}
.mobile-nav2 .owl-carousel.owl-loaded {
  display: flex;
  align-items: center;
}
.mobile-nav2 .owl-carousel.owl-loaded .owl-nav {
  position: absolute;
  width: calc(100% + 80px);
  display: flex;
  justify-content: space-between;
  background: transparent;
  left: -40px;
  font-size: 24px;
  padding-left: 10px;
  padding-right: 10px;
  z-index: -1;
}
.mobile-nav2 .menu {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	white-space: nowrap;
	color: var(--bs-emphasis-color);
}
.mobile-nav2 .menu i {
  font-size: 25px;
}
.mobile-nav2 .menu img,
.mobile-nav2 .menu svg{
	width: auto;
	height: 25px;
}
.mobile-nav2 .menu svg path{
	fill: #ced4da !important;
}
.mobile-nav2 .menu:hover {
  text-decoration: none;
}

.mobile-sidebar .navbar-nav .nav-item:not(:last-child) {
  margin-bottom: 10px;
}
.mobile-sidebar .navbar-nav .nav-item {
  background: #ffffff;
}
.moreLabel {
  font-weight: bold;
  font-size: 16px;
  color: var(--primCol);
  font-family: var(--head);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-sidebar .navbar-nav .nav-link {
  color: var(--primCol);
  font-weight: bold;
}
.mobile-sidebar .navbar-nav .nav-link span {
  vertical-align: middle;
}
.table-data.total {
	background-color: var(--bs-tertiary-bg);
	color: var(--bs-emphasis-color);
	font-weight: bold;
}
.btn-back {
  color: var(--primCol);
  font-size: 20px;
}
.navbar-brand {
  line-height: 0;
}
.mobile-sidebar .icon {
  height: 14px;
}
.mobile-sidebar i,
.mobile-sidebar .icon {
  vertical-align: middle;
}

.table-header span {
  justify-content: center;
  text-align: center;
}
.navbar-light.bottom-nav .navbar-nav .nav-link,
.navbar-light.top-nav .navbar-nav .nav-link {
  color: var(--primCol);
  font-weight: bold;
}
.navbar-light.bottom-nav .navbar-nav .nav-link:hover,
.navbar-light.top-nav .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: #FFFFFF;
}

/* -------------------------------------------- */
/*               responsive table               */
/* -------------------------------------------- */
.table > :not(caption) > * > * {
  padding: unset;
  background-color: unset;
  border-bottom-width: unset;
  box-shadow: unset;
}
.table > :not(:first-child) {
  border-top: unset;
}
.table {
	margin-bottom: 0;
	background-color: var(--bs-table-bg);
	border-radius: .5rem;
	border: 1px solid var(--bs-border-color-translucent);
	overflow: hidden;
}
.table .thead:after, .table .tbody:after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	border-radius: 2px;
	background-color: var(--bs-table-border-color);
}
.table .thead {
	background-color: var(--bs-tertiary-bg);
	color: var(--bs-emphasis-color);
}
.table .thead .tr, .table .tbody .tr {
  display: flex;
  flex-direction: row;
  align-items: strech;
}
.table .thead .tr .th, .table .tbody .tr .th, .table .tbody .tr .td {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: bold;
  text-transform: capitalize;
  font-size: .875rem;
  padding: 8px 16px;
}
.table .thead .tr .th:not(:last-child), .table .tbody .tr .th:not(:last-child), .table .tbody .tr .td:not(:last-child) {
	border-right: 0.5px solid var(--bs-table-border-color);		
}
.table .tbody:after {
  display: none;
}
.table .tbody .tr:not(:last-child) {
	border-bottom: 0.5px solid var(--bs-table-border-color);
	background-color: var(--bs-table-bg);
}
.table .tbody .tr.hoverable:hover {
  background: rgba(7, 92, 169, 0.15);
  cursor: pointer;
}
.table .tbody .tr .td {
  font-weight: 400;
  font-family: "Manrope", sans-serif;
  padding: 4px 16px;
}
.table .thead .tr .th, .table .tbody .tr .th, .table .tbody .tr .td,
.table .thead .tr .td,
.table .tbody .tr .td,
.table .tbody .tr .th,
.table .tbody .tr .td,
.table .tbody .tr .td {
  flex-basis: 100%;
}
.custom-file-button {
	height: 100%;
	display: flex;
	flex-direction: column;
	border-radius: 8px;
	overflow: hidden;
	padding: .25rem .75rem;
	border: var(--bs-border-width) solid var(--bs-border-color);
	border-color: var(--bs-border-color);
	background-color: var(--bs-body-bg);
}
.custom-file-button:focus, .custom-file-button:focus-within {
	border-color: var(--bs-border-color);
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}
.custom-file-button label {
	border: unset;
	background: unset;
	padding: unset;
	color: rgba(var(--bs-body-color-rgb), 0.65);
}
.custom-file-button label.input-group-text {
	font-size: 0.8rem;
	margin-top: 2px;
}
.custom-file-button input {
	border: unset;
	padding: unset;
	height: unset;
}
.custom-file-button input:hover, .custom-file-button input:focus, .custom-file-button input:active {
	box-shadow: unset;
}
.custom-file-button input[type=file] {
	width: 100%;
}
.custom-file-button input[type=file]::-webkit-file-upload-button {
	display: none;
}
.custom-file-button input[type=file]::file-selector-button {
	display: none;
}
.custom-file-button:hover label {
	cursor: pointer;
}
.custom-file-button .form-control {
	box-shadow: none;
	border-color: none;
	background-color: rgba(78, 154, 180, 0.001);
	color: var(--bdtxtcolor) !important;
}
.lbclr {
	background: var(--bs-body-bg);
	border-radius: var(--bs-border-radius);
	border: 1px solid var(--bs-border-color-translucent);
}
.btnbrand:hover {
	background-color: #ffc90f;
}
.btnbrand, [data-bs-theme="dark"] .btnbrand {
	--bs-btn-bg: #0c8f49;
	--bs-btn-border-color: var(--primCol);
	--bs-btn-hover-bg: var(--dpCol);
	--bs-btn-hover-border-color: var(--dpCol);
	--bs-btn-active-bg: var(--dpCol);
	--bs-btn-active-border-color: var(--dpCol);
	--bs-btn-disabled-bg: #9FBFD3;
	--bs-btn-disabled-border-color: #9FBFD3;
	--bs-btn-color: var(--bs-white);
	--bs-btn-hover-color: var(--bs-white);
	--bs-btn-active-color: var(--bs-white);
	--bs-btn-disabled-color: var(--bs-white);
	-webkit-box-shadow: 0 2px 6px 0 rgba(75, 166, 239, .5);
	box-shadow: 0 2px 6px 0 rgba(75, 166, 239, .5);
}
.btnoutlinebrand {
	--bs-btn-border-color: var(--primCol);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: var(--primCol);
	--bs-btn-hover-border-color: var(--primCol);
	--bs-btn-focus-shadow-rgb: 1, 114, 70;
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: var(--primCol);
	--bs-btn-active-border-color: var(--primCol);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: var(--lpCol);
	--bs-btn-disabled-bg: transparent;
	--bs-btn-disabled-border-color: var(--lpCol);
	--bs-gradient: none;
	background-color: transparent;
	border: 1px solid var(--primCol);
}
.btnoutlinebrand:active, .btnoutlinebrand:focus, .btnoutlinebrand:hover {
	background-color: var(--primCol);
	color: var(--bs-white);
	border-color: var(--primCol);
}
.btnoutlinebrand.btn-outline-primary {
	--bs-btn-color: var(--primCol);
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
	background-color: var(--primCol);
	color: var(--bs-white);
}
.nav-link, .nav-link:hover, .nav-link:focus {
	color: var(--primCol);
}
.nav-pills .nav-link {
	border-radius: 6px 6px 0px 0px;
}