@import url(font-awesome.min.css);
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

/*
	Phantom by HTML5 UP
	html5up.net | @ajlkn
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
	
	Note: This file contains vendor extensions (-webkit-, -moz-, -ms-) for cross-browser compatibility.
	These are necessary for proper rendering across different browsers and are not validation errors.
*/
:root {
	--font-primary: "Poppins", sans-serif;
	--font-heading: "Poppins", sans-serif;
	--font-ui: system-ui, -apple-system, "Segoe UI", sans-serif;

	--line-heading-tight: 1.1;
	--line-heading: 1.2;
	--line-body: 1.6;
	--line-ui: 1.3;

	--tracking-heading: -0.01em;
	--tracking-body: normal;
	--tracking-ui: 0.02em;

	/* Typography scale (mobile-first: html 14px base) */
	--text-xs: 0.75rem;
	--text-sm: 0.875rem;
	--text-md: 0.95rem;
	--text-base: 1rem;
	--text-lg: 1.2rem;
	--text-xl: 1.5rem;
	--text-2xl: 1.875rem;
	--text-3xl: 2.5rem;
	--text-4xl: 3rem;
	--text-hero: clamp(2.2857rem, 1.4286rem + 4.2857vw, 4rem);

	--color-primary: #6055cd;
	--color-primary-active: #574bc2;
	--color-primary-deactive: #8077cf;
	--color-primary-contrast: #fff;
	--color-primary-rgb: 96 85 205;

	--color-secondary: #8427d7;
	--color-secondary-active: #7310ca;
	--color-secondary-contrast: #fff;

	--color-tertiary: #480088;
	--color-tertiary-contrast: #fff;

	--color-success-light: #c1efd4;
	--color-success: #179200;

	--color-increment: #03a27a;

	--color-warning: #ffaf20;
	--color-warning-base: #e09500;
	--color-warning-bg: #fcf7e3;

	--color-danger: #ec434a;
	--color-danger-base: #c02a2f;
	--color-danger-contrast: #fff;

	--color-base: #4f4f4f;
	--body-color: #f2f4ff;
	--color-glow: #f9f9f9;
	--color-glow-purple: #f1f4ff;
	--text-base-color: #000d50;

	--mdc-dialog-subhead-font: "Poppins", sans-serif, system-ui;
	--mdc-dialog-supporting-text-font: "Poppins", sans-serif, system-ui;
	--mat-form-field-container-text-font: "Poppins", sans-serif, system-ui;
	--mdc-form-field-label-text-font: "Poppins", sans-serif, system-ui;
	--mat-form-field-subscript-text-font: "Poppins", sans-serif, system-ui;
	--mdc-outlined-text-field-label-text-font: "Poppins", sans-serif, system-ui;
	--mat-card-title-text-font: "Poppins", sans-serif, system-ui;
	--mdc-plain-tooltip-supporting-text-font: "Poppins", sans-serif, system-ui;
	--mat-card-subtitle-text-font: "Poppins", sans-serif, system-ui;
	--mat-expansion-header-text-font: "Poppins", sans-serif, system-ui;
	--mat-expansion-container-text-font: "Poppins", sans-serif, system-ui;

	--mdc-text-button-label-text-font: "Poppins", sans-serif;
	--mdc-filled-button-label-text-font: "Poppins", sans-serif;
	--mdc-outlined-button-label-text-font: "Poppins", sans-serif;
	--mdc-protected-button-label-text-font: "Poppins", sans-serif;
	--mdc-protected-button-label-text-tracking: normal;

	--mdc-filled-text-field-container-color: var(--color-primary-contrast, #fff);
}
@media screen and (min-width: 768px) {
	:root {
		/* Desktop-friendly defaults */
		--text-md: 1rem;
		--text-base: 1rem;
		--text-lg: 1.25rem;
		--text-xl: 1.5625rem;
		--text-2xl: 1.9531rem;
		--text-3xl: 2.4414rem;
		--text-4xl: 3.0518rem;
	}
}

html {
	font-size: 14px;
}
@media screen and (min-width: 768px) {
	html {
		font-size: 16px;
	}
}

/* Typography utilities */
.text-xs { font-size: var(--text-xs); line-height: var(--line-ui); }
.text-sm { font-size: var(--text-sm); line-height: var(--line-body); }
.text-md { font-size: var(--text-md); line-height: var(--line-body); }
.text-base { font-size: var(--text-base); line-height: var(--line-body); }
.text-lg { font-size: var(--text-lg); line-height: var(--line-heading); }
.text-xl { font-size: var(--text-xl); line-height: var(--line-heading); }
.text-2xl { font-size: var(--text-2xl); line-height: var(--line-heading); }
.text-3xl { font-size: var(--text-3xl); line-height: var(--line-heading-tight); }
/* DEPRECATED CSS: .text-4xl { font-size: var(--text-4xl); line-height: var(--line-heading-tight); } */
/* DEPRECATED CSS: .text-hero { font-size: var(--text-hero); line-height: var(--line-heading-tight); letter-spacing: var(--tracking-heading); } */

/* Typography roles */
.hero-title,
h1[role="heading"] {
	font-family: var(--font-heading);
	font-size: var(--text-hero);
	font-weight: 700;
	line-height: var(--line-heading-tight);
	letter-spacing: var(--tracking-heading);
}
/* DEPRECATED CSS: .hero-description { */
/* DEPRECATED CSS: 	font-size: var(--text-lg); */
/* DEPRECATED CSS: 	line-height: var(--line-body); */
/* DEPRECATED CSS: 	letter-spacing: var(--tracking-body); */
/* DEPRECATED CSS: } */
.section-title {
	font-family: var(--font-heading);
	font-size: var(--text-2xl);
	font-weight: 700;
	line-height: var(--line-heading);
	letter-spacing: var(--tracking-heading);
}
.section-subtitle {
	font-size: var(--text-sm);
	line-height: var(--line-body);
	color: #6b7280;
}
.card-title {
	font-family: var(--font-heading);
	font-size: var(--text-lg);
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: var(--tracking-heading);
}
.card-subtitle,
/* DEPRECATED CSS: .body-text { */
/* DEPRECATED CSS: 	font-size: var(--text-base); */
/* DEPRECATED CSS: 	line-height: var(--line-body); */
/* DEPRECATED CSS: 	letter-spacing: var(--tracking-body); */
/* DEPRECATED CSS: } */
.secondary-text,
/* DEPRECATED CSS: .meta-text { */
/* DEPRECATED CSS: 	font-size: var(--text-sm); */
/* DEPRECATED CSS: 	line-height: var(--line-body); */
/* DEPRECATED CSS: 	color: #6b7280; */
/* DEPRECATED CSS: } */
.btn-text {
	font-family: var(--font-primary);
	font-size: var(--text-sm);
	font-weight: 600;
	line-height: var(--line-ui);
	letter-spacing: var(--tracking-ui);
}
.label-text,
/* DEPRECATED CSS: .small-ui-text { */
/* DEPRECATED CSS: 	font-family: var(--font-ui); */
/* DEPRECATED CSS: 	font-size: var(--text-xs); */
/* DEPRECATED CSS: 	font-weight: 500; */
/* DEPRECATED CSS: 	line-height: var(--line-ui); */
/* DEPRECATED CSS: 	letter-spacing: var(--tracking-ui); */
/* DEPRECATED CSS: } */

/* Semantic defaults for global consistency */
h1, .h1 { font-family: var(--font-heading); font-size: var(--text-3xl); line-height: var(--line-heading-tight); letter-spacing: var(--tracking-heading); font-weight: 700; }
h2, .h2 { font-family: var(--font-heading); font-size: var(--text-2xl); line-height: var(--line-heading); letter-spacing: var(--tracking-heading); font-weight: 700; }
h3, .h3 { font-family: var(--font-heading); font-size: var(--text-xl); line-height: var(--line-heading); letter-spacing: var(--tracking-heading); font-weight: 600; }
h4, .h4 { font-family: var(--font-heading); font-size: var(--text-lg); line-height: var(--line-heading); letter-spacing: var(--tracking-heading); font-weight: 600; }
h5, .h5 { font-family: var(--font-heading); font-size: var(--text-md); line-height: var(--line-heading); letter-spacing: var(--tracking-heading); font-weight: 600; }
h6, .h6 { font-family: var(--font-heading); font-size: var(--text-sm); line-height: var(--line-heading); letter-spacing: var(--tracking-ui); font-weight: 600; }
p, li, td, th { font-size: var(--text-base); line-height: var(--line-body); letter-spacing: var(--tracking-body); }
small, label { font-family: var(--font-ui); font-size: var(--text-xs); line-height: var(--line-ui); letter-spacing: var(--tracking-ui); }
button, .btn { font-family: var(--font-primary); letter-spacing: var(--tracking-ui); }

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
.breadcrumb {
	--bs-link-color-rgb: 96, 85, 205; 
	--bs-breadcrumb-item-padding-x: 1.6rem; 
	gap: 5px;
}

.breadcrumb a {
	text-decoration: none;
}

.banerImg {
	display: flex;
	justify-content: center;
	max-width: calc(100vw - 1.5rem);
}
img {
	max-width: 100%;
	height: auto;
}

.text_wrapped {
	white-space: pre-line;
}

/* modify bootstrap color */
.form-check-input:checked {
	background-color: var(--color-secondary, #8427d7);
	border-color: var(--color-secondary, #8427d7);
}

.color-primary {
	color: var(--color-primary);
}
.color-warning {
	color: var(--color-warning);
}
.color-success {
	color: var(--color-success);
}
/* DEPRECATED CSS: .color-increment { */
/* DEPRECATED CSS: 	color: var(--color-increment); */
/* DEPRECATED CSS: } */

/* fonts -------------------------- */
/* DEPRECATED CSS: .open-sans-300 { */
/* DEPRECATED CSS: 	font-family: "Poppins", sans-serif; */
/* DEPRECATED CSS: 	font-weight: 300; */
/* DEPRECATED CSS: 	font-style: normal; */
/* DEPRECATED CSS: 	font-variation-settings: "wdth" 100; */
/* DEPRECATED CSS: } */
.open-sans-400 {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-variation-settings: "wdth" 100;
}
.open-sans-500 {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-variation-settings: "wdth" 100;
}
.open-sans-600 {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-variation-settings: "wdth" 100;
}
/* DEPRECATED CSS: .open-sans-700 { */
/* DEPRECATED CSS: 	font-family: "Poppins", sans-serif; */
/* DEPRECATED CSS: 	font-weight: 700; */
/* DEPRECATED CSS: 	font-style: normal; */
/* DEPRECATED CSS: 	font-variation-settings: "wdth" 100; */
/* DEPRECATED CSS: } */
.open-sans-800 {
	font-family: "Poppins", sans-serif;
	font-weight: 800;
	font-style: normal;
	font-variation-settings: "wdth" 100;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}

body {
	min-height: 100%;
	font-family: var(--font-primary), system-ui !important;
	font-size: var(--text-base);
	line-height: var(--line-body);
	letter-spacing: var(--tracking-body);
	--bs-body-font-size: var(--text-base);
	background: #f2f4ff !important;
	color: #000d50 !important;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}
.carousel-indicators.homeCarouselIndicators{ margin-bottom: 0px;}
ol,
ul {
	list-style: none;
}

mark {
	background-color: transparent;
	color: inherit;
}

input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input,
select,
textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

/* Basic */

@-ms-viewport {
	width: device-width;
}

body {
	-ms-overflow-style: scrollbar;
}

@media screen and (max-width: 480px) {
	html,
	body {
		min-width: 320px;
	}
}

html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

body.is-preload *,
body.is-preload *:before,
body.is-preload *:after {
	-moz-animation: none;
	-webkit-animation: none;
	-ms-animation: none;
	animation: none;
	-moz-transition: none;
	-webkit-transition: none;
	-ms-transition: none;
	transition: none;
}

/* Type */

input,
select,
textarea {
	color: #585858;
	font-size: 16pt;
	font-weight: 300;
	line-height: 1.75;
}

@media screen and (max-width: 1680px) {
	body,
	input,
	select,
	textarea {
		font-size: 14pt;
	}
}

@media screen and (max-width: 1280px) {
	body,
	input,
	select,
	textarea {
		font-size: 12pt;
	}
}

a {
	-moz-transition:
		border-bottom-color 0.2s ease,
		color 0.2s ease;
	-webkit-transition:
		border-bottom-color 0.2s ease,
		color 0.2s ease;
	-ms-transition:
		border-bottom-color 0.2s ease,
		color 0.2s ease;
	transition:
		border-bottom-color 0.2s ease,
		color 0.2s ease;
	text-decoration: none;
	/* color: #585858; */
	color: inherit;
}

a:hover {
	border-bottom-color: transparent;
	color: #f2849e;
}

strong,
b {
	font-weight: 900;
}

em,
i {
	font-style: italic;
}

p {
	margin: 0 0 2em 0;
}

h1 {
	font-size: 2.75em;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 1em 0;
}

h1 a {
	color: inherit;
}

@media screen and (max-width: 736px) {
	h1 {
		font-size: 2em;
		margin: 0 0 1em 0;
	}
}

@media screen and (max-width: 360px) {
	h1 {
		font-size: 1.75em;
	}
}

h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
}

h2 {
	font-size: 1.1em;
}

h3 {
	font-size: 1em;
}

h4 {
	font-size: 0.8em;
}

h5 {
	font-size: 0.8em;
}

h6 {
	font-size: 0.8em;
}

@media screen and (max-width: 980px) {
	h1 br,
	h2 br,
	h3 br,
	h4 br,
	h5 br,
	h6 br {
		display: none;
	}
}

@media screen and (max-width: 736px) {
	h2 {
		font-size: 1em;
	}

	h3 {
		font-size: 0.8em;
	}
}

sub {
	font-size: 0.8em;
	position: relative;
	top: 0.5em;
}

sup {
	font-size: 0.8em;
	position: relative;
	top: -0.5em;
}

blockquote {
	border-left: solid 4px #c9c9c9;
	font-style: italic;
	margin: 0 0 2em 0;
	padding: 0.5em 0 0.5em 2em;
}

code {
	background: rgba(144, 144, 144, 0.075);
	border-radius: 4px;
	border: solid 1px #c9c9c9;
	font-family: "Courier New", monospace;
	font-size: 0.9em;
	margin: 0 0.25em;
	padding: 0.25em 0.65em;
}

pre {
	-webkit-overflow-scrolling: touch;
	overflow-x: auto;
	font-family: "Courier New", monospace;
	font-size: 0.9em;
	margin: 0 0 2em 0;
}

pre code {
	display: block;
	line-height: 1.75;
	padding: 1em 1.5em;
	overflow-x: auto;
}

hr {
	border: 0;
	border-bottom: solid 1px #c9c9c9;
	margin: 2em 0;
}

/* DEPRECATED CSS: hr.major { */
/* DEPRECATED CSS: 	margin: 3em 0; */
/* DEPRECATED CSS: } */

/* DEPRECATED CSS: .align-left { */
/* DEPRECATED CSS: 	text-align: left; */
/* DEPRECATED CSS: } */

/* DEPRECATED CSS: .align-center { */
/* DEPRECATED CSS: 	text-align: center; */
/* DEPRECATED CSS: } */

/* DEPRECATED CSS: .align-right { */
/* DEPRECATED CSS: 	text-align: right; */
/* DEPRECATED CSS: } */

/* Section/Article */

section.special,
article.special {
	text-align: center;
}

@media screen and (max-width: 736px) {
	header p {
		margin-top: 0;
	}
}

/* Icon */

.icon {
	text-decoration: none;
	border-bottom: none;
	position: relative;
}

.icon:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-transform: none;
}

.icon > .label {
	display: none;
}

.icon.style2 {
	-moz-transition:
		background-color 0.2s ease-in-out,
		color 0.2s ease-in-out,
		border-color 0.2s ease-in-out;
	-webkit-transition:
		background-color 0.2s ease-in-out,
		color 0.2s ease-in-out,
		border-color 0.2s ease-in-out;
	-ms-transition:
		background-color 0.2s ease-in-out,
		color 0.2s ease-in-out,
		border-color 0.2s ease-in-out;
	transition:
		background-color 0.2s ease-in-out,
		color 0.2s ease-in-out,
		border-color 0.2s ease-in-out;
	background-color: transparent;
	border: solid 1px #c9c9c9;
	border-radius: 4px;
	width: 2.65em;
	height: 2.65em;
	display: inline-block;
	text-align: center;
	line-height: 2.65em;
	color: inherit;
}

.icon.style2:before {
	font-size: 1.1em;
}

.icon.style2:hover {
	color: #f2849e;
	border-color: #f2849e;
}

.icon.style2:active {
	background-color: rgba(242, 132, 158, 0.1);
}

/* List */

ol {
	list-style: decimal;
	margin: 0 0 2em 0;
	padding-left: 1.25em;
}

ol li {
	padding-left: 0.25em;
}

ul {
	list-style: disc;
	margin: 0 0 2em 0;
	padding-left: 1em;
}

ul.alt {
	list-style: none;
	padding-left: 0;
}

ul.alt li {
	border-top: solid 1px #c9c9c9;
	padding: 0.5em 0;
}

ul.alt li:first-child {
	border-top: 0;
	padding-top: 0;
}

dl {
	margin: 0 0 2em 0;
}

dl dt {
	display: block;
	font-weight: 900;
	margin: 0 0 1em 0;
}

dl dd {
	margin-left: 2em;
}

/* Actions */

ul.actions {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	/* Vendor prefixes for flexbox properties */
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	cursor: default;
	list-style: none;
	margin-left: -1em;
	padding-left: 0;
}

ul.actions li {
	padding: 0 0 0 1em;
	vertical-align: middle;
}

ul.actions.special {
	width: 100%;
	margin-left: 0;
}

ul.actions.special li:first-child {
	padding-left: 0;
}

ul.actions.stacked {
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-left: 0;
}

ul.actions.stacked li {
	padding: 1.3em 0 0 0;
}

ul.actions.stacked li:first-child {
	padding-top: 0;
}

ul.actions.fit {
	width: calc(100% + 1em);
}

ul.actions.fit li {
	-moz-flex-grow: 1;
	-webkit-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;
	-moz-flex-shrink: 1;
	-webkit-flex-shrink: 1;
	-ms-flex-shrink: 1;
	flex-shrink: 1;
	width: 100%;
}

ul.actions.fit li > * {
	width: 100%;
}

ul.actions.fit.stacked {
	width: 100%;
}

@media screen and (max-width: 480px) {
	ul.actions:not(.fixed) {
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-left: 0;
		width: 100%;
	}

	ul.actions:not(.fixed) li {
		-moz-flex-grow: 1;
		-webkit-flex-grow: 1;
		-ms-flex-grow: 1;
		flex-grow: 1;
		-moz-flex-shrink: 1;
		-webkit-flex-shrink: 1;
		-ms-flex-shrink: 1;
		flex-shrink: 1;
		padding: 1em 0 0 0;
		text-align: center;
		width: 100%;
	}

	ul.actions:not(.fixed) li > * {
		width: 100%;
	}

	ul.actions:not(.fixed) li:first-child {
		padding-top: 0;
	}

	ul.actions:not(.fixed) li input[type="submit"],
	ul.actions:not(.fixed) li input[type="reset"],
	ul.actions:not(.fixed) li input[type="button"],
	ul.actions:not(.fixed) li button,
	ul.actions:not(.fixed) li .button {
		width: 100%;
	}

	ul.actions:not(.fixed) li input[type="submit"].icon:before,
	ul.actions:not(.fixed) li input[type="reset"].icon:before,
	ul.actions:not(.fixed) li input[type="button"].icon:before,
	ul.actions:not(.fixed) li button.icon:before,
	ul.actions:not(.fixed) li .button.icon:before {
		margin-left: -0.5rem;
	}
}

/* Icons */

ul.icons {
	cursor: default;
	list-style: none;
	padding-left: 0;
	margin: -1em 0 2em -1em;
}

ul.icons li {
	display: inline-block;
	padding: 1em 0 0 1em;
}

/* Form */

form {
	margin: 0 0 2em 0;
	overflow-x: hidden;
}

form > :last-child {
	margin-bottom: 0;
}

form > .fields {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: calc(100% + 3em);
	margin: -1.5em 0 2em -1.5em;
}

form > .fields > .field {
	-moz-flex-grow: 0;
	-webkit-flex-grow: 0;
	-ms-flex-grow: 0;
	flex-grow: 0;
	-moz-flex-shrink: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-shrink: 0;
	flex-shrink: 0;
	padding: 1.5em 0 0 1.5em;
	width: calc(100% - 1.5em);
}

form > .fields > .field.half {
	width: calc(50% - 0.75em);
}

form > .fields > .field.third {
	width: calc(100% / 3 - 0.5em);
}

form > .fields > .field.quarter {
	width: calc(25% - 0.375em);
}

@media screen and (max-width: 480px) {
	form > .fields {
		width: calc(100% + 3em);
		margin: -1.5em 0 2em -1.5em;
	}

	form > .fields > .field {
		padding: 1.5em 0 0 1.5em;
		width: calc(100% - 1.5em);
	}

	form > .fields > .field.half {
		width: calc(100% - 1.5em);
	}

	form > .fields > .field.third {
		width: calc(100% - 1.5em);
	}

	form > .fields > .field.quarter {
		width: calc(100% - 1.5em);
	}
}

/* DEPRECATED CSS: .customLabel label { */
/* DEPRECATED CSS: 	display: block; */
/* DEPRECATED CSS: 	font-size: 0.9em; */
/* DEPRECATED CSS: 	font-weight: 900; */
/* DEPRECATED CSS: 	margin: 0 0 1em 0; */
/* DEPRECATED CSS: } */

.customLabel input[type="text"],
.customLabel input[type="password"],
.customLabel input[type="email"],
.customLabel input[type="tel"],
.customLabel select,
/* DEPRECATED CSS: .customLabel textarea { */
/* DEPRECATED CSS: 	-moz-appearance: none; */
/* DEPRECATED CSS: 	-webkit-appearance: none; */
/* DEPRECATED CSS: 	-ms-appearance: none; */
/* DEPRECATED CSS: 	appearance: none; */
/* DEPRECATED CSS: 	background-color: transparent; */
/* DEPRECATED CSS: 	border: none; */
/* DEPRECATED CSS: 	border-radius: 0; */
/* DEPRECATED CSS: 	border-bottom: solid 1px #c9c9c9; */
/* DEPRECATED CSS: 	color: inherit; */
/* DEPRECATED CSS: 	display: block; */
/* DEPRECATED CSS: 	outline: 0; */
/* DEPRECATED CSS: 	padding: 0; */
/* DEPRECATED CSS: 	text-decoration: none; */
/* DEPRECATED CSS: 	width: 100%; */
/* DEPRECATED CSS: } */

.customLabel input[type="text"]:invalid,
.customLabel input[type="password"]:invalid,
.customLabel input[type="email"]:invalid,
.customLabel input[type="tel"]:invalid,
.customLabel select:invalid,
/* DEPRECATED CSS: .customLabel textarea:invalid { */
/* DEPRECATED CSS: 	box-shadow: none; */
/* DEPRECATED CSS: } */

.customLabel input[type="text"]:focus,
.customLabel input[type="password"]:focus,
.customLabel input[type="email"]:focus,
.customLabel input[type="tel"]:focus,
.customLabel select:focus,
/* DEPRECATED CSS: .customLabel textarea:focus { */
/* DEPRECATED CSS: 	border-bottom-color: #f2849e; */
/* DEPRECATED CSS: 	box-shadow: inset 0 -1px 0 0 #f2849e; */
/* DEPRECATED CSS: } */

select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='%23c9c9c9' /%3E%3C/svg%3E");
	background-size: 1.25rem;
	background-repeat: no-repeat;
	background-position: calc(100% - 1rem) center;
	height: 3em;
	padding-right: 3em;
	text-overflow: ellipsis;
}

select option {
	background: #ffffff;
}

select:focus::-ms-value {
	background-color: transparent;
}

select::-ms-expand {
	display: none;
}

/* DEPRECATED CSS: .customInput { */
/* DEPRECATED CSS: 	input[type="text"], */
/* DEPRECATED CSS: 	input[type="password"], */
/* DEPRECATED CSS: 	input[type="email"], */
/* DEPRECATED CSS: 	select { */
/* DEPRECATED CSS: 		height: 3em; */
/* DEPRECATED CSS: 	} */
/* DEPRECATED CSS: 	input[type="checkbox"], */
/* DEPRECATED CSS: 	input[type="radio"] { */
/* DEPRECATED CSS: 		-moz-appearance: none; */
/* DEPRECATED CSS: 		-webkit-appearance: none; */
/* DEPRECATED CSS: 		-ms-appearance: none; */
/* DEPRECATED CSS: 		appearance: none; */
/* DEPRECATED CSS: 		display: block; */
/* DEPRECATED CSS: 		float: left; */
/* DEPRECATED CSS: 		margin-right: -2em; */
/* DEPRECATED CSS: 		opacity: 0; */
/* DEPRECATED CSS: 		width: 1em; */
/* DEPRECATED CSS: 		z-index: -1; */
/* DEPRECATED CSS: 	} */
/* DEPRECATED CSS: } */

/* DEPRECATED CSS: .coustomInput { */
/* DEPRECATED CSS: 	input[type="checkbox"] + label, */
/* DEPRECATED CSS: 	input[type="radio"] + label { */
/* DEPRECATED CSS: 		text-decoration: none; */
/* DEPRECATED CSS: 		color: #585858; */
/* DEPRECATED CSS: 		cursor: pointer; */
/* DEPRECATED CSS: 		display: inline-block; */
/* DEPRECATED CSS: 		font-size: 1em; */
/* DEPRECATED CSS: 		font-weight: 300; */
/* DEPRECATED CSS: 		padding-left: 2.55em; */
/* DEPRECATED CSS: 		padding-right: 0.75em; */
/* DEPRECATED CSS: 		position: relative; */
/* DEPRECATED CSS: 	} */

/* DEPRECATED CSS: 	input[type="checkbox"] + label:before, */
/* DEPRECATED CSS: 	input[type="radio"] + label:before { */
/* DEPRECATED CSS: 		-moz-osx-font-smoothing: grayscale; */
/* DEPRECATED CSS: 		-webkit-font-smoothing: antialiased; */
/* DEPRECATED CSS: 		font-family: FontAwesome; */
/* DEPRECATED CSS: 		font-style: normal; */
/* DEPRECATED CSS: 		font-weight: normal; */
/* DEPRECATED CSS: 		text-transform: none; */
/* DEPRECATED CSS: 	} */

/* DEPRECATED CSS: 	input[type="checkbox"] + label:before, */
/* DEPRECATED CSS: 	input[type="radio"] + label:before { */
/* DEPRECATED CSS: 		border-radius: 4px; */
/* DEPRECATED CSS: 		border: solid 1px #c9c9c9; */
/* DEPRECATED CSS: 		content: ""; */
/* DEPRECATED CSS: 		display: inline-block; */
/* DEPRECATED CSS: 		height: 1.8em; */
/* DEPRECATED CSS: 		left: 0; */
/* DEPRECATED CSS: 		line-height: 1.725em; */
/* DEPRECATED CSS: 		position: absolute; */
/* DEPRECATED CSS: 		text-align: center; */
/* DEPRECATED CSS: 		top: 0; */
/* DEPRECATED CSS: 		width: 1.8em; */
/* DEPRECATED CSS: 	} */

/* DEPRECATED CSS: 	input[type="checkbox"]:checked + label:before, */
/* DEPRECATED CSS: 	input[type="radio"]:checked + label:before { */
/* DEPRECATED CSS: 		background: #585858; */
/* DEPRECATED CSS: 		border-color: #585858; */
/* DEPRECATED CSS: 		color: #ffffff; */
/* DEPRECATED CSS: 		content: "\f00c"; */
/* DEPRECATED CSS: 	} */

/* DEPRECATED CSS: 	input[type="checkbox"]:focus + label:before, */
/* DEPRECATED CSS: 	input[type="radio"]:focus + label:before { */
/* DEPRECATED CSS: 		border-color: #f2849e; */
/* DEPRECATED CSS: 		box-shadow: 0 0 0 1px #f2849e; */
/* DEPRECATED CSS: 	} */

/* DEPRECATED CSS: 	input[type="checkbox"] + label:before { */
/* DEPRECATED CSS: 		border-radius: 4px; */
/* DEPRECATED CSS: 	} */

/* DEPRECATED CSS: 	input[type="radio"] + label:before { */
/* DEPRECATED CSS: 		border-radius: 100%; */
/* DEPRECATED CSS: 	} */
/* DEPRECATED CSS: } */

/* Box */

.box {
	border-radius: 4px;
	margin-bottom: 2em;
	padding: 1.5em;
}

.box > :last-child,
.box > :last-child > :last-child,
.box > :last-child > :last-child > :last-child {
	margin-bottom: 0;
}

.box.alt {
	border: 0;
	border-radius: 0;
	padding: 0;
}

/* Image */

.image {
	border-radius: 4px;
	border: 0;
	display: inline-block;
	position: relative;
}

.image img {
	border-radius: 4px;
	display: block;
}

.image.left,
.image.right {
	max-width: 40%;
}

.image.left img,
.image.right img {
	width: 100%;
}

.image.left {
	float: left;
	padding: 0 1.5em 1em 0;
	top: 0.25em;
}

.image.right {
	float: right;
	padding: 0 0 1em 1.5em;
	top: 0.25em;
}

.image.fit {
	display: block;
	margin: 0 0 2em 0;
	width: 100%;
}

.image.fit img {
	width: 100%;
}

.image.main {
	display: block;
	margin: 0 0 3em 0;
	width: 100%;
}

.image.main img {
	width: 100%;
}

@media screen and (max-width: 736px) {
	.image.main {
		margin: 0 0 2em 0;
	}
}

/* Table */

.table-wrapper {
	-webkit-overflow-scrolling: touch;
	overflow-x: auto;
}

table tfoot {
	border-top: solid 2px #c9c9c9;
}

table.alt {
	border-collapse: separate;
}

table.alt tbody tr td {
	border: solid 1px #c9c9c9;
	border-left-width: 0;
	border-top-width: 0;
}

table.alt tbody tr td:first-child {
	border-left-width: 1px;
}

table.alt tbody tr:first-child td {
	border-top-width: 1px;
}

table.alt thead {
	border-bottom: 0;
}

table.alt tfoot {
	border-top: 0;
}

/* Button */

input[type="submit"],
input[type="reset"],
input[type="button"],
.button {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
	-moz-transition:
		background-color 0.2s ease-in-out,
		color 0.2s ease-in-out,
		box-shadow 0.2s ease-in-out;
	-webkit-transition:
		background-color 0.2s ease-in-out,
		color 0.2s ease-in-out,
		box-shadow 0.2s ease-in-out;
	-ms-transition:
		background-color 0.2s ease-in-out,
		color 0.2s ease-in-out,
		box-shadow 0.2s ease-in-out;
	transition:
		background-color 0.2s ease-in-out,
		color 0.2s ease-in-out,
		box-shadow 0.2s ease-in-out;
	background-color: transparent;
	border-radius: 4px;
	border: 0;
	box-shadow: inset 0 0 0 2px #585858;
	color: #585858;
	cursor: pointer;
	display: inline-block;
	font-size: 0.8em;
	font-weight: 900;
	height: 3.5em;
	line-height: 3.45em;
	overflow: hidden;
	padding: 0 1.25em 0 1.6em;
	text-align: center;
	text-decoration: none;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

input[type="submit"].icon:before,
input[type="reset"].icon:before,
input[type="button"].icon:before,
button.icon:before,
.button.icon:before {
	margin-right: 0.5em;
}

input[type="submit"].fit,
input[type="reset"].fit,
input[type="button"].fit,
button.fit,
.button.fit {
	width: 100%;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
	color: #f2849e;
	box-shadow: inset 0 0 0 2px #f2849e;
}

input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
	background-color: rgba(242, 132, 158, 0.1);
}

input[type="submit"].small,
input[type="reset"].small,
input[type="button"].small {
	font-size: 0.6em;
}

input[type="submit"].large,
input[type="reset"].large,
input[type="button"].large,
button.large,
.button.large {
	font-size: 1em;
}

input[type="submit"].primary,
input[type="reset"].primary,
input[type="button"].primary,
button.primary,
.button.primary {
	box-shadow: none;
	background-color: #585858;
	color: #ffffff;
}

input[type="submit"].primary:hover,
input[type="reset"].primary:hover,
input[type="button"].primary:hover,
button.primary:hover,
.button.primary:hover {
	background-color: #f2849e;
}

input[type="submit"].primary:active,
input[type="reset"].primary:active,
input[type="button"].primary:active,
button.primary:active,
.button.primary:active {
	background-color: #ee5f81;
}

input[type="submit"].disabled,
input[type="submit"]:disabled,
input[type="reset"].disabled,
input[type="reset"]:disabled,
input[type="button"].disabled,
input[type="button"]:disabled,
button.disabled,
button:disabled,
.button.disabled,
.button:disabled {
	pointer-events: none;
	opacity: 0.25;
}

/* Tiles */

.tiles {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	margin: -2.5em 0 0 -2.5em;
}

.tiles article {
	-moz-transition:
		-moz-transform 0.5s ease,
		opacity 0.5s ease;
	-webkit-transition:
		-webkit-transform 0.5s ease,
		opacity 0.5s ease;
	-ms-transition:
		-ms-transform 0.5s ease,
		opacity 0.5s ease;
	transition:
		transform 0.5s ease,
		opacity 0.5s ease;
	position: relative;
	width: calc(33.3333333333% - 2.5em);
	margin: 2.5em 0 0 2.5em;
}

.tiles article > .image {
	-moz-transition: -moz-transform 0.5s ease;
	-webkit-transition: -webkit-transform 0.5s ease;
	-ms-transition: -ms-transform 0.5s ease;
	transition: transform 0.5s ease;
	position: relative;
	display: block;
	width: 100%;
	border-radius: 4px;
	overflow: hidden;
}

.tiles article > .image img {
	display: block;
	width: 100%;
}

.tiles article > .image:before {
	pointer-events: none;
	-moz-transition:
		background-color 0.5s ease,
		opacity 0.5s ease;
	-webkit-transition:
		background-color 0.5s ease,
		opacity 0.5s ease;
	-ms-transition:
		background-color 0.5s ease,
		opacity 0.5s ease;
	transition:
		background-color 0.5s ease,
		opacity 0.5s ease;
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	z-index: 1;
	opacity: 0.8;
}

.tiles article > .image:after {
	pointer-events: none;
	-moz-transition: opacity 0.5s ease;
	-webkit-transition: opacity 0.5s ease;
	-ms-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cstyle%3Eline %7B stroke-width: 0.25px%3B stroke: %23ffffff%3B %7D%3C/style%3E%3Cline x1='0' y1='0' x2='100' y2='100' /%3E%3Cline x1='100' y1='0' x2='0' y2='100' /%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	opacity: 0.25;
	z-index: 2;
}

.tiles article > a {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-moz-transition:
		background-color 0.5s ease,
		-moz-transform 0.5s ease;
	-webkit-transition:
		background-color 0.5s ease,
		-webkit-transform 0.5s ease;
	-ms-transition:
		background-color 0.5s ease,
		-ms-transform 0.5s ease;
	transition:
		background-color 0.5s ease,
		transform 0.5s ease;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 1em;
	border-radius: 4px;
	border-bottom: 0;
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	z-index: 3;
}

.tiles article > a > :last-child {
	margin: 0;
}

.tiles article > a:hover {
	color: #ffffff;
}

.tiles article > a h2 {
	margin: 0;
}

.tiles article > a .content {
	-moz-transition:
		max-height 0.5s ease,
		opacity 0.5s ease;
	-webkit-transition:
		max-height 0.5s ease,
		opacity 0.5s ease;
	-ms-transition:
		max-height 0.5s ease,
		opacity 0.5s ease;
	transition:
		max-height 0.5s ease,
		opacity 0.5s ease;
	width: 100%;
	max-height: 0;
	line-height: 1.5;
	margin-top: 0.35em;
	opacity: 0;
}

.tiles article > a .content > :last-child {
	margin-bottom: 0;
}

.tiles article.style1 > .image:before {
	background-color: #f2849e;
}

.tiles article.style2 > .image:before {
	background-color: #7ecaf6;
}

.tiles article.style3 > .image:before {
	background-color: #7bd0c1;
}

.tiles article.style4 > .image:before {
	background-color: #c75b9b;
}

.tiles article.style5 > .image:before {
	background-color: #ae85ca;
}

.tiles article.style6 > .image:before {
	background-color: #8499e7;
}

body:not(.is-touch) .tiles article:hover > .image {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

body:not(.is-touch) .tiles article:hover > .image:before {
	background-color: #333333;
	opacity: 0.35;
}

body:not(.is-touch) .tiles article:hover > .image:after {
	opacity: 0;
}

body:not(.is-touch) .tiles article:hover .content {
	max-height: 15em;
	opacity: 1;
}

* + .tiles {
	margin-top: 2em;
}

body.is-preload .tiles article {
	-moz-transform: scale(0.9);
	-webkit-transform: scale(0.9);
	-ms-transform: scale(0.9);
	transform: scale(0.9);
	opacity: 0;
}

body.is-touch .tiles article .content {
	max-height: 15em;
	opacity: 1;
}

@media screen and (max-width: 1280px) {
	.tiles {
		margin: -1.25em 0 0 -1.25em;
	}

	.tiles article {
		width: calc(33.3333333333% - 1.25em);
		margin: 1.25em 0 0 1.25em;
	}
}

@media screen and (max-width: 980px) {
	.tiles {
		margin: -2.5em 0 0 -2.5em;
	}

	.tiles article {
		width: calc(50% - 2.5em);
		margin: 2.5em 0 0 2.5em;
	}
}

@media screen and (max-width: 736px) {
	.tiles {
		margin: -1.25em 0 0 -1.25em;
	}

	.tiles article {
		width: calc(50% - 1.25em);
		margin: 1.25em 0 0 1.25em;
	}

	.tiles article:hover > .image {
		-moz-transform: scale(1);
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}

@media screen and (max-width: 480px) {
	.tiles {
		margin: 0;
	}

	.tiles article {
		width: 100%;
		margin: 1.25em 0 0 0;
	}
}

/* Header */

#header {
	padding: 8em 0 0.1em 0;
}

#header .logo {
	display: block;
	border-bottom: 0;
	color: inherit;
	font-weight: 900;
	margin: 0 0 2.5em 0;
	text-decoration: none;
	text-transform: uppercase;
	display: inline-block;
}

#header .logo > * {
	display: inline-block;
	vertical-align: middle;
}

#header .logo .symbol {
	margin-right: 0.65em;
}

#header .logo .symbol img {
	display: block;
	width: 2em;
	height: 2em;
}

#header nav {
	position: fixed;
	right: 2em;
	top: 2em;
	z-index: 10000;
}

#header nav ul {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

#header nav ul li {
	display: block;
	padding: 0;
}

#header nav ul li a {
	display: block;
	position: relative;
	height: 3em;
	line-height: 3em;
	padding: 0 1.5em;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 4px;
	border: 0;
	font-size: 0.8em;
	font-weight: 900;
	text-transform: uppercase;
}

#header nav ul li a[href="#menu"] {
	-webkit-tap-highlight-color: transparent;
	width: 4em;
	text-indent: 4em;
	font-size: 1em;
	overflow: hidden;
	padding: 0;
	white-space: nowrap;
}

#header nav ul li a[href="#menu"]:before,
#header nav ul li a[href="#menu"]:after {
	-moz-transition: opacity 0.2s ease;
	-webkit-transition: opacity 0.2s ease;
	-ms-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2em 2em;
}

#header nav ul li a[href="#menu"]:before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cstyle%3Eline %7B stroke-width: 8px%3B stroke: %23f2849e%3B %7D%3C/style%3E%3Cline x1='0' y1='25' x2='100' y2='25' /%3E%3Cline x1='0' y1='50' x2='100' y2='50' /%3E%3Cline x1='0' y1='75' x2='100' y2='75' /%3E%3C/svg%3E");
	opacity: 0;
}

#header nav ul li a[href="#menu"]:after {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cstyle%3Eline %7B stroke-width: 8px%3B stroke: %23585858%3B %7D%3C/style%3E%3Cline x1='0' y1='25' x2='100' y2='25' /%3E%3Cline x1='0' y1='50' x2='100' y2='50' /%3E%3Cline x1='0' y1='75' x2='100' y2='75' /%3E%3C/svg%3E");
	opacity: 1;
}

#header nav ul li a[href="#menu"]:hover:before {
	opacity: 1;
}

#header nav ul li a[href="#menu"]:hover:after {
	opacity: 0;
}

@media screen and (max-width: 736px) {
	#header {
		padding: 4em 0 0.1em 0;
	}

	#header nav {
		right: 0.5em;
		top: 0.5em;
	}

	#header nav ul li a[href="#menu"]:before,
	#header nav ul li a[href="#menu"]:after {
		background-size: 1.5em 1.5em;
	}
}

/* Menu */

#wrapper {
	-moz-transition: opacity 0.45s ease;
	-webkit-transition: opacity 0.45s ease;
	-ms-transition: opacity 0.45s ease;
	transition: opacity 0.45s ease;
	opacity: 1;
}

#menu {
	-moz-transform: translateX(22em);
	-webkit-transform: translateX(22em);
	-ms-transform: translateX(22em);
	transform: translateX(22em);
	-moz-transition:
		-moz-transform 0.45s ease,
		opacity 0.45s ease,
		visibility 0.45s ease;
	-webkit-transition:
		-webkit-transform 0.45s ease,
		opacity 0.45s ease,
		visibility 0.45s ease;
	-ms-transition:
		-ms-transform 0.45s ease,
		opacity 0.45s ease,
		visibility 0.45s ease;
	transition:
		transform 0.45s ease,
		opacity 0.45s ease,
		visibility 0.45s ease;
	position: fixed;
	top: 0;
	right: 0;
	width: 22em;
	max-width: 80%;
	height: 100%;
	-webkit-overflow-scrolling: touch;
	overflow-y: auto;
	background: #585858;
	color: #ffffff;
	cursor: default;
	visibility: hidden;
	z-index: 10002;
}

#menu > .inner {
	-moz-transition: opacity 0.45s ease;
	-webkit-transition: opacity 0.45s ease;
	-ms-transition: opacity 0.45s ease;
	transition: opacity 0.45s ease;
	-webkit-overflow-scrolling: touch;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 2.75em;
	opacity: 0;
	overflow-y: auto;
}

#menu > .inner > ul {
	list-style: none;
	margin: 0 0 1em 0;
	padding: 0;
}

#menu > .inner > ul > li {
	padding: 0;
	border-top: solid 1px rgba(255, 255, 255, 0.15);
}

#menu > .inner > ul > li a {
	display: block;
	padding: 1em 0;
	line-height: 1.5;
	border: 0;
	color: inherit;
}

#menu > .inner > ul > li:first-child {
	border-top: 0;
	margin-top: -1em;
}

#menu > .close {
	-moz-transition:
		opacity 0.45s ease,
		-moz-transform 0.45s ease;
	-webkit-transition:
		opacity 0.45s ease,
		-webkit-transform 0.45s ease;
	-ms-transition:
		opacity 0.45s ease,
		-ms-transform 0.45s ease;
	transition:
		opacity 0.45s ease,
		transform 0.45s ease;
	-moz-transform: scale(0.25) rotate(180deg);
	-webkit-transform: scale(0.25) rotate(180deg);
	-ms-transform: scale(0.25) rotate(180deg);
	transform: scale(0.25) rotate(180deg);
	-webkit-tap-highlight-color: transparent;
	display: block;
	position: absolute;
	top: 2em;
	left: -6em;
	width: 6em;
	text-indent: 6em;
	height: 3em;
	border: 0;
	font-size: 1em;
	opacity: 0;
	overflow: hidden;
	padding: 0;
	white-space: nowrap;
}

#menu > .close:before,
#menu > .close:after {
	-moz-transition: opacity 0.2s ease;
	-webkit-transition: opacity 0.2s ease;
	-ms-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2em 2em;
}

#menu > .close:before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cstyle%3Eline %7B stroke-width: 8px%3B stroke: %23f2849e%3B %7D%3C/style%3E%3Cline x1='15' y1='15' x2='85' y2='85' /%3E%3Cline x1='85' y1='15' x2='15' y2='85' /%3E%3C/svg%3E");
	opacity: 0;
}

#menu > .close:after {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cstyle%3Eline %7B stroke-width: 8px%3B stroke: %23585858%3B %7D%3C/style%3E%3Cline x1='15' y1='15' x2='85' y2='85' /%3E%3Cline x1='85' y1='15' x2='15' y2='85' /%3E%3C/svg%3E");
	opacity: 1;
}

#menu > .close:hover:before {
	opacity: 1;
}

#menu > .close:hover:after {
	opacity: 0;
}

@media screen and (max-width: 736px) {
	#menu {
		-moz-transform: translateX(16.5em);
		-webkit-transform: translateX(16.5em);
		-ms-transform: translateX(16.5em);
		transform: translateX(16.5em);
		width: 16.5em;
	}

	#menu > .inner {
		padding: 2.75em 1.5em;
	}

	#menu > .close {
		top: 0.5em;
		left: -4.25em;
		width: 4.25em;
		text-indent: 4.25em;
	}

	#menu > .close:before,
	#menu > .close:after {
		background-size: 1.5em 1.5em;
	}
}

body.is-menu-visible #wrapper {
	pointer-events: none;
	cursor: default;
	opacity: 0.25;
}

body.is-menu-visible #menu {
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	visibility: visible;
}

body.is-menu-visible #menu > * {
	opacity: 1;
}

body.is-menu-visible #menu .close {
	-moz-transform: scale(1) rotate(0deg);
	-webkit-transform: scale(1) rotate(0deg);
	-ms-transform: scale(1) rotate(0deg);
	transform: scale(1) rotate(0deg);
	opacity: 1;
}

/* Main */

#main {
	padding-bottom: 6em;
}
@media screen and (max-width: 736px) {
	#main {
		padding-bottom: 4em;
	}
}

/* Footer */

#footer {
	padding: 5em 0 6em 0;
}

#footer > .inner {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-moz-flex-direction: row;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
}

#footer > .inner > * > :last-child {
	margin-bottom: 0;
}

#footer > .inner section:nth-child(1) {
	width: calc(66% - 2.5em);
	margin-right: 2.5em;
}

#footer > .inner section:nth-child(2) {
	width: calc(33% - 2.5em);
	margin-left: 2.5em;
}

#footer > .inner .copyright {
	width: 100%;
	padding: 0;
	margin-top: 5em;
	list-style: none;
	font-size: 0.8em;
	color: rgba(88, 88, 88, 0.5);
}

#footer > .inner .copyright a {
	color: inherit;
}

#footer > .inner .copyright li {
	display: inline-block;
	border-left: solid 1px rgba(88, 88, 88, 0.15);
	line-height: 1;
	padding: 0 0 0 1em;
	margin: 0 0 0 1em;
}

#footer > .inner .copyright li:first-child {
	border-left: 0;
	padding-left: 0;
	margin-left: 0;
}

@media screen and (max-width: 1280px) {
	#footer {
		padding: 5em 0 3em 0;
	}

	#footer > .inner section:nth-child(1) {
		width: calc(66% - 1.25em);
		margin-right: 1.25em;
	}

	#footer > .inner section:nth-child(2) {
		width: calc(33% - 1.25em);
		margin-left: 1.25em;
	}
}

@media screen and (max-width: 980px) {
	#footer > .inner section:nth-child(1) {
		width: 66%;
		margin-right: 0;
	}

	#footer > .inner section:nth-child(2) {
		width: calc(33% - 2.5em);
		margin-left: 2.5em;
	}
}

@media screen and (max-width: 736px) {
	#footer {
		padding: 3em 0 1em 0;
	}

	#footer > .inner {
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	#footer > .inner section:nth-child(1) {
		width: 100%;
		margin-right: 0;
		margin: 3em 0 0 0;
	}

	#footer > .inner section:nth-child(2) {
		-moz-order: -1;
		-webkit-order: -1;
		-ms-order: -1;
		order: -1;
		width: 100%;
		margin-left: 0;
	}

	#footer > .inner .copyright {
		margin-top: 3em;
	}
}

@media screen and (max-width: 480px) {
	#footer > .inner .copyright {
		margin-top: 3em;
	}

	#footer > .inner .copyright li {
		border-left: 0;
		padding-left: 0;
		margin: 0.75em 0 0 0;
		display: block;
		line-height: inherit;
	}

	#footer > .inner .copyright li:first-child {
		margin-top: 0;
	}
}

/* Wrapper */

#wrapper > * > .inner {
	width: 100%;
	max-width: 68em;
	margin: 0 auto;
	padding: 0 2.5em;
}

@media screen and (max-width: 736px) {
	#wrapper > * > .inner {
		padding: 0 1.25em;
	}
}
.notFoundImg {max-height: 225px;}

/* ============================================
   Global Empty States
   ============================================ */
@keyframes emptyFloatSoft {
	from {
		transform: translateY(3px);
	}
	50% {
		transform: translateY(-3px);
	}
	to {
		transform: translateY(3px);
	}
}

@keyframes emptyFadeInSoft {
	from {
		opacity: 0;
		transform: translateY(10px) scale(0.985);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.emptySec {
	min-height: 260px;
	padding: 2.5rem 1.75rem;
	border-radius: 16px;
	border: 1px solid #e5e7eb;
	background:
		radial-gradient(circle at top, rgba(96, 85, 205, 0.06), transparent 55%),
		#ffffff;
	box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
	gap: 0.75rem;
	animation: emptyFadeInSoft 0.55s ease-out both;
}

.emptySec img.banner_img,
.emptySec img.notFoundImg {
	max-width: 260px;
	width: 100%;
	height: auto;
	object-fit: contain;
	opacity: 0.95;
	filter: drop-shadow(0 14px 30px rgba(15, 23, 42, 0.12));
	animation: emptyFloatSoft 7s ease-in-out infinite;
}

.emptySec .h5,
.emptySec h5,
.emptySec h4,
.emptySec h3 {
	font-weight: 600;
	color: var(--text-base-color, #000d50);
	margin-bottom: 0.25rem;
}

.emptySec p {
	color: #6b7280;
	max-width: 420px;
	font-size: 0.95rem;
	margin-bottom: 0;
}

.emptySec p.mx-auto {
	margin-inline: auto;
}

/* ============================================
   FAQ / Accordion Styling (modern, clean)
   Applied to shared accordion partial
   ============================================ */
.faq-accordion {
	/* max-width: 720px; */
	margin-inline: auto;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: #ffffff;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
	overflow: hidden;
}

.faq-accordion .accordion-item {
	border-bottom: 1px solid #e5e7eb;
}

.faq-accordion .accordion-item:last-child {
	border-bottom: none;
}

.faq-accordion .accordion-button {
	padding: 1.1rem 1.5rem;
	font-size: 0.95rem;
	font-weight: 500;
	color: #111827;
	background: transparent;
	box-shadow: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.faq-accordion .accordion-button:hover {
	background-color: #f9fafb;
}
.faq-accordion .accordion-button:focus {
	outline: none !important;
	box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
	background-color: #f9fafb;
	color: #111827;
}

.faq-accordion .q-label {
	color: #dc2626;
	font-weight: 600;
	font-size: 0.85rem;
	margin-right: 0.35rem;
}

.faq-accordion .accordion-body {
	padding: 0 1.5rem 1.25rem;
	font-size: 0.9rem;
	line-height: 1.7;
	color: #4b5563;
}

.faq-accordion .accordion-body .a-label {
	color: #6366f1;
	font-weight: 500;
	margin-right: 0.35rem;
}

/* Chevron animation – reuse Bootstrap's ::after indicator */
.faq-accordion .accordion-button::after {
	width: 1.1rem;
	height: 1.1rem;
	background-image: none;
	border-radius: 999px;
	color: #6b7280;
	content: "";
	border: 1px solid transparent;
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-position: center;
	mask-size: 16px 16px;
	-webkit-mask-size: 16px 16px;
	background-color: #6b7280;
	transform-origin: center;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease, border-color 0.2s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
	transform: rotate(180deg);
	background-color: #4b5563;
	/* border-color: #e5e7eb; */
}

@media screen and (max-width: 575.98px) {
	.faq-accordion {
		border-radius: 10px;
		margin-inline: 0;
	}

	.faq-accordion .accordion-button {
		padding: 0.9rem 1.1rem;
		font-size: 0.9rem;
	}

	.faq-accordion .accordion-body {
		padding: 0 1.1rem 1rem;
		font-size: 0.875rem;
	}
}

@media screen and (max-width: 576px) {
	.emptySec {
		min-height: 220px;
		padding: 2rem 1.25rem;
		border-radius: 12px;
	}

	.emptySec img.banner_img,
	.emptySec img.notFoundImg {
		max-width: 220px;
	}

	.emptySec .h5,
	.emptySec h5,
	.emptySec h4,
	.emptySec h3 {
		font-size: 0.95rem;
	}

	.emptySec p {
		font-size: 0.85rem;
	}
}

/* ============================================
   NEW IPO CARD DESIGN
   ============================================ */
.ipoListCard .ipo-card-new,
.ipo-card-new {
	cursor: pointer;
	--bs-card-border-color: #fff;
	color: var(--text-base-color);
	box-shadow: 0px 1px 1px 0px #0000001a;
	transition: all 0.3s ease;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	padding: 0;
	background: #fff;
}

.ipo-card-new .card-body {
	padding: 12px 16px;
}

.ipo-card-new:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.ipo-card-new.deactive {
	--bs-card-bg: #f2f2f2;
	--bs-card-border-color: #f2f2f2;
	opacity: 0.7;
}

/* 1️⃣ Top Accent Bar */
.ipo-card-accent-bar {
	height: 3px;
	background: linear-gradient(90deg, #000D50 0%, #6366f1 100%);
	width: 100%;
}

/* Header: Single row, 3 sections */
.ipo-card-header {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 12px 16px;
	min-height: 66px;
}

/* Left Section: Logo */
.ipo-card-header-left {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.ipo-card-logo {
	width: 50px;
	height: 50px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 6px;
	padding: 4px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.ipo-card-logo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* Middle Section: Name & Date (LEFT-ALIGNED) */
.ipo-card-header-middle {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 4px;
}

.ipo-card-name {
	font-size: 1rem;
	font-weight: 500;
	margin: 0;
	line-height: 1.3;
	color: var(--text-base-color);
	text-align: left;
	display: block;
	max-height: 1.3em;
	overflow: hidden;
	text-overflow: clip;
	word-break: normal;
	overflow-wrap: normal;
}

.ipo-card-date {
	font-size: 0.75rem;
	color: #6b7280;
	line-height: 1.2;
	margin: 0;
	text-align: left;
}

/* Right Section: Badges & GMP (RIGHT-ALIGNED) */
.ipo-card-header-right {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	align-self: flex-start;
	gap: 6px;
	padding-top: 4px;
}

.ipo-card-badges-row {
	display: flex;
	gap: 6px;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	width: 100%;
	align-self: center;
}

.ipo-card-market-badge {
	font-size: 0.6875rem;
	font-weight: 600;
	padding: 0.25rem 0.6rem;
	border-radius: 16px;
	background-color: var(--color-glow-purple);
	color: var(--color-tertiary);
	white-space: nowrap;
}

.ipo-card-market-badge[data-ipotype="Mainboard"] {
	background-color: #5e783d;
	color: #ffffff;
}

.ipo-card-market-badge[data-ipotype="BSE SME"] {
	background-color: #1b387a;
	color: #fff;
}

.ipo-card-status-badge {
	font-size: 0.6875rem;
	font-weight: 600;
	padding: 0.25rem 0.6rem;
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	white-space: nowrap;
}

.ipo-card-status-badge i {
	font-size: 0.5rem;
}

.ipo-card-status-badge.pulse {
	animation: pulse-subtle 2s ease-in-out infinite;
}

.ipo-card-status-badge.cancelled {
	background-color: #fee2e2;
	color: #991b1b;
}

/* DEPRECATED CSS: .ipo-card-gmp-row { */
/* DEPRECATED CSS: 	display: flex; */
/* DEPRECATED CSS: 	justify-content: flex-end; */
/* DEPRECATED CSS: 	width: 100%; */
/* DEPRECATED CSS: } */

.ipo-card-gmp-pill {
	font-size: 0.6875rem;
	font-weight: 600;
	padding: 0.25rem 0.6rem;
	border-radius: 16px;
	white-space: nowrap;
}

.ipo-card-gmp-pill.positive {
	background-color: #d1fae5;
	color: #065f46;
}

.ipo-card-gmp-pill.negative {
	background-color: #fee2e2;
	color: #991b1b;
}

@keyframes pulse-subtle {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.8; }
}

/* Body: Top Row - Four sections */
.ipo-card-body-top-row {
	display: flex;
	gap: 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid #e5e7eb;
	margin-bottom: 12px;
	flex-wrap: wrap;
}

.ipo-card-body-stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1 1 0;
	min-width: 0;
}

.ipo-card-body-label {
	font-size: 0.625rem;
	color: #6b7280;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1;
}

.ipo-card-body-value {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text-base-color);
	line-height: 1.2;
}

/* Body: Second Row - 40% / 60% split */
.ipo-card-body-second-row {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.ipo-card-body-left-block {
	flex: 0 0 35%;
	max-width: 35%;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ipo-card-body-right-block {
	flex: 0 0 65%;
	max-width: 65%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

/* DEPRECATED CSS: .ipo-card-secondary-info { */
/* DEPRECATED CSS: 	display: flex; */
/* DEPRECATED CSS: 	flex-direction: column; */
/* DEPRECATED CSS: 	gap: 2px; */
/* DEPRECATED CSS: } */

.ipo-card-secondary-label {
	font-size: 0.6875rem;
	color: #6b7280;
	font-weight: 500;
	line-height: 1.2;
}

/* DEPRECATED CSS: .ipo-card-secondary-value { */
/* DEPRECATED CSS: 	font-size: 0.8125rem; */
/* DEPRECATED CSS: 	font-weight: 600; */
/* DEPRECATED CSS: 	color: var(--text-base-color); */
/* DEPRECATED CSS: 	line-height: 1.3; */
/* DEPRECATED CSS: } */

.ipo-card-actions-group {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: flex-end;
	width: 100%;
}

.ipo-card-actions-group .viewBtn,
.ipo-card-actions-group .applyBtn {
	font-size: 0.8125rem;
	font-weight: 600;
	padding: 0.4rem 1rem;
	border-radius: 6px;
	min-width: 70px;
}

/* Footer: Informational Text */
.ipo-card-footer {
	padding: 6px 16px;
	border-top: 1px solid #e5e7eb;
	background: #f9fafb;
	position: relative;
	min-height: 28px;
}

.ipo-card-footer-text {
	font-size: 0.6875rem;
	color: #6b7280;
	line-height: 1.2;
	margin: 0;
	display: flex;
	align-items: flex-start;
	gap: 5px;
}

.ipo-card-footer-messages .ipo-card-footer-text {
	opacity: 0;
	position: absolute;
	top: 0px;
	left: 0px;
	right: 16px;
	transition: opacity 0.5s ease-in-out;
}

.ipo-card-footer-messages .ipo-card-footer-text.active {
	opacity: 1;
	position: relative;
}

.ipo-card-footer-text .messageIcon {
	color: var(--color-warning, #ffaf20);
	font-size: 0.6875rem;
	flex-shrink: 0;
	margin-top: 0;
}

.ipo-card-footer-messages {
	position: relative;
}

/* Responsive Design - 3:5:4 ratio for medium screens */
@media screen and (min-width: 990px) and (max-width: 1150px) {
	.ipo-card-header-left {
		flex: 0 0 25%;
		max-width: 25%;
	}
	
	.ipo-card-header-middle {
		flex: 0 0 41.67%;
		max-width: 41.67%;
	}
	
	.ipo-card-header-right {
		flex: 0 0 33.33%;
		max-width: 33.33%;
	}
	.ipo-card-badges-row{
		justify-content: flex-start;
	}
}

/* Responsive Design - Maintain Same Structure */
@media screen and (max-width: 768px) {
	.ipo-card-header {
		padding: 10px 12px;
		gap: 12px;
		min-height: auto;
	}
	
	.ipo-card-logo {
		width: 45px;
		height: 45px;
	}
	
	.ipo-card-name {
		font-size: 0.9375rem;
	}
	
	.ipo-card-date {
		font-size: 0.6875rem;
	}
	
	.ipo-card-badges-row {
		gap: 4px;
		justify-content: flex-end;
	}
	
	.ipo-card-market-badge,
	.ipo-card-status-badge {
		font-size: 0.625rem;
		padding: 0.2rem 0.5rem;
		max-width: 100%;
	}
	
	.ipo-card-status-badge i {
		font-size: 0.45rem;
	}
	
	.ipo-card-gmp-pill {
		font-size: 0.625rem;
		padding: 0.2rem 0.5rem;
	}
	
	.ipo-card-body-top-row {
		gap: 12px;
		padding-bottom: 10px;
		margin-bottom: 10px;
	}
	
	.ipo-card-body-label {
		font-size: 0.5625rem;
	}
	
	.ipo-card-body-value {
		font-size: 0.8125rem;
	}
	
	.ipo-card-body-second-row {
		gap: 12px;
	}
	
	.ipo-card-body-left-block {
		flex: 0 0 35%	;
		max-width: 35%;
	}
	
	.ipo-card-body-right-block {
		flex: 0 0 65%;
		max-width: 65%;
	}
	
	.ipo-card-secondary-label {
		font-size: 0.625rem;
	}
	
/* DEPRECATED CSS: 	.ipo-card-secondary-value { */
/* DEPRECATED CSS: 		font-size: 0.75rem; */
/* DEPRECATED CSS: 	} */
	
	.ipo-card-actions-group .viewBtn,
	.ipo-card-actions-group .applyBtn {
		font-size: 0.75rem;
		padding: 0.35rem 0.75rem;
		min-width: 65px;
	}
	
	.ipo-card-footer {
		padding: 8px 12px;
	}
	
	.ipo-card-footer-text {
		font-size: 0.6875rem;
	}
}

@media screen and (max-width: 480px) {
	.ipo-card-header {
		padding: 8px 10px;
		gap: 10px;
	}
	
	.ipo-card-logo {
		width: 40px;
		height: 40px;
	}
	
	.ipo-card-name {
		font-size: 0.875rem;
	}
	
	.ipo-card-date {
		font-size: 0.625rem;
	}
	
	.ipo-card-badges-row {
		gap: 3px;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
	
	.ipo-card-market-badge,
	.ipo-card-status-badge {
		font-size: 0.5625rem;
		padding: 0.15rem 0.4rem;
		max-width: 100%;
		flex-shrink: 1;
	}
	
	.ipo-card-status-badge i {
		font-size: 0.4rem;
	}
	
	.ipo-card-gmp-pill {
		font-size: 0.5625rem;
		padding: 0.15rem 0.4rem;
	}
	
	.ipo-card-body-top-row {
		gap: 8px;
		padding-bottom: 8px;
		margin-bottom: 8px;
	}
	.ipo-card-body-label {
		font-size: 0.5rem;
	}
	
	.ipo-card-body-value {
		font-size: 0.75rem;
	}
	
	.ipo-card-body-second-row {
		gap: 10px;
	}
	
	.ipo-card-body-left-block {
		flex: 0 0 35%;
		max-width: 35%;
	}
	
	.ipo-card-body-right-block {
		flex: 0 0 65%;
		max-width: 65%;
	}
	
	.ipo-card-secondary-label {
		font-size: 0.5625rem;
	}
	
/* DEPRECATED CSS: 	.ipo-card-secondary-value { */
/* DEPRECATED CSS: 		font-size: 0.6875rem; */
/* DEPRECATED CSS: 	} */
	
	.ipo-card-actions-group {
		gap: 6px;
	}
	
	.ipo-card-actions-group .viewBtn,
	.ipo-card-actions-group .applyBtn {
		font-size: 0.6875rem;
		padding: 0.3rem 0.6rem;
		min-width: 60px;
	}
	
	.ipo-card-footer {
		padding: 6px 10px;
	}
	
	.ipo-card-footer-text {
		font-size: 0.625rem;
	}
}
/* Legacy IPO Card Styles */
.ipoListCard .card {
	--bs-card-border-color: #fff;
	color: var(--text-base-color);
	box-shadow: 0px 1px 1px 0px #0000001a;
	transition: all 0.5s ease;
}

.ipoListCard .card.deactive {
	--bs-card-bg: #f2f2f2;
	--bs-card-border-color: #f2f2f2;
}

.ipoListCard .card:hover {
	box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.5s ease;
}

.ipoListCard .card-body {
	row-gap: 10px;
	column-gap: 40px;
}

.ipoListCard .ipo_content {
	column-gap: 20px;
}

.ipoListCard .ipo_cover {
	width: 120px;
	margin-right: 20px;
	margin-bottom: 10px;
}

.ipoListCard .ipo_cover img {
	max-width: 100%;
	max-height: 80px;
	object-fit: cover;
}

.ipoListCard .ipo_rating {
	align-self: center;
	margin-right: 10px;
}

.ipoListCard .ipo_rating i {
	color: var(--color-warning, #ffaf20);
}

.ipoListCard .badge_span {
	font-size: 12px;
	font-weight: 600;
	padding: 5px 10px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.ipoListCard span[data-role="status"] {
	--bgColor: var(--color-success-light);
	--textColor: var(--color-success);
	background-color: var(--bgColor);
	color: var(--textColor);
}

.ipoListCard span[data-role="type"],
.ipoListCard .viewBtn {
	background-color: var(--color-glow-purple);
	border-radius: 4px;
	color: var(--color-tertiary);
}

.ipoListCard span[data-ipotype="Mainboard"] {
	background-color: #5e783d; 
	color: #ffffff;
}

.ipoListCard span[data-ipotype="BSE SME"] {
	background-color: #1b387a; 
	color: #fff;
}

.ipoListCard span[data-role="expire_premium"] {
	color: var(--color-increment);
}

.ipoListCard .applyBtn {
	--bs-btn-border-radius: 4px;
	--bs-btn-bg: var(--color-primary);
	--bs-btn-color: var(--color-primary-contrast);
	--bs-btn-hover-color: var(--color-primary-contrast);
	--bs-btn-active-bg: var(--color-primary-contrast);
	--bs-btn-active-border-color: var(--color-primary);
	--bs-btn-hover-bg: var(--color-primary-active);
	--bs-btn-hover-color: var(--color-primary-contrast);
}

.ipoListCard .applyBtn,
.ipoListCard .viewBtn {
	min-width: 80px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	--bs-btn-hover-border-color: var(--color-primary-active);
	--bs-btn-active-color: var(--color-primary);
	--bs-btn-active-border-color: var(--color-primary);
}

.ipoListCard .shareBtn {
	background-color: var(--color-warning-bg);
	color: var(--color-warning-base);
	cursor: pointer;
}

.ipoListCard .label {
	font-size: 14px;
	color: #888;
	margin-bottom: 5px;
}

.ipoListCard .label + span {
	font-size: 14px;
}

.ipoListCard .otherStatus { 
	gap: 1rem; 
}

.ipoListCard .data_box { 
	padding-right: 0.5rem; 
}

.ipoListCard .message_sec {
	border-top: 1px solid #f2f2f2;
	padding-top: 10px;
	font-size: 12px;
	color: #252525;
	font-weight: 400;
}

.ipoListCard .messageIcon {
	color: var(--color-warning, #ffaf20);
}

.ipoListCard .aboutCompany {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 2;
	font-size: 12px;
	margin-bottom: 0px;
	margin-right: 0px;
}

.ipoListCard .demo_card {
	color: #d3d3d3;
}

.ipoListCard .demo_card .ipo_cover {
	min-height: 50px;
}

.ipoListCard .demo_card .badge_span {
	min-width: 50px;
}

.ipoListCard .demo_card .data_box {
	flex: 0 0 120px;
}
@media screen and (max-width: 736px) {
	.ipoListCard .applyBtn , .ipoListCard .viewBtn{font-size: 12px; }
}

.addsList {
	height: 100%;
}

.addsList .heading {
	font-size: clamp(14px, calc(0.9em + 0.3vw), 18px);
	font-weight: 500; 
	margin-bottom: 0.5rem;
}

.addsList img {
	margin-bottom: 1rem;
}
.sideBox {
	width: 100%;
	min-height: 211px;
	max-width: 400px;
	border-radius: 6px;
	box-shadow: 0px 1px 0.854567289352417px 0px #0000001a;
	display: inline-grid;
	padding: 10px;
	background-color: #fff;
	--btn-color: var(--color-primary);
	--btn-color-active: var(--color-primary-active);
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	margin-inline: auto;
	margin-bottom: 0.5rem;
}

.sideBox .knowMoreBtn {
	--bs-btn-font-weight: 600;
	--bs-btn-font-family: "Poppins", sans-serif;
	margin-top: auto;
}

.sideBox .knowMoreBtn:not(.btn-primary) {
	--bs-btn-color: var(--color-primary-contrast);
	--bs-btn-bg: var(--btn-color);
	--bs-btn-border-color: var(--btn-color);
	--bs-btn-active-color: var(--btn-color-active);
	--bs-btn-active-border-color: var(--color-primary-active);
	--bs-btn-active-bg: var(--color-primary-active);
	--bs-btn-hover-color: var(--color-primary-contrast);
	--bs-btn-hover-border-color: var(--btn-color-active);
	--bs-btn-hover-bg: var(--btn-color-active);
}

/* ad cards dark mode */
body.ipoji-dark-mode .sideBox {
	background-color: #1e1e2e;
	color: #e8eaed;
	box-shadow: 0px 1px 0.854567289352417px 0px rgba(0, 0, 0, 0.45);
	border: 1px solid #2f2f45;
}

body.ipoji-dark-mode .addsList .heading {
	color: #e8eaed;
}

body.ipoji-dark-mode .sideBox .knowMoreBtn:not(.btn-primary) {
	--bs-btn-color: #ffffff;
	--bs-btn-bg: #6055cd;
	--bs-btn-border-color: #6055cd;
	--bs-btn-hover-color: #ffffff;
	--bs-btn-hover-bg: #4f46c9;
	--bs-btn-hover-border-color: #4f46c9;
	--bs-btn-active-color: #ffffff;
	--bs-btn-active-bg: #4338ca;
	--bs-btn-active-border-color: #4338ca;
}
body.ipoji-dark-mode .sideBox .add-image {
	filter: brightness(0.8) ;
}

/* broker card */
.broker_card.card {
	--bs-card-border-color: #fff;
	color: var(--text-base-color);
	box-shadow: 0px 1px 1px 0px #0000001a;
	transition: all 0.5s ease;
	width: 100%;
}

.broker_card.card:hover {
	box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1), 0 5px 15px -3px rgba(0, 0, 0, 0.1);
	transition: all 0.5s ease;
}

.broker_card .top_row { 
	display: flex; 
	align-items: center; 
	column-gap: 10px; 
}

.broker_card .ipo_content { 
	column-gap: 20px; 
	row-gap: 10px; 
}

.broker_card .ipo_cover {
	grid-row: 1 / -1;
}

.broker_card .ipo_cover img {
	max-width: 100%;
	width: 60px;
	max-height: 60px;
}

.broker_card .otherStatus { 
	grid-column: 1 / -1; 
}

.broker_card .badge_span {
	font-size: 14px;
	font-weight: 600;
	padding: 5px 10px;
	border-radius: 4px;
	text-align: center;
	background-color: #eee;
	color: #c4834a;
}

.broker_card span[data-role="equity"] {
	background-color: #f4f2de80; 
	color: #d39800;
}

.broker_card span[data-role="currency"] {
	background-color: #f2efde; 
	color: #646103;
}

.broker_card span[data-role="options"] {
	background-color: #eff8fc; 
	color: #4a85c4;
}

.broker_card .btn {
	--bs-btn-border-radius: 4px;
	--bs-btn-font-weight: 600;
	--bs-btn-font-size: 14px;
	min-width: 80px;
}

.broker_card span[data-role="futures"] {
	color: var(--color-success);
	background-color: #def4e680;
}

.broker_card .label {
	font-size: 14px; 
	color: #888; 
	margin-bottom: 5px;
}

.broker_card .label + span { 
	font-size: 14px; 
	font-weight: 600; 
}

.broker_card .otherStatus { 
	row-gap: 1rem; 
}

.broker_card .data_box { 
	padding-right: 20px; 
	max-width: 130px; 
	flex: 1 0 130px; 
}

.broker_card .rateIcon { 
	color: var(--color-warning, #ffaf20); 
}

.broker_card .top_row::after,
.broker_card .top_row::before { 
	clear: both; 
	content: ""; 
	display: table; 
}


.broker_card .demo_card {
	color: #d3d3d3;
}

.broker_card .demo_card .ipo_cover { 
	min-height: 50px; 
}

.broker_card .demo_card .badge_span { 
	min-width: 50px; 
}

.broker_card .demo_card .data_box { 
	flex: 0 0 120px; 
}
.btn.filledPrimaryBtn, .filledPrimaryBtn {
	--bs-btn-bg: var(--color-primary);
	--bs-btn-color: var(--color-primary-contrast);
	--bs-btn-active-bg: var(--color-primary-active);
	--bs-btn-active-color: var(--color-primary-contrast);
	--bs-btn-active-border-color: var(--color-primary-active);
	--bs-btn-hover-bg: var(--color-primary);
	--bs-btn-hover-color: var(--color-primary-contrast);
	--bs-btn-hover-border-color: var(--color-primary);
	--bs-btn-disabled-bg: var(--color-primary-deactive);
	--bs-btn-disabled-border-color: var(--color-primary-deactive);
	--bs-btn-disabled-color: var(--color-primary-contrast);
}
.btn.outlinedGlowBtn, .outlinedGlowBtn {
	--bs-btn-bg: var(--color-glow-purple);
	--bs-btn-color: var(--color-tertiary);
	--bs-btn-border-color: var(--color-glow-purple);
	--bs-btn-active-bg: var(--color-primary-contrast);
	--bs-btn-active-color: var(--color-primary);
	--bs-btn-active-border-color: var(--color-primary);
	--bs-btn-hover-bg: var(--color-glow-purple);
	--bs-btn-hover-color: var(--color-tertiary);
	--bs-btn-hover-border-color: var(--color-tertiary);
}
.btn.outlinedDangerBtn, .outlinedDangerBtn {
	--bs-btn-bg: transparent;
	--bs-btn-color: var(--color-danger);
	--bs-btn-border-color: var(--color-danger);
	--bs-btn-active-bg: var(--color-danger);
	--bs-btn-active-color: var(--color-danger-contrast);
	--bs-btn-active-border-color: var(--color-danger);
	--bs-btn-hover-bg: transparent;
	--bs-btn-hover-color: var(--color-danger);
	--bs-btn-hover-border-color: var(--color-danger);
}
/* buyback card ui */
.buybackcard.card {
	--bs-card-border-color: #fff;
	color: var(--text-base-color);
	box-shadow: 0px 1px 1px 0px #0000001a;
	transition: all 0.5s ease;
}

.buybackcard.card:hover {
	box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1), 0 5px 15px -3px rgba(0, 0, 0, 0.1);
	transition: all 0.5s ease;
}

.buybackcard .card-body {
	display: grid;
	grid-template-columns: 60px 1fr;
	column-gap: 20px;
}

.buybackcard .ipo_content { 
	grid-column: 1/-1; 
}

.buybackcard .ipo_cover {
	grid-row: 1 / -1;
}

.buybackcard .ipo_cover img { 
	max-width: 100%; 
	width: 80px; 
	max-height: 80px; 
}

.buybackcard .ipo_name { 
	margin-right: 20px; 
}

.buybackcard .badge_span {
	font-size: 14px;
	font-weight: 600;
	padding: 5px 10px;
	border-radius: 4px;
	text-align: center;
}

.buybackcard span[data-role="equity"] {
	background-color: #f1f4ff;
	color: var(--color-primary);
}

.buybackcard .viewBtn {
	min-width: 80px;
	line-height: 1.5;
	--bs-btn-border-radius: 4px;
	--bs-btn-font-weight: 600;
	--bs-btn-font-size: 14px;
	--bs-btn-bg: var(--color-glow-purple);
	--bs-btn-border-color: var(--color-glow-purple);
	--bs-btn-color: var(--color-tertiary);
	--bs-btn-hover-bg: var(--color-glow-purple);
	--bs-btn-hover-color: var(--color-tertiary);
	--bs-btn-hover-border-color: var(--color-tertiary);
	--bs-btn-active-bg: var(--color-tertiary);
	--bs-btn-active-color: var(--color-tertiary-contrast);
	--bs-btn-active-border-color: var(--color-tertiary);
}

.buybackcard .label {
	font-size: 14px;
	color: #888;
	margin-bottom: 5px;
}

.buybackcard .label + span { 
	font-size: 14px; 
}

.buybackcard .otherStatus { 
	row-gap: 1rem; 
}

.buybackcard .data_box { 
	padding-right: 20px; 
	flex: 0 0 min(120px, 300px); 
}

.buybackcard .sizeBlock { 
	flex-grow: 1; 
}

/* demo card styles */
.buybackcard .demo_card {
	color: #d3d3d3;
}

.buybackcard .demo_card .ipo_cover { 
	min-height: 50px; 
}

.buybackcard .demo_card .badge_span { 
	min-width: 50px; 
}

.buybackcard .demo_card .data_box {
	flex: 0 0 120px;
}

/* Buyback card with IPO-style layout (ipo-card-new) - overrides above grid layout */
.buybackcard.ipo-card-new .card-body {
	display: block;
	grid-template-columns: unset;
	column-gap: unset;
}

.buybackcard.ipo-card-new .ipo-card-market-badge[data-ipotype="Tender Offer"] {
	background-color: #f1f4ff;
	color: var(--color-primary);
}
/* buyback card ui ended */

/* news card ui started */
.newsCard.card { 
	--bs-card-bg: #fff; 
	--bs-card-border-color: #c7e2f2; 
	color: var(--text-base-color, #000d50); 
}

.newsCard .viewBtn {
	min-width: 80px;
	line-height: 1.5;
	--bs-btn-border-radius: 4px;
	--bs-btn-font-weight: 600;
	--bs-btn-font-size: 14px;
	--bs-btn-bg: var(--color-glow-purple);
	--bs-btn-border-color: var(--color-glow-purple);
	--bs-btn-color: var(--color-tertiary);
	--bs-btn-hover-bg: var(--color-glow-purple);
	--bs-btn-hover-color: var(--color-tertiary);
	--bs-btn-hover-border-color: var(--color-tertiary);
	--bs-btn-active-bg: var(--color-tertiary);
	--bs-btn-active-color: var(--color-tertiary-contrast);
	--bs-btn-active-border-color: var(--color-tertiary);
}

.newsCard .accency_cover {
	height: 40px; 
	display: inline-block;
}

.newsCard .accency_cover img { 
	object-fit: contain; 
	max-height: 100%; 
}

.newsCard .aggency_name {
	font-size: min(calc(1em + 0.5vw), 20px);
	display: inline-block;
	margin-top: 10px;
	min-height: 30px;
}

.newsCard .button_sec { 
	margin-left: auto; 
}

/* testimonial ui */
#testimonials .commentor-content {
	background-color: #fff;
	padding: 20px 20px 60px;
	text-align: center;
}

#testimonials .testimonial-desc-clamp {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

#testimonials .carousel-item > div {
	max-width: 800px;
}

#testimonials .testimonial--avatar {
	margin-top: -45px; 
	border-radius: 100vw; 
	object-fit: cover; 
	overflow: hidden;
}

#testimonials .testimonial--avatar img {
	border-radius: 100vw;
}

#testimonials .author-des {
	color: #888;
}

#testimonials .carousel-indicators {
	position: relative; 
	margin-top: 20px;
}

#testimonials .carousel-indicators [data-bs-target] {
	width: 4px; 
	height: 4px; 
	border-radius: 100vw; 
	background-color: var(--color-primary); 
	box-sizing: border-box; 
	border-top: 0; 
	border-bottom: 0;
}

#testimonials .carousel-indicators .active {
	height: 4px; 
	width: 4px;
}

/* Apply ipo styles */
.miniCard {
    background: #fff;
    border-color: #D6D6D6;
    color: var(--text-color);
    --bs-card-cap-bg: var(--light-bg-2);
    --bs-card-border-radius: 8px;
    --bs-card-inner-border-radius: calc(var(--bs-card-border-radius) - (var(--bs-border-width)));
}

.miniCard .card-body {
    box-shadow: 0px 1px 1px 0px #0000001A; 
    border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius); 
    border-bottom: none;
}

.miniCard .ipo_cover {
    float: left;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    overflow: hidden;
    margin-right: 20px;
}

.miniCard .ipo_cover img {
    width: 100%; 
    object-fit: contain;
}

.miniCard .ipo_name_mini {
    display: -webkit-box; 
    -webkit-box-orient: vertical; 
    -webkit-line-clamp: 1; 
    text-overflow: ellipsis; 
    overflow: hidden; 
    line-height: 30px; 
    color: #000D50; 
    font-weight: 600; 
    font-size: 1em; 
}

.miniCard table, 
.miniCard table td {
    border: none; 
    --bs-table-color: var(--text-color); 
}

.miniCard td p {
    margin-bottom: 0px;
}

.miniCard .label {
    color: #484848; 
    font-weight: 400;
}

.miniCard .member_data_card .label {
    color: #888;
}

.miniCard .member_data_card {
    border: 1px solid #EEEEEE; 
    padding: 10px; 
    border-radius: var(--bs-card-border-radius); 
    margin-top: 10px;
}

.miniCard .badge-role {
    background-color: var(--light-bg-2); 
    color: var(--color-primary); 
    padding: 5px 10px; 
    border-radius: 4px; 
    font-size: 0.8em; 
    font-weight: 600;
}

.miniCard .submitBtn { 
    width: 100%; 
    position: sticky; 
    bottom: 0; 
    z-index: 1; 
    backdrop-filter: opacity(0.5); 
    --bs-btn-font-size: 1.25em; 
    line-height: 1; 
}
.miniCard .submitBtn{
    --bs-btn-bg: var(--color-primary);
    --bs-btn-border-color: var(--color-primary);
    --bs-btn-color: var(--color-primary-contrast);
    --bs-btn-hover-border-color: var(--color-primary-active);
    --bs-btn-hover-bg: var(--color-primary-active);
    --bs-btn-hover-color: var(--color-primary-contrast);
    --bs-btn-disabled-bg: var(--color-primary);
    --bs-btn-disabled-color: var(--color-primary-contrast);
    --bs-btn-border-radius: 0;
    --bs-btn-font-weight: 600;
    --bs-btn-font-size: 1em;
    min-width: 100px;
}
.miniCard .addAccBtn{
    --bs-btn-font-size: 0.875em;
    --bs-btn-border-radius: 4px;
    --bs-btn-color: var(--color-primary);
    --bs-btn-bg: #f1f4ff;
    --bs-btn-font-weight: 600;
    --bs-btn-hover-color: var(--color-primary-active);
    --bs-btn-hover-bg: #f1f4ff;
    --bs-btn-hover-border-color: var(--color-primary);
}
.miniCard .cover_img_loggedout {
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.miniCard .cover_img_loggedout img { 
    width: 100%; 
    max-width: 250px; 
    height: auto; 
    max-height: 300px; 
    object-fit: contain; 
}


/* Account card styles */
.accountCards {
	--bg-light-blue: #F1F4FF; 
	--text-color: #000D50;
}

.accountCards .card {
    --bs-card-border-radius: 8px;
    --bs-card-inner-border-radius: calc(var(--bs-card-border-radius) - (var(--bs-border-width)));
    --bs-card-cap-bg: #fff;
    --bs-card-border-color: #EEEEEE;
    --bs-card-title-color: #2d2d2d;
}

.accountCards .label {
	color: #888;
}

.accountCards .badge-role {
	background-color: var(--bg-light-blue); 
	color: var(--color-primary); 
	padding: 5px 10px; 
	border-radius: 4px; 
	font-size: 0.8em; 
	font-weight: 600;
}

.accountCards select {
    border: 1px solid #EEEEEE;
    color: var(--color-primary);
    background-color: #fff;
    padding: 5px;
    width: calc(100% - 50px);
    max-width: 200px;
    outline-color: var(--color-primary);
}

.accountCards select::marker {
	color: var(--color-primary); 
	margin-right: 5px;
}

.accountCards label {
	color: var(--color-primary);
}

.accountCards table { 
	margin-inline: -0.5rem; 
	width: calc(100% + 1rem); 
}

.accountCards table, 
.accountCards table td {
	border: none; 
	--bs-table-color: var(--text-color); 
}

.accountCards td p {
	margin-bottom: 0px;
}

.accountCards .btn:not(.btn-danger) {
    display: inline-flex; 
    align-items: center; 
    gap: 5px;
    min-width: 80px;
    --bs-btn-font-size: 1em;
    --bs-btn-bg: var(--color-glow-purple);
    --bs-btn-color: var(--color-primary);
    --bs-btn-border-color: var(--color-glow-purple);
    --bs-btn-active-bg: var(--color-primary);
    --bs-btn-active-color: var(--color-primary-contrast);
    --bs-btn-active-border-color: var(--color-primary);
    --bs-btn-hover-bg: var(--color-glow-purple);
    --bs-btn-hover-color: var(--color-primary);
    --bs-btn-hover-border-color: var(--color-primary);
    --bs-btn-font-family: 'Poppins';
    --bs-btn-font-weight: 600; 
    line-height: 1.5;
}

.accountCards .btn:not(.btn-danger).delBtn {
    --bs-btn-color: var(--color-danger);
    --bs-btn-border-color: var(--color-glow-purple);
    --bs-btn-active-bg: var(--color-danger);
    --bs-btn-active-color: var(--color-danger-contrast);
    --bs-btn-active-border-color: var(--color-danger);
    --bs-btn-hover-bg: var(--color-glow-purple);
    --bs-btn-hover-color: var(--color-danger);
    --bs-btn-hover-border-color: var(--color-danger);
}

.accountCards .btn:not(.btn-danger) mat-icon {
	width: inherit; 
	height: inherit; 
	font-size: inherit; 
	color: inherit;
}
#privacy-policy h1, #aboutUs h1 {
	font-size: clamp(20px, calc(1.5em + 1.5vw), 55px); 
	font-weight: 600; 
	line-height: 1.5;
}

#privacy-policy p, #privacy-policy ol, #privacy-policy ul, #aboutUs p, #aboutUs ol, #aboutUs ul {
	margin-bottom: 1.75em;
}

#privacy-policy a, #aboutUs a {
	color: #046bd2; 
	text-decoration: none;
}

/* DEPRECATED CSS: #privacy-policy .heading-role, #aboutUs .heading-role { */
/* DEPRECATED CSS: 	font-weight: 600; */
/* DEPRECATED CSS: } */

#privacy-policy .banner_img, #aboutUs .banner_img {
	max-height: 500px; 
	margin-inline: auto;
}

/* login modal */
/* DEPRECATED CSS: #loginModal .heading-role { */
/* DEPRECATED CSS: 	color: var(--text-base-color);  */
/* DEPRECATED CSS: 	font-weight: 600;  */
/* DEPRECATED CSS: 	text-align: center;  */
/* DEPRECATED CSS: 	min-height: 60px; */
/* DEPRECATED CSS: } */

#loginModal .closeBtn {
	position: absolute; 
	top: 10px; 
	right: 10px;
}

#loginModal .add_cover {
	background-image: url('../adds/login_cover.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 0% 0%;
	border-radius: 1rem;
	color: #fff;
	height: 100%;
	background-color: #6055CD;
	background-blend-mode: multiply;
	padding: 20px;
}

#loginModal .divider_option {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	backface-visibility: hidden;
	backdrop-filter: blur(6px);
	padding: 10px;
}

/* DEPRECATED CSS: #loginModal form, #loginModal .note-role { */
/* DEPRECATED CSS: 	width: 100%;  */
/* DEPRECATED CSS: 	max-width: 350px;  */
/* DEPRECATED CSS: 	margin-inline: auto; */
/* DEPRECATED CSS: } */

#loginModal .submitBtn {
	--bs-btn-bg: var(--color-primary, #6055CD);
	--bs-btn-active-bg: var(--color-primary-active);
	--bs-btn-hover-bg: var(--color-primary-active);
	--bs-btn-focus-bg: var(--color-primary);
	--bs-btn-border-color: var(--color-primary);
	--bs-btn-active-border-color: var(--color-primary-active);
	--bs-btn-focus-border-color: var(--color-primary);
	--bs-btn-hover-border-color: var(--color-primary-active);
	--bs-btn-color: var(--color-primary-contrast, #fff);
	--bs-btn-active-color: var(--color-primary-contrast, #fff);
	--bs-btn-focus-color: var(--color-primary-contrast, #fff);
	--bs-btn-hover-color: var(--color-primary-contrast, #fff);
	--bs-btn-border-radius: 0;
	--bs-btn-font-weight: 600;
		--bs-btn-padding-y: 0.5rem;
		--bs-btn-font-size: clamp(14px, 1em, 18px);
		width: 100%;
	}
	
#loginModal .google_card {
	justify-content: center;
	max-width: 300px;
	gap: 10px;
	box-shadow: 0 0 0 1px #e9e9e9;
	margin-inline: auto;
	will-change: contents, box-shadow;
	cursor: pointer;
}

#loginModal .google_card:is(:hover, :active) { 
	box-shadow: 0px 2px 8px 0px #6055CD40; 
	transition: box-shadow 0.3s ease; 
}

#loginModal .google_card:is(:focus, :focus-within) { 
	box-shadow: 0px 0px 0px 1px var(--color-primary); 
}

button[data-bs-toggle=tooltip]{--bs-btn-border-radius: 50vw}

/* 404 page */
.errorPage .content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #333;
	padding-top: 40px;
	min-height: 40vh;
	line-height: 1.5;
}

.errorPage .headline {
	font-size: clamp(24px, 15rem, 80px);
	font-weight: bolder;
	color: #350583;
}

.errorPage .innerDiv {
	display: grid;
	gap: 10px;
	perspective: 10px;
}

.errorPage h1 {
	text-transform: uppercase;
}

.errorPage .homeBtn {
	padding: 15px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	display: block;
	max-width: 300px;
	margin: 0px auto 20px;
	width: 100%;
	white-space: break-spaces;
	text-transform: capitalize;
	min-height: 45px;
	font-size: 1rem;
	transition: all 0.5s ease;
	perspective: 10px;
}

.errorPage .homeBtn:hover, 
.errorPage .homeBtn:focus, 
.errorPage .homeBtn:active {
	transform: translate(5px, -5px);
	box-shadow: -5px 10px 25px rgba(0,0,0,0.5);
	transition: all 0.5s ease;
}

.errorPage .desc {
	max-width: 700px;
	color: #797676;
	font-weight: 400;
}
.nav-pills.ipo-tabs {
	--bs-nav-link-color: #6055cd;
	--bs-nav-link-hover-color: var(--color-primary-active);
	--bs-nav-pills-link-active-bg: #c9c4fa38;
	--bs-nav-pills-link-hover-bg: #c9c4fa38;
	--bs-nav-pills-link-active-color: var(--color-primary-active);
	--bs-nav-pills-border-radius: 0;
	--bs-nav-link-font-weight: 500;
	background-color: #ffffff;
	padding: 0.5rem 0.5rem;
    /* border: 1px solid #eee; */
	border-radius: 8px;
	gap: 0.5rem;
}

.nav-pills.ipo-tabs .nav-item {
	flex: 1;
	text-align: center; 
	user-select: none;
}

.nav-pills.ipo-tabs .nav-link {
	/* border: 1px solid #eee;  */
	cursor: default;
}

.nav-pills.ipo-tabs .nav-link.active, 
.nav-pills.ipo-tabs .nav-link:hover {
	border: 1px solid #eee;
	border-color: var(--color-primary-active); 
	background-color: var(--bs-nav-pills-link-hover-bg);
	border-radius: 6px;
}

/* Hide pill icons on small screens to keep labels clean */
@media screen and (max-width: 575.98px) {
	.nav-pills.ipo-tabs .nav-link i {
		display: none !important;
	}
	.nav-pills.ipo-tabs
 { padding: 0.25rem 0.25rem; }
 .nav-link {
    padding: 0.5rem 0.75rem !important;
    }
}

.blogSec{display: grid; gap: 0.5rem; }
.truncateText{
	overflow: hidden;
	text-overflow: ellipsis;
	/* Fallback for browsers that don't support line-clamp */
	max-height: 1.2em;
	line-height: 1.2;
	/* Modern line-clamp support */
	display: -webkit-box;
	background-clip: text;
	-webkit-background-clip: text;
}
@media screen and (max-width: 768px) {
	#home_carousel .carousel-control-next, #home_carousel .carousel-control-next{width: 80px;}
	#home_carousel .carousel-control-next-icon, #home_carousel .carousel-control-prev-icon{width: .8rem; height: .8rem; }
	#home_carousel .carousel-control-prev-icon{ margin-inline-start: .8rem; margin-inline-end: auto; }
	#home_carousel .carousel-control-next-icon{ margin-inline-start: auto; margin-inline-end: .8rem; }
}

@media screen and (min-width: 400px) { .broker_card .data_box {max-width: 140px; flex: 0 0 140px;}}
@media screen and (min-width: 450px) {
	.ipoListCard .ipo_cover { float: left; }
	.ipo_content { max-width: calc(100% - 140px); }
}
@media screen and (min-width: 576px) {
	/* .broker_card .ipo_name, 
	.broker_card .ipo_cover {
		float: none; 
		text-align: center;
	}
	
	.broker_card .top_row {
		text-align: center; 
		display: block;
	}
	
	.broker_card .otherStatus {
		grid-column: 2 / -1;
	} */

	
	.newsCard .card-body { 
		display: grid; 
		grid-template-columns: 100px 1fr auto; 
		grid-template-rows: 1fr auto; 
	}
	
	.newsCard .news-content, 
	.newsCard .aggency_name { 
		grid-column: 2/3; 
	}
	
	.newsCard .aggency_name { 
		margin-left: 20px; 
		margin-top: 0; 
	}
	
	.newsCard .button_sec { 
		padding-left: 20px; 
	}
	
	.newsCard .accency_cover {
		grid-row: 1 / 3;
		width: 90px;
		height: auto;
		max-height: 100px;
		text-align: center;
	}
	
	.newsCard .aggency_name { 
		margin-left: 0px; 
	}
}

@media screen and (min-width: 576px) {
	.errorPage .headline {
		font-size: clamp(24px, 15rem, 100px);
		letter-spacing: 10px;
		-webkit-text-stroke: 5px;
		-moz-text-stroke: 5px;
	}
	
	.errorPage .homeBtn { 
		font-size: 1.3rem; 
	}
	
	.sideBox { 
		margin-right: 0.5rem; 
		max-width: 350px;
	}
}

.gmp-card-desktop{
	display: none;
}
.gmp-card-mobile{
	display: block;
}
.gmp-card-desktop{
	display: none;
}
.gmp-card-mobile{
	display: block;
}
@media screen and (min-width: 768px) {
	body { --bs-body-font-size: 16px; }
	.ipoListCard .ipo_cover { text-align: center; }
	.gmp-card-desktop{
		display: block;
	}
	.gmp-card-mobile{
		display: none;
	}
	.gmp-card-desktop{
		display: block;
	}
	.gmp-card-mobile{
		display: none;
	}
	.broker_card .ipo_cover img {max-width: 100%; width: 80px; max-height: 80px;}
	.broker_card .ipo_cover img {
		max-width: 100%; 
		width: 80px; 
		max-height: 80px;
	}
	.buybackcard .card-body { 
		grid-template-columns: 100px 1fr;
	}
	.buybackcard .ipo_cover { 
		grid-row: 1/3; 
	}
	.buybackcard .ipo_content { 
		grid-column: 2/-1; 
	}
}

@media screen and (min-width: 768px) {
	.errorPage .headline {
		font-size: clamp(24px, 15rem, 150px);
		letter-spacing: 15px;
		-webkit-text-stroke: 10px;
		-moz-text-stroke: 10px;
	}
}

@media screen and (min-width: 992px) {
/* DEPRECATED CSS: 	.aside_sticky { position: sticky; top: 120px; } */
	.addsList .sideBox{ margin-right: 0; max-width: 100%;}
	.sideBox:last-child{position: sticky; top: 80px;}

    p.heading_desc, .section_title, .h1.section_title{font-size: var(--text-2xl);}
	.ipoListCard .otherStatus { column-gap: 0.5rem; }
	.ipo-tabs .nav-item {margin-right: 0;}
}
@media screen and (min-width: 1200px) {
	.buybackcard .otherStatus, .broker_card .otherStatus { column-gap: 2rem; }
	.broker_card .data_box {max-width: 170px; flex: 0 0 170px;}
}
.premium-link {
    color: #4f46e5 !important;
		text-decoration: none !important;
		font-weight: 500 !important;
}

.premium-link:hover {
    text-decoration: underline !important;
}

  .premium-card1::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 150px;
	height: 150px;
	background-color: rgba(67, 97, 238, 0.03);
	border-radius: 50%;
	transform: translate(50%, -50%);
	z-index: 1;
	overflow: hidden;
  }
  .segmented-control {
	position: relative;
	display: flex;
	width: 100%;
	max-width: 320px;
	background: #f2f4ff;
	border-radius: 100px;
	overflow: hidden;
  }
  .segment-item {
	flex: 1;
	padding: 12px 20px;
	text-align: center;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	position: relative;
	z-index: 1;
	transition: color 0.2s ease;
  }
  .segment-highlight {
	position: absolute;
	height: calc(100% - 4px);
	top: 2px;
	left: 2px;
	width: calc(50% - 4px);
	background: #6055CD;
	border-radius: 100px;
	transition: transform 0.2s ease;
  }
  .btn-primary-outline-2:hover {
	background: white !important;
    color: #6055CD !important;
    border-color: #6055CD !important;
      
  }
  .btn-primary-outline-2 {
      background: #6055CD !important;
      color: white !important;
      animation: pulse 2s infinite;
    }

  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(79, 70, 229, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
  }
  
/* Compact broker card layout */
.broker_card .card-body {
	padding: 8px 10px;
	cursor: pointer;
}
.broker_card .broker_name {
	font-size: 18px !important;

}

.broker_card .ipo_cover img {
	max-width: 48px;
	max-height: 48px;
}

.broker_card .badge_span {
	font-size: 14px ;
	padding: 2px 6px;
	border-radius: 999px;
}

.broker_card .broker_compact_charges {
	font-size: 11px;
	color: #4b5563;
}

.broker_card .broker_chip {
	padding: 2px 6px;
	border-radius: 999px;
	background-color: #f3f4ff;
	color: #4338ca;
	white-space: nowrap;
}

.broker_card .broker_footer {
	font-size: 11px;
}

.broker_card .broker_note {
	color: #16a34a;
	font-weight: 500;
	white-space: nowrap;
	margin-right: 4px;
}

.broker_card .btn.btn-sm {
	--bs-btn-font-size: 0.7rem;
	--bs-btn-padding-y: 0.15rem;
	--bs-btn-padding-x: 0.45rem;
	min-width: auto;
}
.broker_card .broker_header {
	align-items: flex-start !important;
}
.broker_card .broker_header .ipo_name {
	flex-basis: 100% !important;
}

/* Make broker product badges slightly bigger on tablet */
.broker_card .badge_span {
	font-size: 12px;
	padding: 3px 8px;
}



@media screen and (max-width: 575px) {
	/* Mobile: full-width, current stacked layout */
	.broker_card .card-body {
		width: 100% !important;
	}
	.broker_card .ipo_name   {
		width: 100% !important;
	}
	.broker_card .broker_header{
		align-items: flex-start !important;
	}
	.broker_card .card-body {
		width: 100% !important;
	}
	.broker_card .ipo_name   {
		width: 100% !important;
	}
	.broker_card .badge_span {
		font-size: 11px ;
	}
}
  .dual-line-heading {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-family: var(--font-heading);
  }
  .dual-line-heading .line-left {
	/* display: none; */
	height: 1px;
	width: 1rem;
	background: linear-gradient(to right, #7c3aed, transparent);
	animation: scaleX 0.5s ease 0.2s both;
	transform-origin: left;
  }
  .dual-line-heading .line-right {
	/* display: none; */
	height: 1px;
	flex: 1;
	background: linear-gradient(to right, rgba(124,58,237,0.3), transparent);
	animation: scaleX 0.5s ease 0.2s both;
	transform-origin: left;
  }
  .dual-line-heading h2 {
	font-size: var(--text-2xl);
	font-weight: 700;
	line-height: var(--line-heading);
	letter-spacing: var(--tracking-heading);
	color: #1a1a2e;
	margin: 0;
  }
  .dual-line-heading p {
	margin: 0.25rem 0 0;
	font-size: var(--text-sm);
	line-height: var(--line-body);
	color: #6b7280;
  }
  @media (min-width: 640px) {
	.dual-line-heading .line-left,
	.dual-line-heading .line-right { display: block; }
	.dual-line-heading .line-left { width: 3rem; }
  }
  @keyframes scaleX {
	from { transform: scaleX(0); }
	to   { transform: scaleX(1); }
  }

.explore_filter_col .heading-card {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 12px; padding: 5px 20px ; 
    border-radius: 16px;
    /* border: 1px solid #e5e7eb; background: #fff; */
    flex-direction: row;
}

.explore_filter_col .heading-card h1,
.explore_filter_col .heading-card h2 {
	font-size: 1.5rem;
	font-weight: 600;
	color: #0f172a;
	margin-bottom: 0;
}

.explore_filter_col .heading-card h1 .accent,
.explore_filter_col .heading-card h2 .accent {
	color: #4f46e5;
}

@media (max-width: 768px) {
	.explore_filter_col .heading-card h1,
	.explore_filter_col .heading-card h2 {
		font-size: 1.25rem;
	}
}

.explore_filter_col .seg-filter {
    position: relative; display: inline-flex; align-items: center;
    border-radius: 9999px; background: #f1f5f9; padding: 6px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,.06);
}

.explore_filter_col .seg-indicator {
	border: 1px solid #6055CD;
	color: #6055CD;
    position: absolute; top: 6px; bottom: 6px; border-radius: 9999px;
    background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.12);
    transition: left .3s cubic-bezier(.4,0,.2,1), width .3s cubic-bezier(.4,0,.2,1);
}

.explore_filter_col .seg-btn {
    position: relative; z-index: 1; border: none; background: none; cursor: pointer;
    border-radius: 9999px; padding: 8px 20px; font-size: 0.875rem; font-weight: 600;
    color: #94a3b8; transition: color .2s;
}

.explore_filter_col .seg-btn:hover { color: #0f172a; }
.explore_filter_col .seg-btn.active { color: #6055CD; }

.heading-card .seg-filter { background: #ffffff; }
.heading-card .seg-btn { color: #000000a8; }
.heading-card .seg-btn:hover { color: #6055CD; }
.heading-card .seg-indicator { color: #ffffff; background: #6055CD; border: none; }
.heading-card .seg-btn.active { color: #ffffff; }
#faqs.accordion-wrapper {
	scroll-margin-top: calc(64px + 1.25rem);
  }
  .accordion-wrapper {  width: 100%; }
  .accordion-wrapper h1 {
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: .5rem;
	color: #000d50;
  }
  .accordion-wrapper .subtitle {
	text-align: center;
	color: #6b7280;
	font-size: 1.05rem;
	margin-bottom: 2.5rem;
  }
  .acc-item {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius:16px;
	margin-bottom: 12px;
	overflow: hidden;
	transition: border-color .3s, box-shadow .3s;
  }
  .acc-item.active {
	border-color: #6055cd;
	box-shadow: 0 8px 24px rgba(96,85,205,.1);
  }
  .acc-item:not(.active):hover {
	border-color: #e9ecef;
	box-shadow: 0 4px 12px rgba(0,0,0,.04);
  }
  .acc-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 20px;
	border: none;
	background: none;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	color: #000d50;
	gap: 12px;
  }
  .acc-btn:focus { outline: none; }
  .acc-btn .icon-toggle {
	color: #6b7280;
	font-size: 14px;
	transition: transform .35s cubic-bezier(.4,.0,.2,1), color .3s;
  }
  .acc-item.active .acc-btn .icon-toggle {
	transform: rotate(45deg);
	color: #6055cd;
  }
  .acc-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s cubic-bezier(.4,.0,.2,1), opacity .3s;
	opacity: 0;
  }
  .acc-item.active .acc-body {
	opacity: 1;
  }
  .acc-body-inner {
	padding: 0 20px 20px;
	  color: #6b7280;
	font-size: 15px;
	line-height: 1.7;
  }