@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&family=Work+Sans:wght@300;700&display=swap");
:root {
	--primCol: #ED1C24;
	--secCol: #008A4B;
	--lpCol: #E7FFF0;
	--dpCol: #A61419;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  position: relative;
}

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: 100px;
	}
/***** End preloader *****/
/*=====================================
=            universal css            =
=====================================*/
* {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  background: url("/images/ClientPortal/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
}

.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;
  color: var(--primCol);
  display: inline-block;
  mix-blend-mode: multiply;
}

.sec-title::after {
  content: "";
  border-bottom: 3px solid var(--primCol);
  width: calc(100% - 50%);
  display: block;
  margin: 0 auto;
  transition: 0.3s all;
}

.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 #1F438D;
  background: #73A1FF;
  color: #173268;
}

.ui-state-active,
.ui-widget-content .ui-state-active {
  border: 1px solid #0E224A;
  background: var(--primCol);
  font-weight: bold;
  color: #fff;
}

/*=====  End of universal css  ======*/
/*============================================
=            portal header            =
============================================*/
/* ------------------ public ------------------ */
.overflow-hidden {
  overflow: hidden;
}

.logo {
  max-width: 100%;
  /*height: 50px;*/
  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(--lpCol);
  border-bottom: 1px solid color-mix(in srgb, var(--primCol) 25%, transparent);
  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(--lpCol);
  padding: .5rem 1rem;
  margin-left: 60px;
}
.header .logo {
  display: none !important;
}
.header .logo svg {
  width: auto;
  /*height: 45px;*/
  height: 65px;
}
.header .logo-mobile svg {
  width: 150px;
  height: auto;
}
.header .page-name {
  font-weight: 700;
  color: var(--primCol);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .5rem;
}
.header .page-name svg {
  width: auto;
  height: 20px;
}
.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(--lpCol);
  overflow-x: clip;
  box-shadow: 2.5px 0px 5px color-mix(in srgb, var(--primCol) 50%, transparent);
  width: 60px;
  transition: 0.3s;
  height: 100vh;
  z-index: 1021;
  /* width */
  /* Track */
  /* Handle */
}
.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 color-mix(in srgb, var(--primCol) 25%, transparent);
  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 color-mix(in srgb, var(--primCol) 25%, transparent);
  padding: .75rem 1rem;
  gap: 1rem;
}
.sidebar .menu-wrapper .menu .icon svg {
  width: auto;
  height: 24px;
}
.sidebar .menu-wrapper .menu .text {
  color: var(--primCol);
  font-size: 18px;
  display: none;
  line-height: 1;
}
.sidebar .menu-wrapper .menu:hover {
  background: var(--primCol);
  transition: 0.3s;
}
.sidebar .menu-wrapper .menu:hover .icon svg * {
  fill: var(--lpCol) !important;
}
.sidebar .menu-wrapper .menu:hover .text {
  color: var(--lpCol);
}
.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;
}

/*.table-data:nth-child(odd){
	background: #B0CAFF;
}

.table-data:nth-child(even){
	background: #A1B9E9;
}*/
.circle-info {
	height: 16px;
	fill: var(--primCol);
	margin-right: 10px;
	margin-top: -17px;
}

.investor-code-selection {
  background: #ffffff;
  padding: 15px;
  border: 1px solid lightgray;
}

.investor-code-selection div {
  display: flex;
  align-items: center;
}

.investor-code-selection p {
  color: var(--primCol);
}

.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;
}

html {
  overflow: auto;
  height: 100%;
}

.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 #dddddd;
  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: #F8F9FA;
  border-top: 1px solid #dddddd;
  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;
  /* width */
  /* Track */
  /* Handle */
}
.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;
}
.mobile-nav2 .menu i {
  font-size: 25px;
}
.mobile-nav2 .menu img,
.mobile-nav2 .menu svg {
  width: unset;
  height: 25px;
  fill: var(--primCol);
}
.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 {
  color: var(--primCol);
  font-weight: bold;
}

.btn-back {
  color: var(--primCol);
  font-size: 20px;
}

.navbar-brand {
  line-height: 0;
}

/*==================================
=            pre loader            =
==================================*/
.pre-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background: white;
}

.pre-loader img {
  position: absolute;
  width: 128px;
  top: calc(50% - 64px);
  left: calc(50% - 64px);
}

.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: var(--lpCol);
  border-radius: .5rem;
  border: 1px solid color-mix(in srgb, var(--primCol) 50%, #fff);
  overflow: hidden;
}
.table .thead:after, .table .tbody:after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	border-radius: 2px;
	background-color: rgba(237, 28, 36, 0.5);
}
.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;
  color: var(--primCol);
  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 color-mix(in srgb, var(--primCol) 50%, #fff);
}
.table .tbody:after {
  display: none;
}
.table .tbody .tr:not(:last-child) {
	border-bottom: 0.5px solid color-mix(in srgb, var(--primCol) 50%, #fff);
}
.table .tbody .tr.hoverable:hover {
  background: rgba(7, 92, 169, 0.15);
  cursor: pointer;
}
.table .tbody .tr .td {
  color: var(--dpCol);
  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: 1px solid color-mix(in srgb, var(--primCol) 25%, #fff);
  border-radius: 8px;
  overflow: hidden;
  padding: 4px 12px;
}
.custom-file-button label {
  border: unset;
  background: unset;
  transform: scale(0.85) translate(-33px, 0);
  padding: unset;
  color: rgba(var(--bs-body-color-rgb), 0.65);
}
.custom-file-button input {
  border: unset;
  padding: unset;
  height: unset;
  margin-top: -5px;
}
.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;
}

.lbclr {
	background-color: var(--lpCol) !important;
}
.form-control:focus, .form-select:focus {
	border-color: var(--primCol);
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgba(237, 28, 36, 0.25);
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	background-color: var(--lpCol) !important;
	background-image: none !important;
	color: var(--bs-body-color) !important;
	font-size: inherit;
	font-family: inherit;
	border: 1px solid var(--lpCol) !important;
	box-shadow: 0 0 0px 1000px var(--lpCol) inset !important;
	outline: none !important;
	transition: background-color 5000s ease-in-out 0s !important;
}
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
	-webkit-text-fill-color: var(--bs-body-color) !important; 
}
.btnbrand {
	--bs-btn-color: #fff;
	--bs-btn-bg: var(--primCol);
	--bs-btn-border-color: var(--primCol);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: var(--dpCol);
	--bs-btn-hover-border-color: #A31319;
	--bs-btn-focus-shadow-rgb: 163, 19, 25;
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: #A31319;
	--bs-btn-active-border-color: #A31319;
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: #fff;
	--bs-btn-disabled-bg: var(--primCol);
	--bs-btn-disabled-border-color: var(--primCol);
	background-color: var(--primCol);
}
.btnbrand:active, .btnbrand:focus, .btnbrand:hover {
	background-color: var(--dpCol);
	color: #fff !important;
}
.btnoutlinebrand {
	--bs-btn-color: var(--primCol);
	--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: 216, 51, 72;
	--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(--primCol);
	--bs-btn-disabled-bg: transparent;
	--bs-btn-disabled-border-color: var(--primCol);
	--bs-gradient: none;
	background-color: transparent;
	border: 1px solid var(--primCol);
}
.btnoutlinebrand:active, .btnoutlinebrand:focus, .btnoutlinebrand:hover {
	background-color: var(--primCol);
	color: #fff;
	border-color: var(--primCol);
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
	background-color: var(--primCol);
	color: #fff !important;
}
.nav-link, .nav-link:hover, .nav-link:focus {
	color: var(--primCol);
}