*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
}

:root {
	--appMainColor: #007b8a;
	--appSecondaryColor: #4bbabc;
}

[data-theme="dark"] {
	--background: black;
	--text-primary: white;
}
@font-face {
	font-family: SegoeUI;
	src:
		local("Segoe UI Light"),
		url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/light/latest.woff2) format("woff2"),
		url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/light/latest.woff) format("woff"),
		url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/light/latest.ttf) format("truetype");
	font-weight: 100;
}

@font-face {
	font-family: SegoeUI;
	src:
		local("Segoe UI Semilight"),
		url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semilight/latest.woff2) format("woff2"),
		url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semilight/latest.woff) format("woff"),
		url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semilight/latest.ttf) format("truetype");
	font-weight: 200;
}

@font-face {
	font-family: SegoeUI;
	src:
		local("Segoe UI"),
		url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/normal/latest.woff2) format("woff2"),
		url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/normal/latest.woff) format("woff"),
		url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/normal/latest.ttf) format("truetype");
	font-weight: 400;
}

@font-face {
	font-family: SegoeUI;
	src:
		local("Segoe UI Semibold"),
		url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semibold/latest.woff2) format("woff2"),
		url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semibold/latest.woff) format("woff"),
		url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semibold/latest.ttf) format("truetype");
	font-weight: 600;
}

@font-face {
	font-family: SegoeUI;
	src:
		local("Segoe UI Bold"),
		url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/bold/latest.woff2) format("woff2"),
		url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/bold/latest.woff) format("woff"),
		url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/bold/latest.ttf) format("truetype");
	font-weight: 700;
}

.App {
	display: inline-flex;
	justify-content: space-between;
	width: 100%;
	font-family: "SegoeUI" !important;
}

.AppIcon {
	font-size: 20px;
}
.AppIcon:hover {
	color: var(--appMainColor);
}

.AppContainer {
	width: 100%;
}

/* SideBar */
.SideBarLink {
	color: rgb(255, 255, 255);
	text-decoration: none;
	text-align: center;
	width: 100%;
	padding: 5px;
	border: none;
	border-radius: 0;
	justify-content: center;
	height: 100px;
	display: table-cell;
	vertical-align: middle;
}

.SideBarLink:hover,
.ActiveSideBarLink:hover {
	opacity: 0.7;
	box-shadow: inset 5px 0 0 #ffffff;
	text-decoration: none;
}

.ActiveSideBarLink {
	box-shadow: inset 5px 0 0 #ffffff;
	border: none;
	border-radius: 0;
	background: #0095a7 !important;
	color: #ffffff;
	text-decoration: none;
	text-align: center;
	width: 100%;
	padding: 5px;
	justify-content: center;
	height: 100px;
	display: table-cell;
	vertical-align: middle;
}

/* Media for responsive side nav bar */
@media (max-width: 1000px), (max-height: 880px) {
	.SideBarLink,
	.SideBarLink:hover,
	.ActiveSideBarLink,
	.ActiveSideBarLink:hover {
		height: 50px;
	}
}
@media (max-height: 524px) {
	.SideBarLink,
	.SideBarLink:hover,
	.ActiveSideBarLink,
	.ActiveSideBarLink:hover {
		height: 40px;
	}
}

.page-item.active .page-link {
	z-index: 3;
	color: #fff !important;
	border-color: var(--appMainColor) !important;
	background-color: var(--appMainColor) !important;
}

.page-item.active .page-link:hover {
	z-index: 3;
	color: #fff !important;
	border-color: var(--appMainColor) !important;
	background-color: var(--appMainColor) !important;
}

.page-item .page-link {
	color: var(--appMainColor) !important;
}
._body_z6h4e_1 {
	min-height: 100vh;
	padding: 0px 20px 0px 20px;
	margin-bottom: 16px;
}
._footer_4m28g_1 {
	background-color: rgb(0, 0, 0);
	width: 100%;
	box-shadow: rgb(8 84 117 / 8%) 0px 2px 8px;
	color: rgb(255, 255, 255);
	position: absolute;
	left: 0;
	padding: 20px;
}

._footerText_4m28g_21 {
	text-align: center;
}
._AppHeader_a250b_1 {
	display: flex;
	align-items: center;
	width: 100%;
	background: rgb(239 245 245);
	position: sticky;
	top: 0;
	margin: 0;
	margin-bottom: 10px;
	height: 54px;
	z-index: 1000;
	padding: 0 20px;
	box-sizing: border-box;
}

._navRight_a250b_31 {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-right: 20px;
}

._notificationsWrapper_a250b_45 {
	position: relative;
}

._bellButton_a250b_53 {
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px 14px;
	color: var(--appMainColor);
	font-size: 26px;
	border: 1px solid var(--appMainColor);
	border-radius: 30px;
	background-color: transparent;
	transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
}

._bellButton_a250b_53:hover {
	background-color: var(--appMainColor);
	color: white;
}

._badge_a250b_95 {
	position: absolute;
	top: -6px;
	right: -6px;
	background-color: var(--appMainColor);
	color: white;
	border-radius: 50%;
	min-width: 16px;
	height: 16px;
	font-size: 10px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 3px;
	line-height: 1;
}

._notificationsPanel_a250b_131 {
	position: absolute;
	right: 0;
	top: calc(100% + 10px);
	width: 360px;
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	z-index: 2000;
	max-height: 400px;
	overflow-y: auto;
}

._notificationsPanelHeader_a250b_159 {
	padding: 12px 16px;
	font-weight: 600;
	font-size: 14px;
	border-bottom: 1px solid #e0e0e0;
	position: sticky;
	top: 0;
	background: white;
}

._noNotifications_a250b_179 {
	padding: 24px 16px;
	color: #999;
	text-align: center;
	font-size: 13px;
}

._notificationItem_a250b_193 {
	display: flex;
	align-items: flex-start;
	padding: 10px 14px;
	border-bottom: 1px solid #f0f0f0;
	gap: 10px;
	transition: background 0.15s;
}

._notificationItem_a250b_193:last-child {
	border-bottom: none;
}

._unread_a250b_219 {
	background-color: #f4f8ff;
}

._read_a250b_227 {
	opacity: 0.6;
}

._typeIndicator_a250b_235 {
	width: 4px;
	min-width: 4px;
	align-self: stretch;
	border-radius: 2px;
}

._type_info_a250b_249 {
	background-color: #2196f3;
}

._type_warning_a250b_257 {
	background-color: #ff9800;
}

._type_error_a250b_265 {
	background-color: #f44336;
}

._type_success_a250b_273 {
	background-color: #4caf50;
}

._notificationContent_a250b_281 {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

._notificationText_a250b_297 {
	font-size: 13px;
	color: #333;
	line-height: 1.4;
}

._notificationDate_a250b_309 {
	font-size: 11px;
	color: #aaa;
}

._markReadBtn_a250b_319 {
	background: none;
	border: 1px solid #ccc;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	min-width: 24px;
	cursor: pointer;
	font-size: 12px;
	color: #888;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: ease 0.2s;
	padding: 0;
}

._markReadBtn_a250b_319:hover {
	border-color: var(--appMainColor);
	color: var(--appMainColor);
}

._LogoutBtn_a250b_363 {
	padding: 7px 30px;
	border-radius: 30px;
	background-color: var(--appMainColor);
	border: 1px solid var(--appMainColor);
	transition: ease 0.3s;
	-webkit-transition: ease 0.3s;
}
._LogoutBtn_a250b_363 > a {
	font-size: 16px;
	color: rgb(255, 255, 255) !important;
	text-decoration: none !important;
}

._LogoutBtn_a250b_363:hover {
	background-color: white !important;
	cursor: pointer;
}
._LogoutBtn_a250b_363:hover > a {
	color: var(--appMainColor) !important;
}
._SideBar_v3yca_1 {
	background-color: var(--appMainColor);
	position: sticky;
	top: 0;
	left: 0;
	overflow: hidden;
	width: 180px;
	min-width: 180px;
	margin: 0px;
	padding: 0px;
}

._SideBarContent_v3yca_25 {
	position: fixed;
	width: inherit;
	background-color: var(--appMainColor);
}

._LinkContainer_v3yca_37 {
	display: table;
	vertical-align: middle;
	width: 100%;
}

._DiaphanumLogo_v3yca_49 {
	max-width: 180px;
	padding-top: 25px;
	padding-left: 0px;
	padding-bottom: 25px;
	padding-right: 0px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
}

._LogoMini_v3yca_71 {
	margin: 20px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
}

@media (min-width: 1001px) and (min-height: 881px) {
	._SideBar_v3yca_1 {
		display: inline !important;
	}
}

@media (max-width: 1000px), (max-height: 880px) {
	._SideBar_v3yca_1 {
		min-width: 80px;
		width: 80px;
	}
	._LinkName_v3yca_107 {
		display: none;
	}
}

@media (max-height: 524px) {
	._SideBar_v3yca_1 {
		min-width: 40px;
		width: 40px;
	}
}
._divBoxContent_1n7xo_1 {
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 20px;
}

._headLabel_1n7xo_15 {
	margin-bottom: 20px;
	line-height: 1.2;
	color: rgba(0, 0, 0, 0.55);
}
._backButton_1qbtz_1 {
	background-color: var(--appMainColor) !important;
	color: #fff !important;
	border: 1px solid var(--appMainColor) !important;
}

._backButton_1qbtz_1:hover,
._backButton_1qbtz_1:disabled {
	background-color: #4bbabc !important;
	color: #fff !important;
	border: 1px solid #4bbabc !important;
}
._QuestionRow_7e42d_1 {
	margin-bottom: 10px;
	margin-left: 10px;
	color: #808080;
}

._QuestionRow_7e42d_1 div > label {
	margin-bottom: 5px;
}

._QuestionLabel_7e42d_21,
._QuestionLabelInValid_7e42d_23 {
	padding: 0px;
	margin-bottom: 10px;
	font-weight: 600;
}

._QuestionLabel_7e42d_21 {
	color: black !important;
}

._QuestionLabelInValid_7e42d_23 {
	color: #dc3545 !important;
}
._QuestionRow_mn53q_1 {
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 10px;
	color: #808080;
}

._QuestionRow_mn53q_1 div > label {
	margin-bottom: 5px;
}

._QuestionLabel_mn53q_23 {
	padding: 0px;
	margin-bottom: 10px;
	color: black !important;
}
._QuestionRow_7e42d_1 {
	margin-bottom: 10px;
	margin-left: 10px;
	color: #808080;
}

._QuestionRow_7e42d_1 div > label {
	margin-bottom: 5px;
}

._QuestionLabel_7e42d_21,
._QuestionLabelInValid_7e42d_23 {
	padding: 0px;
	margin-bottom: 10px;
	font-weight: 600;
}

._QuestionLabel_7e42d_21 {
	color: black !important;
}

._QuestionLabelInValid_7e42d_23 {
	color: #dc3545 !important;
}
._formCheckBox_1v287_1 {
	padding-right: 20px;
}
._QuestionRowLevel_hzjdl_1 {
	padding: 0px;
	margin: 0px 0px 0px 20px;
}
._TableRow_dfsfb_1 {
	margin-bottom: 10px;
	margin-left: 10px;
}

._TestTable_dfsfb_11 {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	overflow: hidden;
}

._TestTablebody_dfsfb_23 {
	text-align: left;
}

._TestTablebody_dfsfb_23 td,
._TestTable_dfsfb_11 th {
	padding: 0.3rem 1rem;
}

._TestTablebody_dfsfb_23 td,
._TestTable_dfsfb_11 th {
	padding: 0.3rem 1rem;
}
._FirstRow_1gu9k_1 {
	background-color: var(--appMainColor);
	font-weight: 600;
	color: white;
	text-align: center;
	vertical-align: middle;
}
._FirstRow_1gu9k_1:hover td {
	background-color: var(--appMainColor);
}
._QuestionRow_5crw3_1 {
	margin-bottom: 10px;
	margin-left: 10px;
	color: #808080;
}

._QuestionRow_5crw3_1 div > label {
	margin-bottom: 5px;
}

._QuestionLabel_5crw3_21 {
	padding: 0px;
	margin-bottom: 10px;
	font-weight: 600;
	color: black !important;
}
._QuestionRow_1c2md_1 {
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 10px;
	color: #808080;
	justify-content: center;
}

._QuestionRow_1c2md_1 div > label {
	margin-bottom: 5px;
}

._QuestionImage_1c2md_25 {
	width: auto;
}
._QuestionRow_m5qpb_1 {
	margin-bottom: 10px;
	margin-left: 10px;
	color: #808080;
}

._QuestionRow_m5qpb_1 div > label {
	margin-bottom: 5px;
}

._QuestionLabel_m5qpb_21,
._QuestionLabelInValid_m5qpb_23 {
	padding: 0px;
	margin-bottom: 10px;
	font-weight: 600;
}

._QuestionLabel_m5qpb_21 {
	color: black !important;
}

._QuestionLabelInValid_m5qpb_23 {
	color: #dc3545 !important;
}

._inputContainer_m5qpb_51 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding-bottom: 10px;
}

._inputlabel_m5qpb_65 {
	margin-left: 10px;
	flex: 1;
	white-space: normal;
}

._percentageInput_m5qpb_77 {
	width: 100px !important;
}
._QuestionStartingRowLevel_1vh5v_1 {
	padding: 0px;
	margin-left: -20px;
	margin-right: 10px;
}
._Table_hodv8_1 {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	overflow: hidden;
}

._Thead_hodv8_13 {
	background-color: var(--appMainColor) !important;
	height: 50px;
	vertical-align: middle !important;
}

._Thead_hodv8_13 > tr > th {
	color: white;
	font-weight: 600;
	background-color: var(--appMainColor) !important;
}

._Tbody_hodv8_37 {
	text-align: left;
}

Tbody tr:hover td {
	background-color: #e9ebee8a;
}

Tbody tr td {
	padding-left: 16px !important;
}

._Tbody_hodv8_37 td,
._Thead_hodv8_13 th {
	padding: 0.3rem 1rem;
}

._NotFoundMsg_hodv8_71 {
	margin: 5px;
}

._Pagination_hodv8_79 {
	justify-content: right;
}

ul._Pagination_hodv8_79 > li > a > span,
ul._Pagination_hodv8_79 > li > span {
	background-color: white;
	color: var(--appMainColor);
}

ul._Pagination_hodv8_79 > li > a:focus,
ul._Pagination_hodv8_79 > li > a:hover,
ul._Pagination_hodv8_79 > li > span:focus,
ul._Pagination_hodv8_79 > li > span:hover {
	color: var(--appMainColor);
	background-color: white;
	border-color: var(--appMainColor);
}
._main_194gw_1 {
	display: flex;
	flex-direction: column;
	padding-bottom: 0;
	width: 100%;
	margin: 0;
}

._main_194gw_1 ._button-spinner_194gw_17 {
	float: left;
	margin-right: 10px;
}

._main_194gw_1 ._column-count_194gw_27 {
	margin-right: 40px;
	padding-right: 40px;
	border-right: 1px solid #93aeb9;
	opacity: 0.3;
}

._main_194gw_1 ._section-wrapper_194gw_41 {
	margin-top: 30px;
	margin-bottom: 30px;
}

._main_194gw_1 ._subsection-wrapper_194gw_51 {
	margin-top: 1em;
	margin-bottom: 1em;
}

._main_194gw_1 ._section-form_194gw_61 {
	margin-top: 15px;
}

._mainMini_194gw_69 {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 0;
	border-radius: 12px;
}

._mainMini_194gw_69 ._button-spinner_194gw_17 {
	float: left;
	margin-right: 10px;
}

._mainMini_194gw_69 ._column-count_194gw_27 {
	margin-right: 40px;
	padding-right: 40px;
	border-right: 1px solid #93aeb9;
	opacity: 0.3;
}

._mainMini_194gw_69 ._section-wrapper_194gw_41 {
	margin-top: 30px;
}

._mainMini_194gw_69 ._section-form_194gw_61 {
	margin-top: 15px;
}

._separatorTop_194gw_125 {
	border: solid 4px #4bbabc;
	border-radius: 10px;
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
	box-sizing: border-box;
}

._separatorTopWithIsins_194gw_143 {
	border: solid 4px #4bbabc;
	border-radius: 10px;
	width: 100%;
	margin-top: 2em;
	margin-bottom: 0.5em;
	box-sizing: border-box;
}

._outerFooterArea_194gw_161 {
	display: flex;
	justify-content: flex-end;
}

._outerFooterAreaButtonDefault_194gw_171 {
	display: flex;
	justify-content: flex-end;
	margin-top: 4.25em;
}

._outerFooterAreaButtonSendCode_194gw_183 {
	display: flex;
	justify-content: flex-end;
	margin-top: 1.6em;
}

._fundDetail_194gw_195 {
	margin-bottom: 0;
	padding-left: 2em;
	color: #556769;
	cursor: pointer;
	font-weight: bold;
}

._fundDetail_194gw_195 > i {
	color: #4bbabc;
}

._fundDetail_194gw_195 > i:hover {
	color: white;
}

._fundDetail_194gw_195:first-of-type {
	margin-top: 10px;
}

._firstFundDetailCart_194gw_235 {
	margin-top: 2em;
	margin-bottom: 0;
	padding-left: 1em;
	color: #556769;
	cursor: default;
	font-weight: bold;
}

._firstFundDetailCart_194gw_235 > i {
	color: #4bbabc;
}

._firstFundDetailCart_194gw_235 > i:hover {
	color: white;
}

._fundDetailCart_194gw_269 {
	margin-top: 2em;
	width: 100%;
	margin-bottom: 0;
	padding-left: 1em;
	color: #556769;
	text-align: left;
	cursor: default;
}

._fundDetailCart_194gw_269 > i {
	color: #4bbabc;
}

._fundDetailCart_194gw_269 > i:hover {
	color: white;
}

._textDisclaimer_194gw_305 {
	margin-bottom: 1.5em;
	margin-top: 0.5em;
	padding-left: 2em;
	cursor: default;
}

._titleModalDocuments_194gw_319 {
	width: 85%;
	padding-left: 1em;
	padding-right: 1em;
	margin-top: 0;
}

._text_194gw_305 {
	color: #556769;
	margin-bottom: 0;
	cursor: default;
}

._text_194gw_305._error_194gw_345 {
	color: #4bbabc;
	font-weight: 500;
}

._textNoMargin_194gw_355 {
	color: #556769;
	margin: 0;
}

._textNoMargin_194gw_355._error_194gw_345 {
	color: #4bbabc;
	font-weight: 500;
}

._textCount_194gw_375 {
	line-height: 76px;
	font-size: 68px;
	margin: 0;
	color: #2a4143;
	opacity: 0.9;
}

._textTop_194gw_391 {
	color: #556769;
	margin-bottom: 0;
	cursor: default;
	margin-top: 12px;
	font-size: 16px;
	line-height: 24px;
	max-width: 1000px;
}

._textTop_194gw_391._error_194gw_345 {
	color: #4bbabc;
	font-weight: 500;
}

._titleContainer_194gw_421 {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	cursor: pointer;
	font-family: Barlow;
}

._titleContainer_194gw_421 h2 {
	margin: 0;
}
