@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
	font-family: "Montserrat", sans-serif;
}

body .main-content #inner-content {
	min-height: 100%;
}

body .form-control {
	padding: 0;
	border: 0;
}


form .form-control {
	margin-bottom: 34px;
}

form .form-control label {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
}

form .form-control label .required {
	color: #E92035;
	font-size: 14px;
	font-weight: bold;
}

form .form-control input,
form .form-control select {
	background-color: #000000;
	font-size: 15px;
	font-weight: 600;
	color: #2F444C;
	padding: 17px 25px;
	height: auto;
	border: none;
	border-radius: 8px;
	margin-bottom: 0;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

/* /home/claimDetail is one of the "light-theme" pages (see
   body.light-theme-page rules above / layout/base.html) -- white
   background, black text, in every state (default/focus/autofill),
   overriding the shared black-theme `form .form-control input, select`
   rule above. ID-scoped (#claim-detail-form) so it wins regardless of
   source order and covers this form's own focus/autofill states, which
   were previously tuned for a black background and would otherwise still
   flip back to black on focus/autofill even with the general
   body.light-theme-page input rule in place (that rule loses to these
   ID-scoped selectors on specificity alone). */
#claim-detail-form .form-control input,
#claim-detail-form .form-control select,
#claim-detail-form .form-control textarea {
	background-color: #FFFFFF;
	color: #000000;
}
#claim-detail-form .form-control input:focus,
#claim-detail-form .form-control select:focus,
#claim-detail-form .form-control textarea:focus {
	background-color: #FFFFFF !important;
	color: #000000 !important;
}
#claim-detail-form .form-control input:-webkit-autofill,
#claim-detail-form .form-control input:-webkit-autofill:hover,
#claim-detail-form .form-control input:-webkit-autofill:focus {
	-webkit-text-fill-color: #000000;
	-webkit-box-shadow: 0 0 0px 1000px #FFFFFF inset;
	box-shadow: 0 0 0px 1000px #FFFFFF inset;
	caret-color: #000000;
	transition: background-color 9999s ease-in-out 0s;
}

form .form-control .select-wrapper {
	position: relative;
}

form .form-control .select-wrapper::before {
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 16px;
	width: 20px;
	height: 12px;
	background-image: url('../img/down-arrow.png');
	background-repeat: no-repeat;
	transform: translateY(-50%);
	z-index: 99;
}

form .form-control .select-wrapper::after {
	background-color: #000000;
	border-radius: 7px;
	width: 36px;
	height: 28px;
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}

form .form-control input::placeholder {
	color: rgba(47, 68, 76, 0.5);
}

form .form-control .form-input.username {
	position: relative;

}

form .form-control .form-input.username input {
	padding-left: 45px;
}

form .form-control .form-input.username::before {
	content: '@';
	position: absolute;
	top: 50%;
	left: 25px;
	transform: translateY(-50%);
	font-size: 15px;
	font-weight: bold;
	color: rgba(60, 60, 60, 0.5);
}

form .form-control .form-input input:focus {
	background-color: #000000;
	border: none;
}

form .form-group .form-control .address {
	margin-bottom: 18px;
}

form .form-group .form-control .input-group {
	display: flex;
	flex-wrap: wrap;
	/* align-items: center; */
	margin-bottom: 18px;
}

form.form-group .form-control .input-group:last-child {
	margin-bottom: 0;
}

form .form-group .form-control .input-group input,
form .form-group .form-control .input-group .select-wrapper {
	width: calc(50% - 50px/2);
	margin-right: 50px;
	border-top-right-radius: 8px !important;
	border-bottom-right-radius: 8px !important;
}

form .form-group .form-control .input-group input:last-child,
form .form-group .form-control .input-group .select-wrapper:last-child {
	margin-right: 0;
}

.main-content.with-topbar-subheader .content-body {
	background-color: white;
}

.custom-container {
	max-width: 1266px;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}

header .top-bar {
	height: 84px;
	padding: 0 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.2s ease-out;
}

header .top-bar .title-area .name {
	display: flex;
	align-items: center;
}

.page-logo {
	display: flex;
	align-items: center;
}

.page-logo span {
	font-size: 24px !important;
	line-height: normal !important;
	color: #0A1220;
	font-family: "Montserrat", sans-serif;
	letter-spacing: 0;
	font-weight: bold;
	text-transform: capitalize;
}

.page-logo span:last-child {
	color: #000000;
}

.top-bar:before,
.top-bar-search:before,
.top-bar:after,
.top-bar-search:after {
	display: none;
}

header .top-bar-section {
	padding-right: 0 !important;
	position: unset;
}

header .top-bar-section ul {
	display: flex;
	align-items: center;
}

header .top-bar .top-bar-section li {
	margin-right: 29px;
}

header .top-bar .top-bar-section li a {
	line-height: normal !important;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase !important;
	color: #0A1220;
}

header .top-bar .top-bar-section li.primary-btn {
	margin-left: 0;
	margin-right: 17px;
}

header .top-bar .top-bar-section li.primary-btn a {
	background-color: #000000;
	color: white;
	font-stretch: 13px;
	padding: 7px 19px;
	border-radius: 5px;
	font-weight: bold;
	border: 1px solid #000000;
}

header .top-bar .top-bar-section li.primary-btn a:hover {
	background-color: white;
	color: #000000;
}

header .top-bar .top-bar-section li.secondary-btn a {
	border: 1px solid #000000;
	color: #0A1220;
	padding: 7px 19px;
	border-radius: 5px;
	font-weight: bold;
	font-stretch: 13px;
}

header .top-bar .top-bar-section li.secondary-btn a:hover {
	background-color: #000000;
}

header .top-bar .top-bar-section li.signup-btn a {
	background-color: #2F5BFF;
	color: white;
	border: 1px solid #2F5BFF;
}

header .top-bar .top-bar-section li.signup-btn a:hover {
	background-color: white;
	color: #2F5BFF;
}

header .top-bar .top-bar-section li.login-btn a {
	border: 1px solid #0A1220;
}

header .top-bar .top-bar-section li.login-btn a:hover,
header .top-bar .top-bar-section li.login-btn a:active {
	background-color: #000000;
	color: #FFFFFF;
}

.main-content {
	padding-top: 0;
	font-family: "Montserrat", sans-serif;
	/*padding-left: 15px:
	padding-right: 15px;
	max-width: 1010px;
	margin: 0 auto;*/
}

.main-content .banner {
	background: #F7F8FC;
	padding-bottom: 0;
}

.main-content .banner .banner-content {
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1266px;
    margin: 0 auto;
}
.main-content .banner .banner-content ul {
    max-width: 100%;
    text-align: center;
    margin: 20px auto;
    list-style-position: inside;
}

.banner-image {
	margin-bottom: 55px;
	margin-top: 20px;
}

.main-content .banner .banner-content h1 {
	font-size: 40px;
	line-height: 45px;
	font-weight: bold;
	color: #0A1220;
	margin-bottom: 25px;
	font-family: "Montserrat", sans-serif;
}

.main-content .banner .banner-content h5 {
	font-size: 18px;
	line-height: 24px;
	font-weight: bold;
	color: #0A1220;
	margin-bottom: 20px;
	font-family: "Montserrat", sans-serif;
}

.main-content .banner .banner-content ul li {
	font-size: 21px;
	font-weight: bold;
	margin-bottom: 7px;
	font-family: "Montserrat", sans-serif;
}

.main-content .about-us {
	padding: 17px 0;
	text-align: center;
}

.main-content .about-us .row {
	display: flex;
	flex-wrap: wrap;
}

.main-content .about-us .about-heading {
	margin-bottom: 62px;
}

.about-wrapper {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	height: 100%;
}
.about-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
	object-position: center;
	display: block;
}

.main-content .about-us h1 {
	font-size: 40px;
	line-height: 55px;
	font-weight: bold;
	color: #0A1220;
	letter-spacing: 0.84px;
	margin-bottom: 0;
	font-family: "Montserrat", sans-serif;
	margin: 0 auto;
}

.main-content .about-us h5 {
	font-size: 18px;
	line-height: 24px;
	font-weight: 500;
	letter-spacing: 0.38px;
	color: #0A1220;
	margin-bottom: 0;
	font-family: "Montserrat", sans-serif;
	margin: 0 auto;
}

.main-content .about-us .about-wrapper .about-content {
	padding: 30px 18px 35px;
	background: #EEF5FF 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 0px 0px 10px 10px;
	text-align: left;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	flex-grow: 1;
}

.main-content .about-us .about-wrapper .about-content img {
	height: 222px;
	object-fit: cover;
}

.main-content .about-us .about-content h4 {
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.48px;
	color: #0A1220;
	margin-bottom: 16px;
	font-family: "Montserrat", sans-serif;
}

.main-content .about-us .about-content p {
	font-size: 18px;
	line-height: normal;
	letter-spacing: 0px;
	color: #0A1220;
	margin-bottom: 0;
	font-family: "Montserrat", sans-serif;
}

.bg-pink {
	background: #FFF5F4 !important;
}
.bg-pink.owners-section {
	background: #F7F8FC !important;
}
.bg-pink.newsignup-top-content {
	background: #F7F8FC !important;
}

.bg-lavender {
	background-color: #F7F8FC !important;
}

.bg-dark-sea-green {
	background-color: #7CB88E1A !important;
}

.bg-cyan {
	background-color: #EEF5FF !important
}

.claim-section {
	padding: 68px 0;
}

.claim-section .row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.claim-section h4 {
	font-size: 24px;
	color: #000000;
	font-weight: bold;
	font-family: "Montserrat", sans-serif;

}
.claim-section h4.for-trade-professionals-heading {
	color: #2F5BFF;
}
.claim-section h4.for-owners-heading {
	color: #2F5BFF;
}

.claim-section h1 {
	font-size: 40px;
	line-height: 45px;
	color: #0A1220;
	margin-bottom: 25px;
	font-weight: bold;
	font-family: "Montserrat", sans-serif;

}

.claim-section p {
	font-size: 18px;
	color: #0A1220;
	margin-bottom: 20px;
	font-family: "Montserrat", sans-serif;

}

.claim-section ul {
	list-style-type: disc;
	margin-bottom: 40px;
}

.claim-section ul li {
	font-size: 21px;
	font-weight: bold;
	margin-bottom: 7px;
	font-family: "Montserrat", sans-serif;

}

.claim-section ul li:last-child {
	margin-bottom: 0;
}

.primary-red-btn {
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.36px;
	color: #FFFFFF;
	background-color: #000000;
	border-radius: 8px;
	padding: 16px 31px;
	border: 1px solid #000000;
	font-family: "Montserrat", sans-serif;

}

.primary-red-btn.owner-signup-btn {
	background-color: #2F5BFF;
	border: 1px solid #2F5BFF;
}
.primary-red-btn.owner-signup-btn:hover {
	background-color: white;
	color: #2F5BFF;
}

.primary-lavender-btn {
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.36px;
	color: #FFFFFF;
	background-color: #1D378D;
	border-radius: 8px;
	padding: 16px 31px;
	border: 1px solid #1D378D;
	font-family: "Montserrat", sans-serif;

}

.primary-green-btn {
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.36px;
	color: #FFFFFF;
	background-color: #369789;
	border-radius: 8px;
	padding: 16px 31px;
	border: 1px solid #369789;
	font-family: "Montserrat", sans-serif;
}

.primary-cyan-btn {
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.36px;
	color: #FFFFFF;
	background-color: #7A9EEC;
	border-radius: 8px;
	padding: 16px 31px;
	border: 1px solid #7A9EEC;
	font-family: "Montserrat", sans-serif;

}

.primary-red-btn:hover {
	background-color: white;
	color: #000000;
}

.primary-lavender-btn:hover {
	background-color: white;
	color: #1D378D;
}

.primary-green-btn:hover {
	background-color: white;
	color: #369789;
}

.primary-cyan-btn:hover {
	background-color: white;
	color: #7A9EEC;
}

.claim-section.reverse .row {
	flex-direction: row-reverse;
}

.claim-wrapper-two h4 {
	color: #B57FE3;
	font-family: "Montserrat", sans-serif;

}

.claim-wrapper-three h4 {
	color: #359789;
	font-family: "Montserrat", sans-serif;
}

.claim-wrapper-four h4 {
	color: #000000;
	font-family: "Montserrat", sans-serif;

}

footer {
	background-color: #F7F8FC;
	padding: 64px 67px 20px;
	color: #0A1220;
}

footer a:hover {
	color: #1795D6;
}

footer .footer-logo span {
	color: #0A1220
}

footer .footer-link a {
	display: block;
	color: #0A1220;
	font-size: 18px;
	margin-bottom: 10px;
}

footer .footer-link a:last-child {
	margin-bottom: 0;
}

footer .footer-top {
	margin-bottom: 40px;
}
footer .footer-top .footer-link {
    margin-top: 30px;
}

footer .footer-top .footer-link-wrapper {
	padding-top: 38px;
}

footer .footer-bottom p {
	margin-bottom: 0;
	font-size: 14px;
}

footer .footer-bottom .term-list-wrapper {
	display: flex;
	justify-content: flex-end;
}

footer .footer-bottom .terms-list {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	align-items: center;
}

footer .footer-bottom .terms-list li {
	position: relative;
	margin-right: 10px;
	padding-right: 10px;
	line-height: normal;
}

footer .footer-bottom .terms-list li a {
	color: #0A1220;
	font-size: 14px;
}

footer .footer-bottom .terms-list li::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	height: 12px;
	width: 1px;
	background-color: #0A1220;
}

footer .footer-bottom .terms-list li:last-child {
	margin-right: 0;
	padding-right: 0;
}

footer .footer-bottom .terms-list li:last-child::after {
	display: none;
}

/* ── Shared logged-in footer (.footer-wrapper .footer) ───────────────────
   layout/base.html renders this exact footer markup on every logged-in
   page, and main.css already gives it consistent width/padding via
   compound-class selectors Bootstrap can't out-specificity. But
   claimview.html links Bootstrap's CSS in {% block bottom_script %} --
   after this stylesheet. Confirmed via headless-browser computed styles
   (getComputedStyle, not just reading source) that the one real,
   measurable difference this causes is font-size on the footer's
   copyright/links text: main.css has a bare `small{font-size:60%}`
   (-> 10.8px here), and bootstrap.min.css's bundle contains two small{}
   rules -- `font-size:80%` and, later in the same file at equal
   specificity, `.small,small{font-size:.875em}`, which wins by source
   order and inflates it to 15.75px on claimview only. Also pinning
   line-height: main.css's `body{line-height:150%}` (a percentage)
   computes to a fixed px value that's inherited as-is down to small,
   whereas Bootstrap's `body{line-height:1.5}` (unitless) is inherited as
   a ratio and gets *recomputed* against small's own (smaller) font-size
   -- same declared ratio, very different inherited result, which was
   compressing the footer's height on claimview even after the font-size
   fix above. font-family was already Montserrat everywhere (verified,
   not actually broken) -- pinning it below anyway costs nothing and
   closes the same inheritance gap for any future stylesheet loaded
   after this one. */
.footer-wrapper .footer {
	font-family: "Montserrat", sans-serif;
	line-height: 150%;
	padding-left: .9375rem;
	padding-right: .9375rem;
	width: 100%;
	float: left;
	padding-top: 1rem;
	padding-bottom: 1rem;
	background-color: #252525;
	color: #828282;
}
.footer-wrapper .footer .footer-content {
	padding-left: .9375rem;
	padding-right: .9375rem;
	width: 66.66667%;
	float: left;
}
.footer-wrapper .footer .footer-content .section-subheader {
	padding-left: 0;
	padding-right: 0;
	width: 100%;
	float: left;
	padding-bottom: 0;
}
.footer-wrapper .footer small {
	font-size: 60%;
}
.footer-wrapper .footer .footer-image {
	padding-left: .9375rem;
	padding-right: .9375rem;
	width: 33.33333%;
	float: left;
}
.footer-wrapper .footer .footer-image img {
	float: right;
}
.footer-wrapper .footer a {
	color: #B1B1B1;
}
.footer-wrapper .footer a:hover {
	color: #989898;
}
@media only screen and (min-width: 40.0625em) {
	.footer-wrapper .footer .footer-content .section-subheader {
		width: 50%;
		float: left;
	}
	.footer-wrapper .footer .footer-content .section-subheader.copy {
		width: 100%;
		float: left;
	}
}
@media only screen and (min-width: 64.0625em) {
	.footer-wrapper .footer .footer-content {
		padding-left: 0;
		padding-right: 0;
		width: 50%;
		float: left;
		margin-left: 16.66667% !important;
	}
	.footer-wrapper .footer .footer-content .section-subheader {
		width: 25%;
		float: left;
	}
	.footer-wrapper .footer .footer-content .section-subheader.copy {
		width: 25%;
		float: left;
	}
	.footer-wrapper .footer .footer-image {
		padding-left: 0;
		padding-right: 0;
		width: 16.66667%;
		float: left;
	}
}


.aboutus-page .custom-row {
	display: flex;
	flex-wrap: wrap;
	font-family: "Montserrat", sans-serif;
}

.aboutus-page .grid-5 {
	width: 40%;
}

.aboutus-page .grid-7 {
	width: 60%;
}

.aboutus-left-section .top-content {
	background-color: #DEECFF80;
	padding: 152px 25px 0;
}

.aboutus-left-section .title-section {
	text-align: center;
	margin-bottom: 90px;
}

.aboutus-left-section .title-section h1 {
	font-size: 42px;
	font-weight: bold;
	font-family: "Montserrat", sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.aboutus-left-section .title-section .login-banner-title {
	color: #0A1220 !important;
}

.aboutus-left-section .title-section h1 span {
	color: #000000;
	font-family: "Montserrat", sans-serif;
	padding-left: 5px;
}

.aboutus-left-section .title-section p {
	font-size: 18px;
	color: #0A1220;
	font-family: "Montserrat", sans-serif;
}

.left-section-footer {
	background-color: #425570;
	padding: 38px 15px;
	text-align: center;
}

.left-section-footer p {
	color: white;
	margin-bottom: 0;
	font-family: "Montserrat", sans-serif;
}


/*About us ppage*/
.aboutus-right-section {
	padding: 68px 100px 0;
}

.aboutus-right-section .aboutus-logo-section {
	display: flex;
	justify-content: end;
	margin-bottom: 48px;
}

.aboutus-right-section .welcome-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.aboutus-right-section .welcome-section h4 {
	font-size: 22px;
	font-weight: bold;
	color: #0A1220;
	font-family: "Montserrat", sans-serif;
}

.aboutus-right-section .welcome-section .secondary-btn {
	border: 1px solid #999999;
	color: #0A1220;
	padding: 5px 23px;
	border-radius: 8px;
	font-weight: bold;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	letter-spacing: 0.28px;
}

.aboutus-right-section .welcome-section .secondary-btn:hover {
	background-color: #0A1220;
	color: white;
}

.aboutus-right-section .desc {
	font-size: 14px;
	color: #0A1220;
	font-family: "Montserrat", sans-serif;
	margin-bottom: 40px;
}

.aboutus-card.pink {
	background-color: #FFF5F4;
}

.aboutus-card.lavender {
	background-color: #B57FE31A;
}

.aboutus-card.green {
	background-color: #3597891A;
}

.aboutus-card.cyan {
	background-color: #0000001A;
}

.aboutus-card-wrapper .aboutus-card {
	padding: 20px 42px;
	display: flex;
	margin-bottom: 20px;
	border-radius: 6px;
}

.aboutus-card-wrapper .aboutus-card img {
	width: 60px;
	height: 60px;
}

.aboutus-card .card-body {
	margin-left: 42px;
}

.aboutus-card .card-body h5 {
	font-size: 18px;
	margin-top: 0;
	font-weight: bold;
	color: #0A1220;
	margin-bottom: 0;
}

.aboutus-card .card-body p {
	font-size: 15px;
	color: #0A1220;
	margin-bottom: 0
}

.about-footer .custom-row {
	display: flex;
	align-items: center;
}

.about-footer .grid-5 {
	width: 40%;
	background-color: #425570;
	display: flex;
	align-items: center;
	padding: 34px 71px;
}

.about-footer .grid-5 p {
	margin-bottom: 0;
	font-size: 14px;
	color: white;
}

.about-footer .grid-7 {
	width: 60%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 34px 71px;
}

.about-footer .terms-list {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	align-items: center;
}

.about-footer .terms-list li {
	position: relative;
	margin-right: 10px;
	padding-right: 10px;
	line-height: normal;
}

.about-footer .terms-list li a {
	color: #0A1220;
	font-size: 14px;
}

.about-footer .terms-list li a:hover {
	color: #000000;
}

.about-footer .terms-list li::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	height: 12px;
	width: 1px;
	background-color: #0A1220;
}

.about-footer .terms-list li:last-child {
	margin-right: 0;
	padding-right: 0;
}

.about-footer .terms-list li:last-child::after {
	display: none;
}

.top-bar .top-bar-section .navbar-toggle {
	display: none;
	height: auto;
	background-color: transparent;
	border: 1px solid black;
	border-radius: 4px;
	position: unset;
	padding: 7px;
}

.top-bar .top-bar-section .navbar-toggle img {
	width: 20px;
	height: auto;
}



/* Terms */
.terms-condition {
	padding-top: 100px;
	background-color: #FFFFFF;
}

.content-body.terms-content-body {
	margin-top: 0;
}

.terms-condition .terms-header {
	margin-bottom: 30px;
}

.terms-condition .terms-header h4 {
	font-size: 22px;
	color: #0A1220;
	font-weight: bold;
	margin-bottom: 15px;
	margin-top: 0;
	font-family: "Montserrat", sans-serif;
}

.terms-condition .terms-header p {
	font-size: 16px;
	color: #0A1220;
	margin-bottom: 0;
	font-family: "Montserrat", sans-serif;
}

.terms-content {
	border: 1px solid #C9C9C9;
	border-radius: 6px;
	padding: 34px;
	margin-bottom: 26px;
	max-height: 542px;
	overflow: auto;
}

.terms-content .terms-wrapper p {
	font-size: 13px;
	font-weight: 15px;
	color: #0A1220;
}

.terms-btn-wrapper {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 40px;
}

.terms-btn-wrapper .cancel-btn {
	background-color: transparent;
	border: 1px solid transparent;
	color: #9B9B9B;
	font-size: 14px;
	font-weight: bold;
	padding: 12px 53px;
	margin-bottom: 0;
	margin-right: 15px;
	border-radius: 6px;
}

.terms-btn-wrapper .cancel-btn:hover {
	background-color: #9B9B9B;
	border: 1px solid #9B9B9B;
	color: white;
}

.terms-btn-wrapper .accept-btn {
	background-color: #2F5BFF;
	border: 1px solid transparent;
	color: white;
	font-size: 14px;
	font-weight: bold;
	padding: 12px 53px;
	margin-bottom: 0;
	border-radius: 6px;
}

.terms-btn-wrapper .accept-btn:hover {
	background-color: transparent;
	border: 1px solid #2F5BFF;
	color: #2F5BFF;
}

.terms-footer {
	background-color: #F7F8FC;
	padding: 38px 72px;
}

.terms-footer p {
	margin-bottom: 0;
	color: #0A1220;
	font-size: 14px;
	font-family: "Montserrat", sans-serif;
}


/* New Signup Page */
.newsignup-page .aboutus-left-section .title-section h1 {
	color: #0A1220;
}

.newsignup-page .custom-row {
	min-height: 100vh;
}

.content-body.newsignup-content-body {
	margin-top: 0;
}

.title-section.newsignup-title-section {
	text-align: left;
	padding: 100px 40px 0;
	margin-bottom: 40px;
}

.title-section.newsignup-title-section p {
	max-width: 380px;
}

.title-section.newsignup-title-section h1 {
	justify-content: flex-start;
}

.aboutus-left-section.newsignup-left-section {
	height: 100%;
}

.top-content.newsignup-top-content {
	padding: 0;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.newsignup-hero-img {
	width: 100%;
	flex: 1;
	object-fit: cover;
	margin: 0;
	max-width: 100%;
	-webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000000 15%, #000000 100%);
	mask-image: linear-gradient(to bottom, transparent 0%, #000000 15%, #000000 100%);
}

.aboutus-right-section.newsignup-right-section {
	background-color: #FFFFFF;
	height: 100%;
}

.newsignup-page .accordion .accordion-title {
	position: relative;
	border: 1px solid #2F5BFF;
	border-radius: 6px;
	padding: 12px 10px;
	padding-right: 40px;
	text-align: center;
	margin-bottom: 20px;
	cursor: pointer;
}

.newsignup-page .accordion .accordion-title h5 {
	font-size: 18px;
	color: #0A1220;
	font-weight: bold;
	margin: 0;
}

.newsignup-page .accordion .accordion-title .accordion-icon {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
}

.newsignup-page .accordion .accordion-title .accordion-icon img {
	width: 16px;
	height: auto;
}

.newsignup-page .accordion .accordion-contant {
	display: none;
}

.newsignup-page .form-control input {
	height: auto;
	background-color: #000000;
	border: none;
	border-radius: 8px;
	padding: 18px 25px;
	font-size: 15px;
	color: #0A1220;
	font-weight: 600;
	margin-bottom: 16px;
}

.aboutus-right-section.tellusmore-right-section {
	background-color: #FFFFFF;
}

.tellusmore-page .form-control input {
	outline: none;
}

.newsignup-page .form-control input::placeholder {
	color: #0A1220;
}

.newsignup-page .form-control.username {
	position: relative;
}

.newsignup-page .form-control.username input {
	padding-left: 55px;
}

.newsignup-page .form-control.username::before {
	content: '@';
	position: absolute;
	top: 50%;
	left: 25px;
	transform: translateY(-50%);
	font-size: 15px;
	font-weight: bold;
	color: #0A1220;
}

/* /users/prelogin, /users/newsignup, and /users/tellusmore, via the
   .auth-form-page marker class added to those templates' root element.
   .newsignup-page's own input styling above (and further below, for the
   phone/code verification inputs) sets background-color:#000000 with
   dark, near-black text on top -- unreadable. White keeps the same
   already-dark, already-readable-on-white text color as-is. !important
   because these selectors are the same specificity as the rules they
   override and must win regardless of source order. Scoped to
   .auth-form-page rather than .newsignup-page itself so /users/interest
   (which also carries .newsignup-page but was not asked to change) is
   unaffected. */
.auth-form-page .form-control input,
.auth-form-page .confrimation-code .phone-input-wrapper select,
.auth-form-page .confrimation-code .phone-input-wrapper input,
.auth-form-page .confrimation-code .code-wrapper input {
	background-color: #FFFFFF !important;
}

/* ── Left side nav (#side-nav / .side-nav-list) ──────────────────────────
   Site-wide, unlike the page-scoped "Light-theme pages" block below: the
   left nav's background is white and its link text stays the dark gray
   main.css already uses (ul.side-nav-list li a{color:#45494D}), so no
   color override is needed there -- only the background differed from
   white by default (main.css: .side-nav-menu{background-color:#E5E5E5}). */
.side-nav-menu {
	background-color: #000000;
}

/* ── Light-theme pages ────────────────────────────────────────────────────
   Partial reversal of this session's black-theme rollout, for exactly:
   /user/dashboard, /home/claimmessages, /kb, /home/claimview/<id>,
   /home/claimDetail/<id>, /users/overallProfile, /users/profile-edit --
   see body.light-theme-page, set in layout/base.html from request.path.
   Explicitly NOT a site-wide revert: every other page (marketplace,
   /home/claims, /users/add-profile, etc.) keeps the black theme as-is.
   (The left nav itself is the one exception -- see .side-nav-menu above,
   which is white site-wide regardless of this class.) */
/* The white #side-nav background above only covers its own box, which
   shrink-wraps to its short 3-link list (see .full-height, .side-nav-menu
   { height: auto !important } elsewhere in this file) -- on any page whose
   .content-body is taller than that (nearly always), the rest of the
   column was still showing the page's own black background underneath/
   beside it, reading as "the side nav is still black." .main-content's
   layout is float-based (main.css: #side-nav and .content-body are both
   `float:left` with percentage widths), and CSS has no reliable way to
   equalize two FLOATED columns' heights based on content -- percentage
   heights on floated children don't resolve against a content-driven
   parent height.

   .main-content actually has a THIRD child here, though: whenever logged
   in (see layout/base.html's full_width_footer), .content-body's own
   closing tag is emitted early and .footer-wrapper is placed as a sibling
   of it, still inside .main-content, specifically so the footer spans the
   full page width below both columns rather than being squeezed into
   .content-body's ~83% column -- see the earlier "footer doesn't match
   dashboard" fix. A plain `display:flex` (single row) would put all three
   side by side, breaking that. flex-wrap:wrap fixes this along with the
   height mismatch in one step: #side-nav + .content-body already sum to
   100% width and fill line 1 together (so they stretch to match each
   other via align-items' default "stretch", same as a non-wrapping flex
   row would), and .footer-wrapper -- unable to fit on that now-full line
   -- automatically wraps to its own line 2 below, full width, with no
   stretch applied there since it has no sibling on that line. The clearfix
   pseudo-elements are for the float layout only and would otherwise
   themselves become stray empty flex items, so they're suppressed here. */
body.light-theme-page .main-content {
	display: flex;
	flex-wrap: wrap;
	/* main.css's own .main-content{height:100%} resolves against the
	   viewport (via the html,body{height:100%} chain), a definite (not
	   auto) cross-size -- which, split across the two flex lines here by
	   default align-content, was stretching #side-nav (line 1) up to
	   fill however much of that leftover viewport-based height got
	   allocated to its line, independent of how tall .content-body's own
	   content actually is. height:auto makes the flex container's own
	   cross-size content-driven instead (the two lines' natural heights,
	   stacked), so line 1's stretch target becomes .content-body's real
	   height, not a slice of the viewport. */
	height: auto;
}
body.light-theme-page .main-content:before,
body.light-theme-page .main-content:after {
	content: none;
	display: none;
}
body.light-theme-page #side-nav {
	height: auto;
}
body.light-theme-page .profile-detail-page {
	background-color: #FFFFFF;
}
body.light-theme-page input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="submit"]):not([type="button"]):not([type="hidden"]),
body.light-theme-page select,
body.light-theme-page textarea {
	background-color: #FFFFFF !important;
	color: #000000 !important;
}
/* #claim-detail-form's own rules further below (search "claimDetail only")
   are ID-scoped and so win specificity over the class-based rule just
   above on their own -- overridden directly there instead of fighting
   specificity here. */

.newsignup-page .accordion .divider {
	text-align: center;
	margin-bottom: 20px;
}

.newsignup-page .accordion .divider p {
	margin-bottom: 0;
	position: relative;
	font-size: 14px;
	color: #0A1220;
}

.newsignup-page .signin-btn {
	width: 100%;
	border: 1px solid #2F5BFF;
	border-radius: 8px;
	background-color: transparent;
	color: #0A1220;
	font-size: 18px;
	font-weight: bold;
	padding: 12px;
	margin-top: 10px;
}

.newsignup-page .signin-btn:hover,
.newsignup-page .signin-btn.active {
	background-color: #2F5BFF;
	color: white;
	border: 1px solid #2F5BFF;
}

.newsignup-page .aboutus-card-wrapper .form-label p {
	font-size: 15px;
	font-weight: bold;
	color: #0A1220;
	margin-bottom: 12px;
}

.aboutus-card-wrapper .checkbox-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 50px;
}

.aboutus-card-wrapper .checkbox-wrapper .form-group {
	display: flex;
	align-items: center;
	border: 1px solid #7FACE3;
	border-radius: 6px;
	margin-right: 15px;
	margin-bottom: 15px;
	width: calc(25% - 45px/4);
	position: relative;
}

.aboutus-card-wrapper .checkbox-wrapper .form-group.checked {
	background-color: #000000;
}

.aboutus-card-wrapper .checkbox-wrapper .form-group.checked label {
	color: white !important;
}

.aboutus-card-wrapper .checkbox-wrapper .form-group.checked label:before {
	background-color: white;
	border-color: white;
}

.aboutus-card-wrapper .checkbox-wrapper .form-group:nth-child(4n) {
	margin-right: 0;
}

.aboutus-card-wrapper .checkbox-wrapper .form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: block;
    cursor: pointer;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0;
}

.aboutus-card-wrapper .checkbox-wrapper .form-group label {
	position: relative;
	cursor: pointer;
	margin: 0;
	font-size: 11px;
	color: #0A1220;
	font-weight: 600;
	padding: 7px 9px;
	width: 100%;
}

.aboutus-card-wrapper .checkbox-wrapper .form-group label:before {
	content: '';
	-webkit-appearance: none;
	background-color: transparent;
	border: 1px solid #999999;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
	padding: 7px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 14px;
}

.aboutus-card-wrapper .checkbox-wrapper .form-group input:checked+label:after {
	content: '';
	display: block;
	position: absolute;
	top: 10px;
	left: 15px;
	width: 5px;
	height: 10px;
	border: solid #0079bf;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.aboutus-card-wrapper .checkbox-wrapper .form-group label.checked-checkbox:after {
	content: '';
	display: block;
	position: absolute;
	top: 10px;
	left: 15px;
	width: 5px;
	height: 10px;
	border: solid #0079bf;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.aboutus-card-wrapper .checkbox-wrapper .form-group input:checked+label {
    background-color: #000000;
    color: #fff !important;
}

.aboutus-card-wrapper .checkbox-wrapper .form-group input:checked+label:before {
    background-color: white;
    border-color: white;
}

.aboutus-card-wrapper .checkbox-wrapper .form-group input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    left: 15px;
    width: 5px;
    height: 10px;
    border: solid #0079bf;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Profile Detail page */
.profile-detail-page {
	background-color: #000000;
}

.custom-container-lg {
	max-width: 1008px;
	margin: 0 auto;
	padding: 32px 0;
}

.profile-detail-page .profile-detail-wrapper {
	padding: 50px 68px 46px;
	background-color: white;
	border-radius: 10px;
}

.profile-detail-page .profile-detail-wrapper .section-header {
	border-bottom: 1px solid #7FACE3;
	padding-bottom: 14px;
	margin-bottom: 33px;
}

.profile-detail-page .profile-detail-wrapper .section-header h1 {
	font-size: 24px;
	font-weight: bold;
	color: #0A1220;
	margin-bottom: 0;
}

.profile-detail-page .upload-image {
	display: flex;
	align-items: center;
	margin-bottom: 36px;
}

.profile-detail-page .profile-image {
	background-color: #999999;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.profile-detail-page .profile-image img {
	width: 25px;
	height: 25px;
}

.profile-detail-page .profile-image-detail {
	margin-left: 15px;
}

.profile-detail-page .profile-image-detail .image-name {
	font-size: 16px;
	font-weight: bold;
	color: #241E40;
	margin-bottom: 0;
}

.profile-detail-page .profile-image-detail .note {
	font-size: 13px;
	color: #241E40;
	margin-bottom: 0;
}

.profile-detail-page .form-control {
	margin-bottom: 34px;
}

.profile-detail-page .form-control label {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
}

.profile-detail-page .form-control label .required {
	color: #E92035;
	font-size: 14px;
	font-weight: bold;
}

.profile-detail-page .form-control textarea,
.profile-detail-page .form-control input,
.profile-detail-page .form-control select {
	background-color: #000000;
	font-size: 15px;
	font-weight: 600;
	color: #2F444C;
	padding: 17px 25px;
	height: auto;
	border: none;
	border-radius: 8px;
	margin-bottom: 0;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.profile-detail-page .form-control .select-wrapper {
	position: relative;
}

.profile-detail-page .form-control .select-wrapper::before {
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 16px;
	width: 20px;
	height: 12px;
	background-image: url('../img/down-arrow.png');
	background-repeat: no-repeat;
	transform: translateY(-50%);
	z-index: 99;
}

.profile-detail-page .form-control .select-wrapper::after {
	background-color: #000000;
	border-radius: 7px;
	width: 36px;
	height: 28px;
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}

.profile-detail-page .form-control input::placeholder {
	color: rgba(47, 68, 76, 0.5);
}

.profile-detail-page .form-control .form-input.username {
	position: relative;

}

.profile-detail-page .form-control .form-input.username input {
	padding-left: 45px;
}

.profile-detail-page .form-control .form-input.username::before {
	content: '@';
	position: absolute;
	top: 50%;
	left: 25px;
	transform: translateY(-50%);
	font-size: 15px;
	font-weight: bold;
	color: rgba(60, 60, 60, 0.5);
}

.profile-detail-page .form-group .form-control .address {
	margin-bottom: 18px;
}

.profile-detail-page .form-group .form-control .input-group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 18px;
}

.profile-detail-page .form-group .form-control .input-group:last-child {
	margin-bottom: 0;
}

.profile-detail-page .form-group .form-control .input-group input,
.profile-detail-page .form-group .form-control .input-group .select-wrapper {
	width: calc(50% - 50px/2);
	margin-right: 50px;
}

.profile-detail-page .form-group .form-control .input-group input:last-child,
.profile-detail-page .form-group .form-control .input-group .select-wrapper:last-child {
	margin-right: 0;
}

.profile-detail-page .button-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 6px;
}

.profile-detail-page .button-wrapper .back-button {
	border: 2px solid #BEBEBE;
	background-color: transparent;
	color: #241E40;
	padding: 9px 28px;
	border-radius: 4px;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 0;
}

.profile-detail-page .button-wrapper .save-button {
	background-color: #000000;
	border-radius: 8px;
	color: white;
	font-size: 16px;
	font-weight: bold;
	padding: 11px 50px;
	margin-bottom: 0;
}




.confrimation-code .phone-input-wrapper,
.confrimation-code .code-wrapper {
	position: relative;
	margin-bottom: 16px;
/*	border: 1px solid #000000;*/
}

.confrimation-code .phone-input-wrapper select {
	margin: 0;
	width: auto;
	position: absolute;
	top: 0;
	background-color: #000000;
	font-size: 15px;
	font-weight: 600;
	color: #2F444C;
	z-index: 9;
	border: 0;
	padding: 17px 25px 17px 15px;
	height: auto;
	border-radius: 8px;
}

.confrimation-code .phone-input-wrapper input {
	background-color: #000000;
	font-size: 15px;
	font-weight: 600;
	color: #2F444C;
	padding: 17px 25px;
	height: auto;
	border: none;
	border-radius: 8px;
	margin-bottom: 0;
	padding-left: 100px;
}

.confrimation-code .phone-input-wrapper input::placeholder {
	color: #2F444C;
}

.confrimation-code .cust-send button {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	background-color: #000000;
	border: 1px solid #000000;
	padding: 9px 32px;
	font-size: 16px;
	color: white;
	font-weight: bold;
	height: auto;
	border-radius: 8px;
}

.newsignup-page .confrimation-code .cust-send button {
	background-color: #2F5BFF;
	border: 1px solid #2F5BFF;
}

.confrimation-code .cust-send button:hover {
	background-color: transparent;
	color: #000000;
}
.cust-send button.signin-btn {
    position: static;
    transform: inherit;
}
.confrimation-code .phone-input-wrapper a {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	background-color: #000000;
	border: 1px solid #000000;
	padding: 9px 49px;
	font-size: 16px;
	color: white;
	font-weight: bold;
	height: auto;
	border-radius: 8px;
}

.newsignup-page .confrimation-code .phone-input-wrapper a {
	background-color: #2F5BFF;
	border: 1px solid #2F5BFF;
}

.confrimation-code .phone-input-wrapper a:hover {
	background-color: transparent;
	color: #000000;
}

.confrimation-code .code-wrapper input {
	background-color: #000000;
	font-size: 15px;
	font-weight: 600;
	color: #2F444C;
	padding: 17px 25px;
	height: auto;
	border: none;
	border-radius: 8px;
	margin-bottom: 0;
}

.newsignup-page .confrimation-code .phone-input-wrapper select,
.newsignup-page .confrimation-code .phone-input-wrapper input,
.newsignup-page .confrimation-code .phone-input-wrapper input::placeholder,
.newsignup-page .confrimation-code .code-wrapper input {
	color: #0A1220;
}

.confrimation-code .code-wrapper button {
	display: inline-block;
	min-width: 143px;
	text-align: center;
	height: 38px;
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	background-color: #B57FE3;
	border: 1px solid #B57FE3;
	padding: 9px;
	font-size: 16px;
	line-height: normal;
	color: white;
	font-weight: bold;
	height: auto;
	border-radius: 8px;
}

.confrimation-code .code-wrapper button:hover {
	background-color: transparent;
	color: #B57FE3;
}

.forgot-password .back-btn--wrapper {
	display: inline-block;
	width: 100%;
	margin-bottom: 15px;
}

.forgot-password .back-btn--wrapper a {
	padding: 15px 13px;
	padding-left: 35px;
	position: relative;
	color: #0A1220;
	font-size: 13px;
	font-family: "Montserrat", sans-serif;
	margin-bottom: 0;
}

.forgot-password .back-btn--wrapper a:hover {
	background-color: transparent;
	color: #0A1220;
}

.forgot-password .back-btn--wrapper a::before {
	content: '';
	display: inline-block;
	width: 12px;
	height: 12px;
	position: absolute;
	top: 50%;
	left: 13px;
	transform: translateY(-50%);
	background-image: url('../img/back.png');
	background-repeat: no-repeat;
	background-size: contain;
}
.aboutus-right-section .form-control input {
/*    border: 1px solid #000000;*/
}
.forgot-password .welcome-section {
	margin-bottom: 12px;
}

.forgot-password .desc {
	margin-bottom: 31px;
}

.forgot-password .aboutus-card-wrapper input {
	background-color: #000000;
	font-size: 15px;
	font-weight: 600;
	color: #2F444C;
	padding: 17px 25px;
	height: auto;
	border: none;
	border-radius: 8px;
	margin-bottom: 0;
	margin-bottom: 30px;
}

.forgot-password .send-btn--wrapper {
	display: inline-block;
	width: 100%;
}

.forgot-password .send-btn--wrapper button {
	border: 1px solid #000000;
	background-color: white;
	padding: 12px;
	border-radius: 6px;
	color: #0A1220;
	font-size: 18px;
	font-weight: bold;
	max-width: 303px;
	width: 100%;
	text-transform: capitalize;
}

.forgot-password .send-btn--wrapper button:hover {
	background-color: #000000;
	color: white;
}

/* Select input */

.filters {
	position: relative;
	width: 100%;
}

.section-services .custom-select {
	height: inherit;
	padding: 0 20px;
	line-height: inherit;
	font-size: 14px;
	font-weight: bold;
	border-radius: 27px;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 5px;
	padding-bottom: 5px;
	color: #000;
}

.select-club-services {
	--max-scroll: 8;
	position: relative;
}

.select-club-services select {
	display: none;
}

.select-club-services>span {
	cursor: pointer;
	background-color: #000000;
	font-size: 15px;
	font-weight: 600;
	color: #2F444C;
	padding: 17px 25px;
	display: block;
	position: relative;
	border-radius: 8px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.select-club-services>span:before {
	margin-right: 4px;
	-webkit-transform: scale(0.96, 0.8) rotate(50deg);
	transform: scale(0.96, 0.8) rotate(50deg);
}

.select-club-services>span:after {
	-webkit-transform: scale(0.96, 0.8) rotate(-50deg);
	transform: scale(0.96, 0.8) rotate(-50deg);
}

.select-club-services ul {
	margin: 0;
	padding: 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	max-height: calc(var(--max-scroll) * 42px);
	top: 42px;
	left: 0;
	z-index: 1;
	right: 0;
	background: #F5F9FF;
	border-radius: 6px;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
	transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32), -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
	-webkit-transform: scale(0.8) translate(0, 4px);
	transform: scale(0.8) translate(0, 4px);
	border: 1px solid var(none);
}

.select-club-services ul li {
	opacity: 0;
	-webkit-transform: translate(6px, 0);
	transform: translate(6px, 0);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.select-club-services ul li a {
	cursor: pointer;
	display: block;
	padding: 10px 16px;
	color: #191919;
	text-decoration: none;
	outline: none;
	position: relative;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.select-club-services ul li a:hover {
	color: #6C7486;
}

.select-club-services ul li.active a {
	color: #6C7486;
	background: #E4ECFA;
}

.select-club-services ul li.active a:before,
.select-club-services ul li.active a:after {
	--scale: .6;
	content: '';
	display: block;
	width: 10px;
	height: 2px;
	position: absolute;
	right: 17px;
	top: 50%;
	opacity: 0;
	background: #191919;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

.select-club-services ul li.active a:before {
	-webkit-transform: rotate(45deg) scale(var(--scale));
	transform: rotate(45deg) scale(var(--scale));
}

.select-club-services ul li.active a:after {
	-webkit-transform: rotate(-45deg) scale(var(--scale));
	transform: rotate(-45deg) scale(var(--scale));
}

.select-club-services ul li.active a:hover:before,
.select-club-services ul li.active a:hover:after {
	--scale: .9;
	opacity: 1;
}

.select-club-services ul li:first-child a {
	border-radius: 6px 6px 0 0;
}

.select-club-services ul li:last-child a {
	border-radius: 0 0 6px 6px;
}

.select-club-services.filled>span {
	color: #191919;
}

.select-club-services.open>span {
	border-color: #fff;
}

.select-club-services.open>span:before,
.select-club-services.open>span:after {
	background: #E4ECFA;
}

.select-club-services.open>span:before {
	-webkit-transform: scale(0.96, 0.8) rotate(-50deg);
	transform: scale(0.96, 0.8) rotate(-50deg);
}

.select-club-services.open>span:after {
	-webkit-transform: scale(0.96, 0.8) rotate(50deg);
	transform: scale(0.96, 0.8) rotate(50deg);
}

.select-club-services.open ul {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1) translate(0, 12px);
	transform: scale(1) translate(0, 12px);
	-webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
	transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32), -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
}

.select-club-services.open ul li {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}

.select-club-services.open ul li:nth-child(1) {
	-webkit-transition-delay: 80ms;
	transition-delay: 80ms;
}

.select-club-services.open ul li:nth-child(2) {
	-webkit-transition-delay: 160ms;
	transition-delay: 160ms;
}

.select-club-services.open ul li:nth-child(3) {
	-webkit-transition-delay: 240ms;
	transition-delay: 240ms;
}

.select-club-services.open ul li:nth-child(4) {
	-webkit-transition-delay: 320ms;
	transition-delay: 320ms;
}

.select-club-services.open ul li:nth-child(5) {
	-webkit-transition-delay: 400ms;
	transition-delay: 400ms;
}

.select-club-services.open ul li:nth-child(6) {
	-webkit-transition-delay: 480ms;
	transition-delay: 480ms;
}

.select-club-services.open ul li:nth-child(7) {
	-webkit-transition-delay: 560ms;
	transition-delay: 560ms;
}

.select-club-services.open ul li:nth-child(8) {
	-webkit-transition-delay: 640ms;
	transition-delay: 640ms;
}

.select-club-services.open ul li:nth-child(9) {
	-webkit-transition-delay: 720ms;
	transition-delay: 720ms;
}

.select-club-services.open ul li:nth-child(10) {
	-webkit-transition-delay: 800ms;
	transition-delay: 800ms;
}

select.select-club-services {
	padding: 9px 16px;
	border-radius: 6px;
	color: #191919;
	border: 1px solid#687898;
	background: #fff;
	line-height: 22px;
	font-size: 16px;
	font-family: inherit;
	-webkit-appearance: none;
}


/* Claim Detail */
.claim-detail {
	background-color: #000000;
	padding: 42px 0;
}

.claim-heading {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}

.claim-heading .left-side h5 {
	font-size: 25px;
	font-weight: bold;
	color: #0A1220;
	margin-bottom: 13px;
}

.claim-heading .left-side p {
	font-size: 18px;
	color: #0A1220;
	margin-bottom: 0;
}

.icon-cancel-btn {
	border: 2px solid #FED0D3;
	background-color: white;
	color: #E92035;
	display: flex;
	align-items: center;
	padding: 8px 11px;
	font-weight: bold;
	font-size: 14px;
	border-radius: 4px;
}

.icon-cancel-btn:hover {
	background-color: #FED0D3;
}

.icon-cancel-btn img {
	margin-right: 8px;
	width: 10px;
	height: 10px;
}

.claim-detail .nav-tabs {
	margin-bottom: 46px;
	margin-left: 0;
	border-bottom: none;
}

.claim-detail .nav-item {
	margin-right: 22px;
}

.claim-detail .nav-item button {
	background-color: rgba(60, 60, 60, 0.5);
	padding: 13px 12px 14px;
	text-align: center;
	color: white;
	min-width: 172px;
	white-space: unset;
	border-radius: 8px;
	font-size: 14px;
	font-weight: bold;
}

.claim-detail .nav-item button.active {
	background-color: #000000;
	color: white;
}

.claim-detail .nav-item button .line {
	display: block;
	width: 100%;
	height: 2px;
	background-color: white;
	margin-top: 6px;
}

.claim-detail .tab-content-wrapper {
	background-color: white;
	padding: 34px 48px;
	border-radius: 10px;
}

.claim-detail .accordion .accordion-item {
	border-radius: 8px;
	background-color: #000000;
	border: 1px solid #7FACE3 !important;
	margin-bottom: 28px;
	padding: 1px;
}

.claim-detail .accordion .accordion-button {
	border-radius: 8px;
	padding: 19px 23px;
	font-size: 18px;
	color: #0A1220;
	font-weight: bold;
	background-color: #000000;
	border: 1px solid #7FACE3;
	border-top: 0;
	border-left: 0;
	border-right: 0;
}

.claim-detail .accordion .accordion-button.collapsed {
	border: none;
}

.claim-detail .accordion .accordion-button :focus {
	box-shadow: none;
}

.claim-detail .accordion .accordion-body {
	padding: 22px 30px;
}

.claim-detail .custom-row-9 {
	max-width: 1010px;
}

.claim-detail .custom-row-3 {
	max-width: calc(100% - 1020px);
	margin-left: 10px;
}

.claim-accordion-card {
	background-color: #E5E5E5;
	border-radius: 8px;
	padding: 20px 25px;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
}

.claim-accordion-card .claim-card-detail {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	margin-right: 43px;
}

.claim-accordion-card .claim-card-detail p {
	font-size: 16px;
	font-weight: bold;
	color: #0A1220;
	margin-bottom: 30px;
}

.claim-accordion-card .claim-card-detail .recording img {
	width: 30px;
	height: 30px;
}

.claim-accordion-card .claim-card-detail .recording span {
	font-size: 11px;
	font-weight: 600;
	color: #0A1220;
	margin-left: 10px;
}

.claim-card-input textarea {
	height: 106px;
	width: 414px !important;
	padding: 15px;
}

.about-claim {
	background-color: #DBE8F7;
	border-radius: 10px;
	margin-top: 120px;
}

.about-claim .thick-border {
	background-color: #7FACE3;
	height: 12px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.about-claim .about-claim-wrapper {
	padding: 11px 8px;
}

.about-claim .about-claim-wrapper img {
	margin-bottom: 28px;
}

.about-claim .about-claim-wrapper .title {
	font-size: 21px;
	color: #0A1220;
	font-weight: bold;
	padding: 0 20px;
	font-family: "Montserrat", sans-serif;
}

.about-claim .about-claim-wrapper ul {
	padding-left: 20px;
}

.about-claim .about-claim-wrapper ul li {
	font-size: 12px;
	color: #0A1220;
}

.claim-detail .btn-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.claim-detail .save-button {
	background-color: #000000;
	border-radius: 8px;
	color: white;
	font-size: 16px;
	font-weight: bold;
	padding: 8px 56px;
	margin-bottom: 0;
}

.claim-detail .tab-title {
	margin-bottom: 24px;
}

.claim-detail .tab-title h4 {
	font-size: 21px;
	font-weight: bold;
	color: #0A1220;
	padding-bottom: 14px;
	margin-bottom: 0;
	font-family: "Montserrat", sans-serif;
}

.claim-detail form .form-group .form-control .input-group .select-wrapper {
	width: 100%;
	margin-right: 0;
}

.claim-detail form .select-input {
	width: calc(50% - 50px/2);
	margin-right: 50px;
}

.claim-detail form .select-input:last-child {
	margin-right: 0;
}

.claim-detail .form-group .input-group .select-input .form-group .form-control {
	margin-bottom: 0;
}

.claim-detail form textarea.form-control {
	background-color: #000000;
	border-radius: 8px;
	padding: 15px;
	color: 15px;
	min-height: 206px;
}

.underline {
	border-bottom: 1px solid #7FACE3;
}

/* @media (min-width: 64.0625em) {

	.aboutus-page .grid-5,
	.about-footer .grid-5 {
		width: 40%;
	}

	.aboutus-page .grid-7,
	.about-footer .grid-7 {
		width: 60%;
	}
} */

@media (max-width: 1199px) {

	.aboutus-page .grid-5,
	.about-footer .grid-5 {
		width: 100%;
	}

	.aboutus-page .grid-7,
	.about-footer .grid-7 {
		width: 100%;
	}

	.aboutus-left-section .top-content {
		text-align: center;
	}

	.aboutus-left-section .top-content {
		padding: 50px 25px 0;
	}

	.aboutus-right-section {
		padding: 30px 100px 0;
	}

	.aboutus-page .custom-row {
		flex-direction: column-reverse;
	}

	.aboutus-left-section .title-section {
		display: none;
	}

	.about-footer .grid-7 {
		padding: 0;
		display: none;
	}

	.aboutus-left-section .top-content {
		background-color: white !important;
	}

	.aboutus-right-section .aboutus-card-wrapper a:last-child {
		margin-bottom: 0;
	}
}

@media (max-width: 1200px) {
	header .top-bar .top-bar-section li {
		margin-right: 20px;
	}

	.terms-condition {
		padding-top: 50px;
	}
}


@media (max-width: 1024px) {
	header .top-bar .top-bar-section li {
		margin-right: 15px;
	}

	header .top-bar .top-bar-section li.primary-btn {
		margin-left: 0;
	}

	.aboutus-left-section .top-content {
		padding: 30px 25px 0;
		text-align: center;
	}

	.aboutus-left-section .title-section h1 {
		justify-content: center;
	}

	.aboutus-right-section {
		padding: 30px 100px 0;
	}

	.about-wrapper img {
		display: none;
	}

	.main-content .about-us .about-wrapper .about-content {
		border-radius: 10px;
		margin-bottom: 30px;
	}
}

@media (max-width: 991px) {

	.top-bar,
	.top-bar-search {
		overflow: visible;
		transition: all 0.2s ease-out;
	}

	.top-bar-section.collapsed {
		transition: all 0.2s ease-out;
	}

	.top-bar-section.collapsed .right {
		display: none;
		transition: all 0.5s ease-out;
	}

	.top-bar .top-bar-section .navbar-toggle {
		display: block;
	}

	.top-bar-section.open .right {
		display: block;
		position: absolute;
		top: 100%;
		right: 30px;
		z-index: 999;
		width: 100%;
		max-width: 200px;
		background-color: white;
		border-radius: 5px;
		padding: 2px;
		box-shadow: 0px 3px 6px #00000029;
	}

	.top-bar-section.open .right li {
		width: 100%;
		text-align: center;
	}

	.top-bar-section.open .right li a {
		font-size: 14px;
		padding: 10px 15px;
		display: inline-block;
	}

	.top-bar-section.open .right li.primary-btn {
		margin-top: 30px;
	}

	.top-bar-section.open .right li.primary-btn a,
	.top-bar-section.open .right li.secondary-btn a {
		width: auto;
		margin-bottom: 20px;
	}
}

@media (max-width: 768px) {
	.banner-image {
		margin-bottom: 20px;
	}

	.main-content .banner .banner-content h1,
	.aboutus-left-section .title-section h1 {
		font-size: 30px;
		line-height: normal;
		flex-wrap: wrap;
	}

	.main-content .banner .banner-content h5 {
		font-size: 16px;
		line-height: normal;
		text-align: center;
		max-width: 65%;
	}

	.main-content .banner {
		padding-bottom: 40px;
	}

	.main-content .about-us {
		padding: 0;
		padding-bottom: 40px;
	}

	.main-content .about-us h1 {
		font-size: 30px;
		margin-bottom: 14px;
		line-height: normal;
	}

	.main-content .about-us h5 {
		font-size: 16px;
		line-height: normal;
		text-align: center;
		max-width: 65%;
	}

	.about-wrapper img {
		display: none;
	}

	.main-content .about-us .about-heading {
		margin-bottom: 30px;
	}

	.main-content .about-us .about-wrapper .about-content {
		border-radius: 10px;
		margin-bottom: 20px;
		padding: 15px 25px;
	}

	.main-content .about-us .about-content h4 {
		font-size: 18px;
		line-height: normal;
		margin-top: 0;
		margin-bottom: 10px;
	}

	.main-content .about-us .about-content p,
	.aboutus-left-section .title-section p {
		font-size: 16px;
		line-height: normal;
	}

	.claim-section {
		padding: 20px 0 40px;
	}

	.claim-section .row {
		display: flex;
		flex-direction: column-reverse !important;
	}

	.claim-section .claim-image-wrapper {
		text-align: center;
	}

	.claim-section .claim-image-wrapper .claim-section-banner {
		max-width: 40%;
		margin: 0 auto;
		text-align: center;
		margin-bottom: 20px;
	}

	.claim-section h4 {
		font-size: 20px;
	}

	.claim-section h1 {
		font-size: 30px;
		line-height: normal;
		margin-bottom: 5px;
	}

	.claim-section p {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.claim-section ul li {
		font-size: 18px;
	}

	.claim-section ul {
		margin-bottom: 20px;
	}

	.primary-red-btn,
	.primary-lavender-btn,
	.primary-cyan-btn,
	.primary-green-btn {
		font-size: 16px;
		padding: 12px 20px;
	}

	.aboutus-right-section .desc {
		margin-bottom: 20px;
	}

	.aboutus-card-wrapper .aboutus-card {
		padding: 20px;
		align-items: center;
	}

	.aboutus-left-section .title-section {
		margin-bottom: 30px;
	}

	.aboutus-card-wrapper .aboutus-card:last-child {
		margin-bottom: 0;
	}

	.about-footer .grid-5 {
		padding: 30px 15px;
		justify-content: center;
	}

	.about-footer .grid-7 {
		padding: 30px 15px;
		justify-content: center;
	}

	.confrimation-code .code-wrapper a {
		width: auto !important;
	}

	.aboutus-right-section .aboutus-card-wrapper a {
		margin-bottom: 20px;
		display: inline-block;
		width: 100%;
	}

	.terms-footer {
		padding: 15px;
		text-align: center;
	}

	.terms-condition .terms-header h4 {
		margin-bottom: 5px;
	}

	.accordion {
		margin-bottom: 30px;
	}

	.newsignup-page .accordion .accordion-title {
		margin-bottom: 10px;
	}

	.newsignup-page .accordion .accordion-title h5 {
		font-size: 16px;
	}

	.newsignup-page .accordion .divider {
		margin-bottom: 10px;
	}

	.aboutus-right-section {
		padding: 30px 30px 0;
	}

	.aboutus-card-wrapper .checkbox-wrapper .form-group {
		width: calc(33.33% - 30px/3);
	}

	.aboutus-card-wrapper .checkbox-wrapper .form-group:nth-child(3n) {
		margin-right: 0 !important;
	}

	.aboutus-card-wrapper .checkbox-wrapper .form-group:nth-child(4n) {
		margin-right: 15px;
	}

	.newsignup-page .aboutus-card-wrapper .checkbox-wrapper {
		margin-bottom: 0;
	}

	.newsignup-page .signin-btn {
		padding: 12px;
		font-size: 16px;
	}

	.forgot-password .back-btn--wrapper {
		margin-bottom: 0;
	}

	.forgot-password .aboutus-right-section {
		margin-bottom: 311px;
	}
}

@media (max-width: 575px) {

	.main-content .banner .banner-content h1,
	.main-content .about-us h1,
	.claim-section h1 {
		font-size: 24px;
	}

	.main-content .banner .banner-content h5,
	.main-content .about-us h5 {
		font-size: 14px;
		max-width: 80%;
	}

	.main-content .banner {
		padding-bottom: 30px;
	}

	.about-us .columns {
		padding: 0;
	}

	.main-content .about-us .about-wrapper .about-content {
		padding: 15px 20px;
	}

	.main-content .about-us .about-content h4 {
		font-size: 16px;
	}

	.main-content .about-us .about-content p {
		font-size: 14px;
	}

	.main-content .about-us {
		padding-bottom: 20px;
	}

	.claim-section h4 {
		font-size: 16px;
	}

	.claim-section p {
		font-size: 14px;
	}

	.claim-section ul li {
		font-size: 16px;
		margin: 0;
	}

	.primary-red-btn,
	.primary-lavender-btn,
	.primary-cyan-btn,
	.primary-green-btn {
		font-size: 14px;
		padding: 5px 12px;
	}

	.claim-section {
		padding: 20px 0;
	}

	.aboutus-right-section {
		padding: 30px 15px;
	}

	.aboutus-left-section .title-section h1 {
		margin-bottom: 10px;
	}

	.aboutus-right-section .aboutus-logo-section {
		justify-content: center;
		margin-bottom: 40px;
	}

	.aboutus-right-section .desc {
		margin-bottom: 30px;
	}

	.aboutus-right-section .welcome-section h4 {
		margin: 0;
	}

	.aboutus-right-section .welcome-section {
		flex-wrap: wrap;
	}

	.aboutus-card .card-body {
		margin-left: 20px;
	}

	.terms-condition {
		padding-top: 30px;
	}

	.newsignup-page .signin-btn {
		padding: 12px;
	}

	.accordion {
		margin-bottom: 0;
	}

	.aboutus-card-wrapper .checkbox-wrapper .form-group {
		width: calc(50% - 15px/2);
	}

	.aboutus-card-wrapper .checkbox-wrapper .form-group:nth-child(3n) {
		margin-right: 15px !important;
	}

	.aboutus-card-wrapper .checkbox-wrapper .form-group:nth-child(2n) {
		margin-right: 0 !important;
	}

	.forgot-password .send-btn--wrapper button {
		max-width: 100%;
	}
}

@media (max-width: 425px) {
	.confrimation-code .phone-input-wrapper button {
		padding: 9px 25px;
	}

	.confrimation-code .code-wrapper a {
		min-width: 95px;
	}
}

.activity-feed {
    display: flex;
    max-width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
}
.activity-feed .activity-feed-col {
    min-width: 240px;
    margin: 0 8px;
    border-radius: 8px;
    overflow: hidden;
    background: #FEF4EC;
}
.feed-dis-main {
    padding: 10px;
}
.activity-feed-col .feed-img {
    width: 100%;
    padding-top: 66%;
    position: relative;
}
.feed-dis-main {
    margin-top: 10px;
}
.activity-feed-col .feed-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.feed-dis-top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.feed-small-img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 10px;
}
.feed-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feed-dis-top .feed-name span {
    display: block;
}
.feed-dis-top .feed-name .feed-title{
    font-size: 14px;
}
.feed-dis-top .feed-name .feed-sub-title{
    font-size: 11px;
}
.feed-b-dis {
    font-size: 14px;
    margin-top: 15px;
}
.header_hor .l-subheader-h, .l-titlebar-h, .l-main-h, .l-section-h, .w-tabs-section-content-h, .w-blog-post-body {
    max-width: 1140px;
}
.l-section-h {
    position: relative;
    margin: 0 auto;
    width: 100%;
}
.custom-wrapper {
	background-color: #dddddd;
	width: 100%;
}
.tab-bar {
  display: flex;
}

.tab-item {
  cursor: pointer;
  padding: 10px;
  border: 1px solid #ccc;
  border-bottom: none;
}

.tab-item.active {
  background-color: #f0f0f0;
}
.advertise_scroll {
    overflow-x: scroll;
    max-width: 100%;
}
.advertise-section {
    padding: 0 25px;
}
.home_claim_advertise {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 -10px;
    padding: 0;
    width: 100%;
}
.home_claim_advertise li {
    width: 550px;
    padding: 10px 10px;
    list-style: none;
    border-radius: 10px;
    overflow: hidden;
    display: inline-block;
    min-width: 550px;
}
.home_claim_advertise li img{
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	border-radius: 10px;
}
.home_claim_section {
    padding: 0 20px;
    margin-top: 30px !important;
}
.home_claim_section h3 {
    font-size: 21px;
    font-weight: bold;
    margin: 0 0 10px 0;
    padding: 0;
}
.home_claim_side {
    background-color: transparent;
}
.home_claim_side ul {
    margin: 0 0px 0 20px;
    padding: 0px;
    background: #fff;
    border-radius: 16px !important;
}
.home_claim_side ul li a{
	text-decoration: none;
	font-size: 12px;
	color: #0A1220;
	font-weight: bold;
}
.home_claim_side ul li a:hover {
    background-color: #fff;
    color: #000000;
}
.home_claim_side ul li a.active {
    background-color: #fff;
    color: #000000;
}

.home_claim_section ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.home_claim_section_header{
	background: #fff;
    padding: 15px;
    border-radius: 8px;
    border: #000000 solid 1px;
    display: flex;
}
.home_claim_section ul li {
    background: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    border: #000000 solid 1px;
    display: flex;
    align-items: center;
}
.home_claim_section ul li label{
	margin-left: 25px;
	font-size: 15px;
	color: rgba(36, 30, 64, 1);
	font-weight: 500;
}
.home_claim_section .small-12.columns {
    padding: 0px 15px;
    align-items: center;
}
.home_claim_section .home_claim_section_header{
	padding: 25px 20px !important;
}
.home_claim_section_header label {
    color: #0A1220;
    font-size: 15px;
    margin-left: 25px;
    margin-right: 20px;
}
.home_claim_section_header label span{
	font-weight: bold;
}
.home_claim_section .accordion-button {
    display: flex;
    border-radius: 8px;
}
.home_claim_section .accordion-item {
    border-radius: 8px;
    border: #000000 solid 1px !important;
    margin-bottom: 10px;
}
.home_claim_section .accordion-item .accordion-button:hover, 
.home_claim_section .accordion-item .accordion-button:focus, 
.home_claim_section .accordion-item .accordion-button:hover, 
.home_claim_section .accordion-item .accordion-button:focus {
    background-color: #fff;
    box-shadow: inherit;
}
.home_claim_section .accordion-item .accordion-button:not(.collapsed) {
    color: #0A1220;
    background-color: #fff;
    box-shadow: inherit;
}
.home_claim_section .accordion-button a{
	text-decoration: none;
}
.home_claim_section .accordion-button::after{
	display: none;
}
.home_claim_section .accordion-button .accordion-button::after{
	display: block;
}
.close-timeline {
    margin: 0 auto;
}
.close-timeline a{
	font-size: 14px;
	color: #0A1220;
	font-weight: bold;
	padding: 0px;
	    width: 180px;
	}

.claim-img-w-title label {
    color: #241E40;
    font-size: 15px;
    font-weight: 600;
    margin-left: 15px;
}
.claim-img-w-title img {
    border-radius: 50px;
    height: 42px;
    width: 42px;
}
.home_claim_section .small-12.columns .view-claim {
	border:#000000 solid 1px;
	border-radius: 8px;
	background-color: #fff;
	padding: 10px 20px;
	color: rgba(60, 60, 60, 1);
	margin: 0px;
	margin-left: auto;
	font-size: 13px;
	font-weight: bold;
}
.home_claim_section .home_claim_section_header button {
    margin: 0;
    background: #000000;
    padding: 10px 20px;
    color: #fff;
    border-radius: 8px;
    margin-left: auto;
    font-size: 13px;
}
.home_claim_icon{
	width: 42px;
	height: 42px;
	border-radius: 100px;
	background-color: rgba(0, 0, 0, 0.26);
	text-align: center;
	padding: 5px 0;
}
.news_section {
    padding: 0 20px;
    margin-top: 30px !important;
}
.news_section .columns{
	padding: 0 15px;
}
.news_section h3 {
    font-size: 21px;
    font-weight: bold;
    margin: 0 0 10px 0;
    padding: 0;
}
.news-items-scroll{
	
    overflow-x: auto;
    max-width: 100%;
}
.news_section ul {
    /*margin: 0 -10px;
    padding: 0 0 30px 0;
    list-style: none;
    display: flex;*/
}
.news_section ul li {
    /*width: 315px;*/
    padding: 0;
    border-radius: 10px;
    margin: 5px 10px;
    background-color: #fff;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.1), 0 3px 5px 0 rgba(0, 0, 0, 0.1);
        height: 340px;
    overflow: hidden;
    /*min-width: 315px;*/
}
.news_section .news-img.ads-img {
    height: 100%;
}
.news_section .news-img.ads-img img {
    height: 340px;
    object-fit: cover;
    display: inline-block;
}
.news-date{
	font-size: 10px;
	color: rgba(139, 139, 137, 1);
}
.news_section ul li img {
    width: 100%;
}
.news-img {
    height: 220px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
}
.news-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.news_section ul li img {
    width: 100%;
}
.news-items-footer {
    padding: 15px 15px;
}
.news-items-footer .news-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 15px;
    font-weight: 600;
    min-height: 50px;
    max-height: 50px;
}
.news_section .news-icons-group{
	display: flex;
	align-items: center;
}
.news_section .icon-col {
    margin-right: 15px;
    display: flex;
    align-items: center;
}
.news_section .icon-col img{
	max-width: 20px
}
.news_section .icon-col span {
    font-size: 12px;
    margin: 0 0 0 5px;
}

.support-topics-section {
    padding: 0 25px;
    margin-top: 30px !important;
}
.support-topics-section h3 {
    font-size: 21px;
    font-weight: bold;
    margin: 0 0 10px 0;
    padding: 0;
}
.header-logo-col {
    max-width: 130px;
    margin: 0;
    padding: 0;
}
.header-logo-col img {
    height: auto;
    margin: 0;
}
.user-dashboard-header .header-comment-notification li {
    border: #E3E3E3 solid 1px;
    border-radius: 7px;
    padding: 5px 20px;
    margin: 0 7px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-comment-notification li img {
    max-width: 20px;
    margin-right: 5px;
}
.header-search-box {
    background: #F4F4F4;
    width: 400px;
    display: flex;
    padding: 6px 10px;
    border-radius: 8px;
    align-items: center;
    height: 51px;
}
.header-search-box input[type="text"] {
    height: 40px;
    background: none;
    border: none;
    top: inherit !important;
    font-size: 14px;
    color: #0A1220;
    font-weight: 600;
}
.header-search-box input[type="text"]::placeholder {
  color: #0A1220;
    font-weight: 600;
  opacity: 1; /* Firefox */
}

.header-search-box input[type="text"]::-ms-input-placeholder { /* Edge 12-18 */
  color: #0A1220;
    font-weight: 600;
}
.header-search-box button.search-btn {
    background: #000000;
    color: #fff;
    padding: 8px 15px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    width: 130px;
    border-radius: 4px;
    height: 38px;
    display: flex;
    align-items: center;
    top:inherit;
}
.header-search-box button.search-btn img{
	filter: brightness(0) invert(1);
	margin-right: 10px;
}
.user-profile-icon{
	width: 36px;
	height: 36px;
	border-radius: 100px;
	border: #000000 solid 2px;
}
.user-dashboard-header li {
    margin: 0 !important;
}
.user-dashboard-header li a {
    display: flex !important;
    align-items: center;
}
.user-dashboard-header li a .user-profile-icon{
	margin-left: 10px;
}
.header-tab-section ul li a {
    padding: 10px 0 !important;
    display: inline-block;
    text-decoration: none;
}
.full-height, .side-nav-menu {
    margin-top: 30px;
    overflow-y: inherit !important;
    /* main.css fixes these to height:inherit (~100% of .main-content), which
       with overflow-y no longer clipping (above) lets tall content (e.g. a
       claims table with many rows) visually spill out past the bottom of
       this box without growing it -- so the footer, positioned right after
       in normal flow, ends up sitting underneath/behind that overflow
       instead of being pushed down. height:auto lets the box grow to fit
       its content instead; min-height:100% (main.css) still keeps short
       pages looking full-height. */
    height: auto !important;
}
body {
    /* Site-wide: every page's <body> background is white. !important so
       this can't be silently overridden by load order alone -- e.g.
       claimview.html (and any other page that loads Bootstrap for its
       accordion/tab components) links bootstrap.min.css inside
       {% block bottom_script %}, which renders at the very end of <body>,
       after this stylesheet; Bootstrap's own reboot.css also sets
       body{background-color:#fff} at the same specificity (a bare element
       selector), so without !important here the two rules' relative order
       would be what decides the outcome rather than this one intentionally
       winning. */
    background-color: #FFFFFF !important;
}
/* main.css's own .topbar-subheader{background-color:#000000;height:.625rem}
   -- a thin strip rendered on every logged-in, non-login/signup page (see
   layout/base.html's <div class="row topbar-subheader">) -- site-wide,
   same as <body> above. */
.topbar-subheader {
    background-color: #FFFFFF !important;
    color: #000000 !important;
}
.main-content.with-topbar-subheader .content-body {
    background-color: #FFFFFF;
}
@media (min-width: 1200px){
.user-dashboard-header {
    width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}	
.header-tab-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background-color: #fff;
    width: 100vw;
    margin-left: calc(-50vw + 50% - 8px);
    position: relative;
    margin-top: 14px;
    position: absolute;
    left: 0;
    border-top: #C2DDD8 solid 1px;
    border-bottom: #C2DDD8 solid 1px;
}
}

.advertise-section .row .columns {
	display: flex;
}

.advertise-section .welcome-tile {
	background-color: #E5E5E5;
	color: #000000;
	padding: 20px;
	border-radius: 10px;
	width: 40%;
}

.advertise-section .welcome-tile .bag-icon {
	background-color: white;
	border-radius: 8px;
	padding: 5px 8px;
	margin-bottom: 22px;
	display: inline-block;
}

.advertise-section .welcome-tile img {
	width: 20px;
	height: auto;
}

.advertise-section .welcome-tile h4 {
	font-size: 21px;
	color: #000000;
	font-weight: bold;
	margin: 0;
	font-family: "Montserrat", sans-serif;
}

.advertise-section .welcome-tile h5 {
	font-size: 15px;
	color: #000000;
	font-family: "Montserrat", sans-serif;
	margin: 0;
}

.advertise-section .welcome-image {
	width: calc(60% - 10px);
	margin-left: 10px;
	border-radius: 8px;
}

.advertise-section .welcome-image img {
	border-radius: 8px;
}
.support-topics-section .accordion-item {
    margin-bottom: 10px;
    border-radius: 8px;
    border: #000000 solid 1px !important;
}
.support-topics-section .accordion-item .accordion-button{
border-radius: 8px;
font-size: 14px !important;
font-weight: bold;
color: #0A1220;
}
.support-topics-section .accordion-item .accordion-button:hover, 
.support-topics-section .accordion-item .accordion-button:focus, 
.support-topics-section .accordion-item .accordion-button:hover, 
.support-topics-section .accordion-item .accordion-button:focus {
    background-color: #fff;
}

.support-topics-section .accordion-item .accordion-button:not(.collapsed) {
    /*color: #000000;*/
    background-color: #fff;
    box-shadow: inherit;
}
.support-topics-section .accordion-item .accordion-button::after {
    transform: rotate(-90deg);
    color: #000000;
}
.support-topics-section .accordion-item .accordion-button:not(.collapsed)::after{
	transform: rotate(0deg);
	color: #000000;
}
.support-topics-section{
	margin-bottom: 20px !important;
}
.support-topics-img {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
}
.support-topics-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.action{
  display:block;
  margin:100px auto;
  width:100%;
  text-align:center;
}
.action a {
  display:inline-block;
  padding:5px 10px; 
  background:#f30;
  color:#fff;
  text-decoration:none;
}
.action a:hover{
  background:#000;
}
.title-w-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.title-w-link a{
color: #000000;
font-size: 14px;
font-weight: 600;
text-decoration: none;
}

.news_section .slick-slider .element{
  height:100px;
  width:100px;
  background-color:#000;
  color:#fff;
  border-radius:5px;
  display:inline-block;
  margin:0px 10px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  font-size:20px;
}
.news_section ul {
    margin: 0;
    padding: 0;
}
.news_section .slick-slider .slick-disabled {
  opacity : 0; 
  pointer-events:none;
}
.news_section .slick-next, .news_section .slick-prev {
     width: 37px;
    height: 100%;
    background-color: rgb(60 60 60 / 70%);
    display: block !important;
    z-index: 9;
    opacity: 1;
}
.news_section .slick-next:hover {
     width: 37px;
    height: 100%;
    background-color: rgb(60 60 60 / 70%);
    z-index: 9;
    opacity: 1;
    background-image: url(../img/right-arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 13px auto;
}
.news_section .slick-prev:hover {
     width: 37px;
    height: 100%;
    background-color: rgb(60 60 60 / 70%);
    z-index: 9;
    opacity: 1;
    background-image: url(../img/left-arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 13px auto;
}
.news_section .slick-prev {
    left: 0px;
    background-image: url(../img/left-arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 13px auto;
}
.news_section .slick-next {
    right: 0;
    background-image: url(../img/right-arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 13px auto;
}
.news_section .slick-next:before, .news_section .slick-prev:before {
    font-size: 0;
}
.claim-content {
    padding: 0 30px;
}
.claim-list {
    margin-bottom: 15px;
    display: flex;
}
.claim-list-left-col {
    width: 330px;
    position: relative;
    padding-left: 20px;
}
.claim-list-left-col:before {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    left: -7px;
    top: 0;
    background: #000000;
    border-radius: 25px;
    border: #fff solid 3px;
    z-index: 1;
}
.claim-list-left-col:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    left: 0px;
    top: 0;
    background: #999999;
}
.claim-title {
    font-size: 15px;
    font-weight: 700;
    color: #0A1220;
    margin-bottom: 10px;
}
.claim-date-title {
    color: #2F444C;
    font-size: 12px;
    opacity: 1;
}
.claim-date {
    font-size: 14px;
    color: #0A1220;
    font-weight: 700;
}
.claim-view a{
	color: #000000;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
}
.claim_detail_main{
	padding: 20px 20px;
}
.claim_detail_main h2{
	font-size: 25px;
	font-weight: 700;
	color: #0A1220;
	margin-bottom: 10px;
	margin-top:20px;
}
.claim_detail_main h5{
	font-size: 18px;
	font-weight: 400;
	color: #0A1220;
	margin-bottom: 30px;
}
.claim_detail_main .tab-bar {
    background:none;
    color: #fff;
    height: auto;
    line-height: normal;
    position: relative;
    width: auto;
    margin: 0 -11px;
}
.claim_detail_main .tab-bar .tab-item {
    cursor: pointer;
    border: 0px solid #ccc;
    border-bottom: none;
    background-color: rgba(60, 60, 60, 0.5);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin: 0 11px;
    border-radius: 8px;
    padding: 15px 40px 25px 40px;
    min-width: 172px;
    text-align: center;
    position: relative;
}
.claim_detail_main .tab-bar .tab-item:before {
	width: calc(100% - 30px);
	height: 2px;
	background: #fff;
	content: "";
	position: absolute;
	bottom: 12px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.claim-detail-tab-content {
    background: #fff;
    border-radius: 10px;
    padding: 30px 50px;
    margin: 30px 0;
}
.claim_detail_main .tab-bar .tab-item.active {
    background-color: rgba(0, 0, 0, 1);
}
.claim_detail_main .accordion-item {
    margin-bottom: 25px;
    border: none;
}
.claim_detail_main .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}
.claim_detail_main h2.accordion-header {
    margin: 0;
    padding: 0;
    
}
.claim_detail_main .accordion-header .accordion-button{
	background: rgba(242, 247, 252, 1);
	font-size: 18px;
	font-weight: 600;
	color: rgba(60, 60, 60, 1);
	border:#7FACE3 solid 1px;
	border-radius: 8px;
}
.claim_detail_main .accordion-header .accordion-button span {
    margin-left: auto;
    margin-right: 12px;
    font-size: 14px;
}
.claim_detail_main .accordion-header .accordion-button::after {
    margin: 0;
}
.claim-detail-tab-content .btn{
	font-size: 14px;
	padding: 8px 20px;
	font-weight: bold;
	border-radius: 8px;
	margin: 0 3px;
}
.claim-detail-tab-content .btn img{
	max-width: 12px;
}
.claim-detail-tab-content .btn:hover img{
filter: brightness(0) invert(1);
}
.claim-detail-tab-content .btn.btn-outline-danger {
    border-color: #FED0D3;
    color: #E92035;
}
.claim-detail-tab-content .btn.btn-outline-danger:hover {
    border-color: #E92035;
    background-color: #E92035;
    color: #fff;
}
.claim-detail-tab-content .btn.btn-outline-primary {
    border-color: #000000;
    color: #000000;
    padding: 8px 57px;
}
.claim-detail-tab-content .btn.btn-outline-primary:hover {
    border-color: #000000;
    background-color:#000000; 
    color: #fff;
}
.claim-detail-tab-content .accordion-collapse {
    border: #7FACE3 solid 1px;
    border-top: 0px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-top: -10px;
    padding-top: 10px;
    background-color: #000000;
}
.claim-detail-tab-content .claim-list-describe{
	background-color: #E5E5E5;
	padding: 15px 25px;
	margin-bottom: 10px;
	border-radius: 8px;
}
.claim-detail-tab-content .claim-list-describe h4{
	font-size: 16px;
	color: #0A1220;
	font-weight: bold;
	margin-bottom: 10px;
}
.accordion-button:focus {
    box-shadow:inherit !important;
}
.claim-detail-tab-content .claim-list-describe .record-audio {
    font-size: 11px;
    color: #0A1220;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.claim-detail-tab-content .claim-list-describe .list-describe-left-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.claim-detail-tab-content .claim-list-describe .record-audio span {
    background: #3485E8;
    width: 30px;
    height: 30px;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    padding: 5px 0;
    margin-right: 13px;
}
.claim-detail-tab-content .claim-list-describe .record-audio span img{
	filter: brightness(0) invert(1);
}
.claim-list-describe textarea.form-control {
    margin: 0;
    padding: 10px;
    font-size: 14px;
    color: #0A1220;
    height: 106px;
}
.claim-detail-tab-content .exhibit-content h4{
	font-size: 16px;
	color: #0A1220;
	font-weight: bold;
	margin-bottom: 10px;
}
.claim-detail-tab-content .exhibit-content{
	
	padding: 0px 0px;
	border-radius: 8px;
}
.cust-dark-section {
    background: #E5E5E5;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
}
.cust-filing-sec .document-col {
    max-width: 100%;
}
.cust-filing-sec select.custom-select.form-control {
    background-position: 90% 20px !important;
}
.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.file-upload .btn {
  border: 0px solid gray;
  background-color: #999999;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  width: 111px;
  height: 111px;
}
.file-upload .btn:hover {
background-color: #999999;
	}
.file-upload .btn img{
	max-width: 100%;
	filter: brightness(0) invert(1);
}	

.upload-btn-wrapper input[type=file] {
    font-size: 30px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    display: block;
    margin: 0;
    height: 100%;
}
.exhibit-content  .file-upload {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.exhibit-content .warning-text{
	font-size: 13px;
	color: #E92035;
}
.file-upload-right-col h4{
	margin: 0;
}	
.file-upload-right-col{
	margin-left: 15px;
}
.exhibit-content .form-group{
	margin-bottom: 15px;
}
.exhibit-content .form-group label{
	color: #0A1220;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 8px;
}
.exhibit-content .form-group label span{
	color: #E92035;
}
.exhibit-content .form-control {
    display: block;
    width: 100%;
    padding: 8px 15px;
    font-weight: 400;
    line-height: 1.5;
    font-size: 15px;
    color: #0A1220;
    margin: 0;
    height: 60px;
    border-radius: 8px;
    background: #000000;
}
.date-picker-col{
	max-width: 180px;
}
.document-col{
	max-width: 220px;
}
.green-btn {
    background-color: #1E9F4B;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    padding: 8px 30px;
    display: inline-block;
    margin: 15px auto;
    text-decoration: none;
}
.green-btn:hover, .green-btn:focus {
	background-color: #1E9F4B;
    color: #fff;
}
.form-group.document-col select.custom-select.form-control {
    background-image: url(../img/chevron.png);
    background-position: 180px 20px;
    background-repeat: no-repeat;
    background-size: 16px auto;
}
button.btn.custom-img-preview {
    padding: 0;
    overflow: hidden;
}
button.btn.custom-img-preview img {
    filter: inherit !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.claim-detail-tab{
	background: #fff;
    border-radius: 10px;
    padding: 10px 30px 30px 30px;
    margin: 30px 0;;
}
.tabs-title{
	font-size: 21px;
	color: #0A1220;
	font-weight: bold;
	border-bottom: 1px solid #7FACE3;
	padding-bottom: 10px;
	margin-bottom: 20px;
	margin-top: 20px;
}
.full-col {
    width: 100%;
    margin-bottom: 15px;
}
.claim-detail-tab .form-control {
    padding: 10px 20px;
    background-color: #000000;
    border-radius: 8px;
    color: #0A1220;
    font-size: 15px;
    margin: 0;
    height: 60px;
    border: 0px;
}
.claim-detail-tab .form-control:focus{
	border: 0px;
	box-shadow: none;
	background-color: #000000;
}
.claim-detail-tab label{
	color: #0A1220;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 8px;
}
.two-col{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 -20px;
	margin-bottom: 15px;
}
.two-col .half-col{
	width: 50%;
	padding: 0 20px;
}
.half-col.date-col {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.half-col.date-col input.form-control {
    width: 48%;
}
.claim-detail-tab textarea.form-control {
    height: 200px;
}
.two-col .two-col {
    margin-bottom: 0px;
}
.additional-checkbox {
    display: flex;
    flex-wrap: wrap;
    max-width: 730px;
    margin: 0 -7.5px;
}
.checkbox-items {
    border: #7FACE3 solid 1px;
    border-radius: 6px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    min-width: 165px;
    justify-content: flex-end;
    margin: 8px 7.5px;
    flex-direction: row-reverse;
}
.checkbox-items label {
    margin: 0px;
    width: 80%;
    text-align: center;
    font-weight: 600;
    white-space: nowrap;
}
.checkbox-items input[type="checkbox"] {
    margin: 0 10px 0 0;
}
.claim-detail-tab .btn-outline-primary{
	color: #0A1220;
	font-size: 16px;
	font-weight: 700;
	border-radius: 8px;
}
.d-flex.notsure {
    justify-content: flex-end;
    margin-bottom: 80px;
}
.notsure input[type="checkbox"] {
    margin: 0;
}
.notsure label {
    margin-right: 0px !important;
    padding: 0;
}
.profile-detail-page .profile-detail-wrapper .file-upload {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.profile-detail-page .profile-detail-wrapper .file-upload p.image-name {
    margin: 0;
    font-size: 16px;
    color: #241E40;
    font-weight: 700;
}
.profile-detail-page .profile-detail-wrapper .file-upload .note {
    font-size: 13px;
    margin: 0;
    color: #241E40;
}
.profile-detail-page .profile-detail-wrapper .file-upload .btn {
    border: 0px solid gray;
    background-color: #999999;
    padding: 8px 20px;
    border-radius: 150px;
    font-size: 20px;
    font-weight: bold;
    width: 111px;
    height: 111px;
    margin: 0;
}
.required{
	color: red;
}
.about-claim-col {
    background: #dbe8f7;
    border-radius: 15px;
    border-top: #7face3 solid 10px;
    padding: 20px;
    margin-top: 87px;
}
.about-claim-col img{
	max-width: 100%;
}
.about-claim-col h4{
	font-size: 21px;
	font-weight: 700;
	color: #0A1220;
	margin: 20px 0 10px 0;
}
.about-claim-col ul {
    margin: 0px;
    padding: 0 0 0 15px;
    list-style-type: disc;
}
.about-claim-col ul li{
	margin: 10px 0;
	font-size: 12px;
	color: #0A1220;
}
h2.accordion-header {
    position: relative;
    padding-right: 150px;
}
.accordion-header a.view-claim {
    text-decoration: none;
    position: absolute;
    right: 25px;
    top: 12px;
}
h2.accordion-header .claim-img-w-title {
    width: calc(100% - 660px);
}
.claim-date-title span{
	color: #0A1220;
}
.claim-date-title label {
    width: 196px;
    color: #2F444C;
    opacity: 0.5;
}
.claim-date-small-btn {
    background: #E92035;
    border-radius: 8px;
    display: inline-block;
    text-align: center;
    padding: 1px 15px;
    color: #fff;
    font-size: 12px;
}
.claim-content {
    padding: 0 5px 0 30px;
}
.claim-list .claim-view {
    margin-left: auto;
}
.exhibit-title-star{
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #7face3;
	margin-bottom: 25px;
	align-items: center;
}
.exhibit-title-star h4 {
    font-size: 21px;
    font-weight: 700;
    color: #0A1220;
    line-height: 1.1;
    height: auto;
    margin: 0;
    padding: 0;
}
.exhibit-bg{
	background: #fff;
	border-radius: 16px;
	padding: 20px 20px;
}
.exhibit-bg .exhibit-content .form-group label {
    color: #999 !important;
    font-size: 14px;
    display: block;
    font-weight: 400;
    margin-top: 20px;
}
.exhibit-bg .exhibit-content .form-group span{
	color: #0A1220;
	font-size: 15px;
	font-weight: 600;
	display: block;
}

.cust-main-noside .main-content.with-topbar-subheader {
    padding-top: 40px;
    background: #FFFFFF;
}
.cust-main-noside .content-body.full-height {
    padding-left: 0;
    padding-right: 0;
    width: 100% !important;
    float: left;
}

.cust-main-noside .filter-title{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.cust-main-noside .filter-title label{
	font-size: 14px;
	color: #0A1220;
	margin: 0;
	padding: 0;
	font-weight: bold;
}
.cust-main-noside .clear-btn{
	background: #7face3;
	border-radius: 8px;
	color: #fff;
	padding: 5px 15px;
	font-size: 12px;
	text-decoration: none;
}
.left-sidebar-noside{
	padding: 0px;
    background: #e6f0f9;
    border-radius: 16px !important;
    padding: 20px 15px;
}
.cust-main-noside .exhibit-bg {
    background: none;
    border-radius: 0px;
    padding: 0px 20px;
}
.cust-main-noside .filter-list {
    background: #fff;
    padding: 15px 15px;
    border-radius: 6px;
    margin-top: 15px;
}
/* The container */
.cust-main-noside .container-checkbox {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.cust-main-noside .container-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.cust-main-noside .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 17px;
  width: 17px;
  background-color: #fff;
  border: #0A1220 solid 1px;
  border-radius: 20px;
}

/* On mouse-over, add a grey background color */
.cust-main-noside .container-checkbox:hover input ~ .checkmark {
  background-color: #fff;
  border: #0A1220 solid 1px;
}

/* When the checkbox is checked, add a blue background */
.cust-main-noside .container-checkbox input:checked ~ .checkmark {
  background-color: #fff;
  border: #0A1220 solid 1px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.cust-main-noside .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.cust-main-noside .container-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.cust-main-noside .container-checkbox .checkmark:after {
  left: 7px;
    top: 4px;
    width: 5px;
    height: 9px;
    border: solid #7face3;
    border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media only screen and (min-width: 64.0625em) {
.cust-main-noside .side-nav-menu {
        padding-left: 0;
        padding-right: 0;
        width: 23.66667%;
        float: left;
    }
.cust-main-noside .content-body.full-height.cust-cont-noside{
	width: 76.33333% !important;
}
}

.cust-main-noside #tags-container .tag {
    background-color: transparent;
    border: #7face3 solid 1px;
    padding: 2px 10px;
    font-size: 13px;
    font-weight: 500;
    color: #212529;
}
.cust-main-noside #tags-container .tag-close {
    color: #212529;
}
.cust-main-noside .show-filter-right {
    display: flex;
}
.cust-main-noside .cust-head-show {
    display: flex;
    font-size: 12px;
    align-items: center;
    flex-wrap: nowrap;
}
.cust-main-noside .cust-head-show select{
	min-width: 100px;
	background-color:transparent;
	border-radius: 4px;
	line-height: 1.2;
}
.cust-main-noside .cust-head-sort{
	display: flex;
    font-size: 12px;
    align-items: center;
    flex-wrap: nowrap;
}
.cust-main-noside .cust-head-sort select{
	min-width: 140px;
	background-color:transparent;
	border-radius: 4px;
	line-height: 1.2;
}
.cust-main-noside .show-filter-right label {
    white-space: nowrap;
    margin-right: 10px;
    margin-left: 20px;
}
.cust-main-noside .exhibit-title-star {
    border-bottom: 0px solid #7face3;
    margin-bottom: 5px;
    align-items: center;
    padding-bottom: 15px;
}
.cust-main-noside .exhibit-title-star h4 {
    margin: 0;
}
.cust-main-noside .slide-image-col{
	height: 210px;
}
.cust-main-noside .news-img {
    height: 210px;
 }
.cust-main-noside .user-with-heart-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cust-main-noside .slider-profile-title img {
    width: 30px !important;
    border-radius: 100px;
    height: 30px;
    display: inline-block;
}
.cust-main-noside .slider-profile-title {
    display: flex;
    align-items: center;
}
.cust-main-noside .prof-name {
    margin-left: 7px;
    font-size: 13px;
    font-weight: 600;
}
.cust-main-noside .slider-heart-icon {
    padding: 7px;
    border: #0A1220 solid 1px;
    border-radius: 100px;
    width: 30px;
    height: 30px;
}
.cust-main-noside .slider-full-text {
    font-size: 12px;
    line-height: 1.2;
    margin: 10px 0 7px 0;
        min-height: 30px;
    max-height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: none !important;
}
.cust-main-noside .slider-footer-buttons {
    margin-bottom: 10px;
    display: flex;
}
.cust-main-noside .slider-btn {
    background: #e4eefa;
    padding: 5px 10px;
    font-size: 11px;
    text-decoration: none;
    outline: none;
    border: none;
    color: #0A1220;
    font-weight: 600;
    border-radius: 6px;
    margin-right: 5px;
}

.price-range-slider {
     width: 100%;
     float: left;
     padding: 10px 20px;
}
 .price-range-slider .range-value {
    margin: 0;
    background: #e7eef6;
    text-align: center;
    width: 110px !important;
    display: block;
    padding: 0 0 !important;
    margin: 20px auto 5px auto !important;
    border-radius: 8px;
}
 .price-range-slider .range-value input {
    width: 100%;
    background: none;
    color: #332e4e;
    font-size: 14px;
    font-weight: 600;
    box-shadow: none;
    border: none;
    margin: 0;
    text-align: center;
}
 .price-range-slider .range-bar {
    border: none;
    background: #e6e6e6;
    height: 3px;
    width: 96%;
    margin-left: 8px;
}
 .price-range-slider .range-bar .ui-slider-range {
     background: #7face3;
}
 .price-range-slider .range-bar .ui-slider-handle {
     border: none;
     border-radius: 25px;
     background: #fff;
     border: 2px solid #7face3;
     height: 17px;
     width: 17px;
     top: -0.42em;
     cursor: pointer;
}
 .price-range-slider .range-bar .ui-slider-handle + span {
     background: #7face3;
}
.apply-btn {
    background: #7face3;
    color: #fff;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 8px;
    width: 100%;
    display: inline-block;
}
.cust-main-noside .ui-widget.ui-widget-content {
    border: 0px solid #c5c5c5;
}
.date-col {
	margin-left: 20px;
}
.label-container {
  display: flex;
  align-items: center;
}

.info-icon {
  margin-left: 5px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.info-icon img {
  width: 16px; /* Adjust the size as needed */
  height: 16px; /* Adjust the size as needed */
}

.info-icon:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.tooltip {
  visibility: hidden;
  opacity: 0;
  min-width: 500px; /* Set the desired width */
  background-color: #555;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* Position the tooltip above the icon */
  left: 50%;
  transform: translateX(-50%); /* Center the tooltip */
  transition: opacity 0.3s;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  font-size: 12px;
}

.tooltip p {
  font-size: 12px;
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%; /* At the bottom of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip p {
  margin: 5px 0;
}
.cust-main-noside #tags-container-inner .tag-inner {
    background-color: transparent;
    border: #7face3 solid 1px;
    padding: 2px 10px;
    font-size: 8px;
    font-weight: 500;
    color: #212529;
    margin-right: 5px;
}
.cust-claim-dash {
    background: #fff;
    margin: 20px 0 0 10px;
    padding: 10px 0 0 0;
} 
.cust-claim-dash .tab-bar.home_claim_tab {
    background: #fff;
    margin-bottom: 25px;
}    
.cust-claim-dash .tab-item {
    color: #999;
    padding: 0;
    border: 0px;
    margin: 0 20px;
    font-size: 14px;
    
}
.cust-claim-dash .tab-item.active {
    background-color: #fff;
}
.cust-claim-dash .tab-item span {
    border-radius: 6px;
    font-size: 11px;
    color: #fff;
    padding: 2px 3px;
    width: 18px;
    display: inline-block;
    line-height: normal;
    text-align: center;
}

.cust-claim-dash .activity-feed .activity-feed-col {
    width: 100%;
    margin: 0 8px;
    border-radius: 8px;
    overflow: hidden;
    background: #FEF4EC;
}
.cust-claim-dash table thead {
    background: #E5E5E5;
}
/*Star Modal styling*/
.ratingModal {
	max-width: 350px;
}

.ratingModal .close {
    color: #fff;
    right: -3px;
    top: -10px;
    font-weight: normal;
    background: mediumpurple;
    border-radius: 50%;
    line-height: 15px;
    border: 2px solid white;
}
.stars 
{
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    cursor: pointer;
}

.stars span {
    font-size: 2rem;
    color: #ddd;
}

.stars span.filled {
    color: #FFD700;
}
.stars1 {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    cursor: pointer;
}

.stars1 span {
    font-size: 2rem;
    color: #ddd;
}

.stars1 span.filled {
    color: #FFD700;
}
.rating-popup .modal-content {
    max-width: 400px;
}
.rating-popup .close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #adb3bf;
    border-radius: 50px;
    width: 24px;
    height: 24px;
    font-size: 18px;
    color: #fff;
    border: #fff solid 2px;
    text-align: center;
    line-height: 1.1;
}
.rating-popup-header {
    border-bottom: #64a4f7 solid 1px;
    padding-bottom: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}
.done-btn-rating {
    background: #64a4f7;
    color: #fff;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    display: inline-block;
    width: 100px;
    padding: 5px 10px;
    font-size: 14px;
    margin: 20px auto 0 auto;
}

.claim-view{
	margin-top: 25px;
}

.claim-view-aud #tags-container-inner .tag-inner {
    background-color: transparent;
    border: #7face3 solid 1px;
    padding: 2px 10px;
    font-size: 15px;
    font-weight: 500;
    color: #212529;
    margin-right: 5px;
    background: #68a4ee;
}


.claim-view .claim-view-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.claim-view .claim-view-head h4 {
    margin: 0;
}

.claim-view .claim-view-head .claim-view-date {
    margin: 0;
}

.claim-view .claim-view-content {
	margin-bottom: 10px;
}
.claim-view-main-header {
    display: flex;
    justify-content: space-between;
    padding: 0 15px 0 0;
    align-items: center;
}
.claim-view-main-header .backbtn {
    /* Matches the "+ New Claim" button on /user/dashboard
       (templates/home/user_dashboard.html) -- black background, white
       text, bold Montserrat. */
    background: #000000;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    padding: 9px 20px;
    border: none;
    border-radius: 6px;
}
.claim-view-main-header h4 {
    font-size: 16px;
}
.claim-view-main-header .right{
	text-align: right;
}
.claim-view-main-header .right a {
    font-size: 14px;
    text-decoration: none;
    margin-left: auto;
    margin-right: 0px;
}
.claim_view_main .tab-bar .tab-item.active {
    background-color: #fff;
    color: rgba(0, 0, 0, 1);
    border-radius: 0px;
    border-color: rgba(0, 0, 0, 1) !important;
}
.claim_view_main .tab-bar .tab-item {
    cursor: pointer;
    border: 0px solid #ccc;
    border-bottom: none;
    background-color: transparent;
    color: rgba(60, 60, 60, 0.5);
    font-size: 14px;
    font-weight: bold;
    margin: 0 10px;
    border-radius: 0px !important;
    padding: 5px 10px 15px 10px !important;
    min-width: 100px;
    text-align: center;
    position: relative;
}
.claim_view_main .tab-bar {
    margin-bottom: -20px !important;
}
.claim_view_main .tab-bar .tab-item:before {
    width:0px;
    height: 0px;
    
}
.claim-view-right-link{
	position: absolute;
	right: 0px;
}
.claim_view_main .timmer-col h4.timmer-number {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #FFFFFF;
}
.claim_view_main .timmer-col h4.timmer-text {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 9px;
    font-weight: 400;
    color: #FFFFFF;
}
.claim_view_main .timmer-col h4.timmer-text span{
	text-align: left;
}
.claim_view_main .timmer-col h4 span {
    margin: 0 5px;
    text-align: center;
    width: auto;
}
.claim_view_main .claim-view-head .claim-view-date {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
}
.claim_view_main span.claim-view-date span {
    font-size: 12px;
    padding-right: 5px;
    font-weight: 400;
}
.claim_view_main .claim-view-right-link a {
    color: red;
    text-decoration: none;
    font-size: 12px;
    margin-right: 10px;
}
.claim_view_main .claim-view {
    margin-top: 10px;
}
.claim_view_main .claim-view hr{
	color: #000000 !important;
}
.claim_view_main .claim-view .claim-view-head h4 {
    margin: 0;
    font-weight: 700;
    font-size: 22px;
}
.claim_view_main #tags-container-inner .tag-inner {
    background-color: transparent;
    border: #000000 solid 1px;
    padding: 10px 10px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin-right: 5px;
    background: #000000;
    border-radius: 8px;
}
.claim_view_main #tags-container-inner .tag-inner input[type="checkbox"] {
    margin: 0 !important;
    vertical-align: top;
    margin-top: 9px !important;
    margin-right: 10px !important;
}
.claim_view_main .claim-view-aud h4 {
    border-bottom: #000000 solid 1px;
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.claim_view_main .rating-title {
    font-size: 12px;
    margin-top: 18px;
    margin-right: 10px;
}
.claim_view_main .claim-view-content{
	margin-bottom: 20px;
}
.claim_view_main .claim-view-content label {
    font-size: 14px;
}
.claim_view_main .claim-view-content .disccription-text{
font-size: 14px;
font-weight: 600;
}
.claim_detail_main .news_section .scroll-horizontal{
	overflow-x: auto;
    max-width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.claim_detail_main .news_section ul {
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}
.claim_detail_main .news_section ul li{
	min-width: 215px;
	height: 350px;
}
.claim_detail_main .news_section ul li .news-item-radio {
    text-align: center;
    border: #000000 solid 1px;
    border-radius: 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
    margin-bottom: 10px;
}
.claim_detail_main .news_section ul li .news-item-radio input[type="radio"] {
    margin: 0 7px 0 0;
}

.claim_detail_main .news_section ul li .news-item-radio {
    position: relative;
}

.claim_detail_main .news_section ul li .news-item-radio label:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}
.chat-container {
    display: flex;
    height: 100%;
    margin: 0 15px;
}
.chat-container.custom-chat {
    display: flex;
    height: calc(100vh - 150px);
    margin: 0 15px;
}
        .sidebar {
            width: 300px;
            background-color: #fff;
            border-right: 1px solid #ddd;
            display: flex;
            flex-direction: column;
        }
        .sidebar-header {
            padding: 15px;
            background-color: #fff;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .sidebar-header h2{
            font-size: 20px;
            font-weight: 700;
        }
        .sidebar-header .fa {
    cursor: pointer;
    background: #000000;
    width: 28px;
    height: 28px;
    text-align: center;
    border-radius: 6px;
    padding: 7px 0;
    font-size: 14px;
}
        .sidebar-search {
            padding: 10px;
            border-bottom: 1px solid #ddd;
        }
        .sidebar-search input {
    width: 100%;
    padding: 10px 15px;
    border: 0px solid #ddd;
    border-radius: 10px;
    background: #E5E5E5;
    height: 46px;
    font-size: 12px;
    color: #6A6A6A;
}
.sidebar-search input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #6A6A6A;
}
.sidebar-search input::-moz-placeholder { /* Firefox 19+ */
  color: #6A6A6A;
}
.sidebar-search input:-ms-input-placeholder { /* IE 10+ */
  color: #6A6A6A;
}
.sidebar-search input:-moz-placeholder { /* Firefox 18- */
  color: #6A6A6A;
}
        .sidebar-chats {
            flex-grow: 1;
            overflow-y: auto;
        }
        .chat-item {
            display: flex;
            align-items: center;
            padding: 10px;
            cursor: pointer;
            border-bottom: 1px solid #ddd;
        }
        .chat-item:hover {
            background-color: #E5E5E5;
        }
        .chat-item img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
        }
        .chat-item .chat-info {
            flex-grow: 1;
        }
        .chat-item .chat-info h4 {
    margin: 0;
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 145px;
    height: 1.2em;
    white-space: nowrap;
}
.chat-item .chat-info .chat-small-title {
    text-overflow: ellipsis;
    overflow: hidden;
    width: 200px;
    height: 1.7em;
    white-space: nowrap;
}

        .chat-item .chat-info p {
            margin: 0;
            color: #555;
            font-size: 14px;
            text-overflow: ellipsis;
    overflow: hidden;
    width: 200px;
    height: 1.7em;
    white-space: nowrap;
        }
        .chat-item .chat-info .chat-time {
    font-size: 11px;
    color: #999;
    position: absolute;
    top: 0;
    right: 0;
}
.cust-file-msg{
    position: absolute;
    top: 3px;
    left: 0px;
    width: 36px;
    height: 36px !important;
    z-index: 9;
    opacity: 1;
    display: block;
    font-size: 0px !important;
    padding: 0px !important;
    background: url(../img/upload-file.svg) no-repeat center center;
    background-size: 28px;
    border: none !important;
    outline: none !important;
    box-shadow: none;
}
.cust-file-msg input{
      width: 36px;
    height: 36px !important;
    z-index: 99;
    opacity: 1;
    display: block;
    font-size: 0px !important;
    padding: 20px !important;
    opacity: 0;
   
}
.chat-item .chat-info .chat-small-title{
 font-size: 11px;
    color: #999;
}
        .chat-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #f4f4f4;
    position: relative;
}
        .chat-header {
    padding: 15px;
    background-color: #fff;
    color: #fff;
    display: flex;
    align-items: center;
}
        .chat-header img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
        }
        .chat-header h4 {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: black;
}
.chat-messages {
    flex-grow: 1;
    padding: 15px 15px 75px 15px;
    overflow-y: auto;
}
.message {
    display: flex;
    margin-bottom: 15px;
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 300px;
}
        
.message.received {
    justify-content: flex-start;
}
.message .message-content {
    padding: 10px;
    border-radius: 15px;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: pre-wrap;
    box-sizing: border-box;
}
.message-icon-time {
    display: flex;
    align-items: center;
    margin-top: 0px;
    color: #6A6A6A;
    font-size: 12px;
}
.message-icon-time img {
    border-radius: 100px;
    width: 34px;
    height: 34px;
    margin-right: 10px;
}
        .message.sent .message-content {
            background-color: #000000;
            color: #241E40;
            font-size: 15px;
            line-height: normal;
        }
        .message.received .message-content {
            background-color: #999999;
            color: #fff;
            font-size: 15px;
            line-height: normal;
            margin-left: 30px;
        }
.message.sent {
    justify-content: flex-end;
    margin-left: auto;
    margin-right: 30px;
    text-align: right;
}        
.message.sent .message-icon-time {
    margin-left: auto;
    flex-direction: row-reverse;
    margin-right: -30px;
}
.message.sent .message-icon-time img {
      margin-left: 10px;
      margin-right: 0;
}
        .message .message-time {
            font-size: 12px;
            color: #999;
            margin-top: 5px;
        }
        .chat-input {
    
    padding: 10px;
    border-top: 2px solid #000000;
    background-color: #fff;
}
        .chat-input input {
    flex-grow: 1;
    padding: 0px;
    padding-left: 40px;
    border: 0px solid #ddd;
    border-radius: 0px;
    height: 44px;
    color: #0A1220;
    font-size: 16px;
}
.chat-input input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #0A1220;
}
.chat-input input::-moz-placeholder { /* Firefox 19+ */
  color: #0A1220;
}
.chat-input input:-ms-input-placeholder { /* IE 10+ */
  color: #0A1220;
}
.chat-input input:-moz-placeholder { /* Firefox 18- */
  color: #0A1220;
}
        .chat-input button {
    padding: 0;
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 10px;
    margin-left: 0;
    cursor: pointer;
    text-overflow: inherit;
    width: 44px;
    height: 44px;
    margin: 0;
}
       
        .chat-input button:hover {
            background-color: #0056b3;
        }
        .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
  padding-top: 60px;
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.profile-circle {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.user-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.user-item span {
  flex-grow: 1;
  margin-left: 10px;
}

.user-item button {
  background-color: #000000;
  color: white;
  border: none;
  padding: 5px 20px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 14px;
}

.user-item button.selected {
  background-color: #28a745;
}

.chat-container .sidebar-header h2 {
  color: #0A1220;
  margin: 0;
}

.modal.chat-modal .modal-content {
  max-width: 420px;
}

.modal.chat-modal .modal-content .close {
  position: absolute;
  right: 15px;
  top: 2px;
}

.modal.chat-modal .modal-content h2 {
  font-size: 20px;
}

.modal.chat-modal .modal-content .user-item span {
  font-size: 14px;
}

button.save-btn-modal {
  background: #000000;
  border-radius: 10px;
  color: #fff;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 700;
}
.selected-chat .chat-time {
    color: #fff !important;
}
.selected-chat .chat-info p {
	color: #fff;
}
.selected-chat .chat-info .chat-small-title{
 color: #fff;
}
.chat-item .chat-info {
    position: relative;
}
.selected-chat {
  background-color: #000000;
  color: white;
}
.chat-msg-info{
	position: absolute;
	right: 15px;
}
.chat-msg-info img{
	height: 20px;
	width: 20px;
}
.modal.delete-modal {
    padding-top: 90px;
}
.modal.delete-modal .modal-content {
    max-width: 400px;
    text-align: center;
}
.modal.delete-modal .modal-content h2{
	font-size: 22px;
	font-weight: bold;
}
.modal.delete-modal .modal-content span.close {
    position: absolute;
    right: -10px;
    top: -10px;
    background: #8d92a4;
    width: 24px;
    height: 24px;
    text-align: center;
    border-radius: 100px;
    padding: 0px 0;
    line-height: 23px;
    font-size: 20px;
    border: #fff solid 1.5px;
    color: #fff;
}
button.save-btn-modal.cancel-btn {
    background: #fff;
    color: #444;
    border: #ddd solid 1px;
}
.cust-vi-chat-icn {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}
.cust-vi-chat-icn a img {
    max-width: 32px;
    margin: 0 5px;
}
.cust-vi-right-bud {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    margin-left: 30px;	
}
.cust-vi-right-bud span.claim-price {
    font-size: 18px;
    font-weight: 700;
}
.claim-detail-head-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.claim-detail-head-link .claim-status-col {
    display: flex;
    align-items: center;
}
.claim-detail-head-link .claim-status-col label {
    white-space: nowrap;
    margin-right: 20px;
    font-size: 16px;
    font-weight: 700;
}
.claim-detail-head-link .claim-status-col select {
    min-width: 140px;
    height: 36px;
    font-size: 14px;
}
.claim-number {
    font-size: 13px;
    font-weight: 550;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 160px;
}
button.btn.cus-img-preview {
    padding: 0;
    overflow: hidden;
}
button.btn.cus-img-preview img {
    filter: inherit !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsignup-page .upload-image {
	display: flex;
	align-items: center;
	margin-bottom: 36px;
}

.newsignup-page .profile-image {
	background-color: #999999;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.newsignup-page .profile-image img {
	width: 25px;
	height: 25px;
}

.newsignup-page .profile-image-detail {
	margin-left: 15px;
}

.newsignup-page .profile-image-detail .image-name {
	font-size: 16px;
	font-weight: bold;
	color: #241E40;
	margin-bottom: 0;
}

.newsignup-page .profile-image-detail .note {
	font-size: 13px;
	color: #241E40;
	margin-bottom: 0;
}
.newsignup-page .aboutus-card-wrapper .file-upload {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.newsignup-page .aboutus-card-wrapper .file-upload p.image-name {
    margin: 0;
    font-size: 16px;
    color: #241E40;
    font-weight: 700;
}
.newsignup-page .aboutus-card-wrapper .file-upload .note {
    font-size: 13px;
    margin: 0;
    color: #241E40;
}
.newsignup-page .aboutus-card-wrapper .file-upload .btn {
    border: 0px solid gray;
    background-color: #999999;
    padding: 8px 20px;
    border-radius: 150px;
    font-size: 20px;
    font-weight: bold;
    width: 111px;
    height: 111px;
    margin: 0;
}
.newsignup-page .aboutus-card-wrapper input {
	border: 1px solid #000000;
}
.about-profile {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.about-profile-pic{
	width: 58px;
	min-width: 58px;
	height: 58px;
	border-radius: 100px;
	overflow: hidden;
}
.about-profile-pic img{
	object-fit: cover;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height:100%;
}
.about-profile h3{
	font-size: 24px;
	font-weight: bold;
	color: #0A1220;
	margin: 0;
	padding: 0;
}
.about-profile h6 {
    font-size: 11px;
    font-weight: 600;
    color: #999999;
    margin: 7px 0;
    padding: 0;
}
.available-profile{
	position: relative;
	color: #6A6A6A;
	font-size: 12px;
	padding-left: 15px;
}
.available-profile:before{
	background: green;
	width: 8px;
	height: 8px;
	border-radius: 20px;
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
}
.about-profile-content{
	margin-left: 15px;
}
.about-page-title{
	border-bottom: 0px;
	margin-bottom: 10px;
}

.about-contact-info {
    display: flex;
    align-items: center;
}
.about-contact-icon {
    min-width: 40px;
}
.row.home_claim_section.about-claim-tab {
    background: #000000;
    margin: -30px -40px 0 -40px !important;
}
.row.home_claim_section.about-claim-tab .accordion-item {
    border: #000000 solid 0px !important;
}
.row.home_claim_section.about-claim-tab .accordion-header .accordion-button {
    background: #fff;
    font-size: 18px;
    font-weight: 600;
    color: rgba(60, 60, 60, 1);
    border: #7FACE3 solid 0px;
    border-radius: 10px;
}
.row.home_claim_section.about-claim-tab .close-timeline {
    margin: 0 0 0 auto;
}
.row.home_claim_section.about-claim-tab .accordion-item {
    border: #000000 solid 0px !important;
    border-radius: 18px;
    overflow: hidden;
}
.row.home_claim_section.about-claim-tab h2.accordion-header {
   background: #fff;
   border-radius: 10px;
}
.row.home_claim_section.about-claim-tab h2.accordion-header .claim-text {
    font-size: 12px;
    text-align: center;
    margin-right: 10px;
    margin-left: auto;
}
.row.home_claim_section.about-claim-tab h2.accordion-header span.price-accordian {
    display: block;
    font-size: 24px !important;
    margin: 0px !important;
}
.row.home_claim_section.about-claim-tab .accordion-item .exhibit-bg {
    padding: 40px 0;
}
.row.home_claim_section.about-claim-tab .claim-content {
    padding: 0 10px 0 10px;
}
.row.home_claim_section.about-claim-tab .cust-vi-chat-icn {
    align-items: center;
    margin-left: auto;
    margin-bottom: 20px;
    margin-top: -17px;
}
.row.home_claim_section.about-claim-tab .cust-vi-chat-icn a.btn.btn-outline-primary {
    margin-right: 50px;
}
.cust-main-noside .slider-profile-title a{
	text-decoration: none;
}
.cust-main-noside .prof-name {
    color: #212529;
    font-weight: normal;
}
.thred-data-box.threadData0 .vertical-line{
	display: none;
}
.thred-data-box.threadData0 {
    padding: 20px 95px;
    position: relative;
    width: calc(100% - 0px);
    border: #7FACE3 solid 0px;
}
.thred-data-box:nth-child(2) {
    border: #7FACE3 solid 1px;
}
.thred-data-box {
    padding: 30px 30px;
    position: relative;
    border: #999 solid 1px;
    border-radius: 16px;
    width: calc(100% - 100px);
    margin-left: auto;
    margin-right: 0px;
    margin-bottom: 30px;
}
.thred-data-box .file-upload1 {
    display: inline-block;
    margin-right: 20px;
}
.thred-data-box:nth-child(2) .vertical-line {
    background: #7FACE3;
}
.thred-data-box:nth-child(2) .vertical-line:before {
    background: #7FACE3;

}
.thred-data-box .vertical-line {
    position: absolute;
    top: 0;
    left: -50px;
    height: 50%;
    width: 2px;
    background: #999999;
}
.thred-data-box .vertical-line:before {
    background: #999;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    border: #fff solid 5px;
    top: -10px;
    left: -14px;
    content: "";
    position: absolute;
}
.thred-data-box.threadData2 {
    width: calc(100% - 150px);
    background: #000000;
    border: #7FACE3 solid 1px;
}
.thred-data-box.threadData3 {
    width: calc(100% - 200px);
    background: #F0F0F0;
}
.thred-data-box.threadData4 {
    width: calc(100% - 250px);
}
.thred-data-box.threadData5 {
    width: calc(100% - 300px);
}
.thred-data-box.threadData6 {
    width: calc(100% - 350px);
}
.thred-data-box.threadData7 {
    width: calc(100% - 400px);
}
.thred-data-box.threadData8 {
    width: calc(100% - 450px);
}
./*accordion-exhibit .accordion-item.show-exhibit .accordion-collapse {
    display: block !important;
}*/
.accordion-item.show-exhibit .thred-data-box {
   border: #7FACE3 solid 1px;
   background: #000000 !important;
}
.exhibit-title-w-number {
    margin: 0 0 10px 0 !important;
}
 .exhibit-title-w-number span {
    background: #28B446;
    color: #fff;
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    padding: 5px 0;
    border-radius: 50px;
    margin-right: 10px;
}
.update-col {
    padding-top: 15px;
    min-width: 220px;
}
.update-col .exhibit-title-w-number {
	font-size: 15px;
    font-weight: 700;
    color: #0A1220;
}
.claim-list .stars {
    margin-left: auto;
}
.newsignup-page ul {
    list-style: none;
    overflow-y: auto;
    max-height: 280px;
}
.newsignup-page ul li.list-group-item {
    margin: 15px 0;
}
.newsignup-page ul li.list-group-item .image.rounded-circle {
    border-radius: 100px;
    overflow: hidden;
    width: 80px;
    height: 80px;
}
.newsignup-page ul li.list-group-item .image.rounded-circle img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}
.newsignup-page ul li.list-group-item .row {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
}
.newsignup-page ul li.list-group-item .row .col-1 {
    min-width: 50px;
}

.newsignup-page ul li.list-group-item .row .col-7 {
    margin: 0 !important;
    padding: 0 0 0 20px !important;
}
.newsignup-page button.btn.btn-info.continueBtn {
    margin: 10px auto;
   width: 100%;
    border: 1px solid #000000;
    border-radius: 8px;
    background-color: transparent;
    color: #2F444C;
    font-size: 18px;
    font-weight: bold;
    padding: 12px;
    margin-top: 10px;
}
.newsignup-page button.btn.btn-info.continueBtn:hover,.newsignup-page button.btn.btn-info.continueBtn:focus {
    background-color: #000000;
    color: white;
    border: 1px solid #000000;
}

.newsignup-page .aboutus-left-section .bg-purpule {
    background-color: #F7F8FC !important;
}
.newsignup-page .aboutus-left-section .bg-purpule .title-section h1 {
    color: #0A1220;
}
.newsignup-page .aboutus-left-section .bg-green {
    background-color: #F7F8FC !important;
}
.newsignup-page .aboutus-left-section .bg-green .title-section h1 {
    color: #0A1220;
}
.newsignup-page .aboutus-left-section .top-content.bg-blue {
    background-color: #e3eafa !important;
}
.newsignup-page .aboutus-left-section .bg-blue .title-section h1 {
    color: #789ee2;
}

.stories-section {
    margin-bottom: 40px;
}
.stories-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
}
.stories-grid {
    display: flex;
    gap: 15px;
}
.story-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex: 0 0 220px;
}
.story-img{
	height: 220px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
}
.story-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.story-card h4 {
    padding: 10px;
    font-size: 16px;
    margin: 0;
    font-weight: bold;
}
.home_story_page .story-card p {
    padding: 0 10px 10px;
    color: #666;
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 40px;
}
.home_story_right{
	background-color: rgba(127, 172, 227, 0.2);
	border-top: #7FACE3 solid 10px;
	border-radius: 10px;
	overflow: hidden;
	height: 675px;
	min-width: 240px;
	margin-top: 130px;
	padding: 15px;
    position: sticky;
    top: 160px;

}
.home_story_right h3 {
    font-weight: bold;
    font-size: 22px;
    margin-top: 20px;
}
.home_story_right ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.home_story_right ul li{
	margin: 15px 0px;
	font-size: 16px;
}
.home_story_page {
    display: flex;
    margin-bottom: 30px;
}
.home_story_middle {
    min-width: calc(100% - 240px);
    padding: 20px;
}
.home_story-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.home_story-header h2 {
    color: #0A1220;
    font-size: 25px;
    font-weight: bold;
}
.home_story-searchbox {
    margin-left: auto;
}
.home_story-searchbox input{
	height: 43px;
	border-radius: 10px;
	padding: 8px 20px;
	background-color:#fff;
	width: 400px;
}
.home_story_middle .story-card{
	margin: 10px 10px;
}
.story-main-heading{
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}
.story-main-heading h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}
.story-main-heading a{
	color: #000000;
	text-decoration: none;
	font-size: 12px;
	font-weight: bold;
}
.home_story_middle .slick-next, .home_story_middle .slick-prev{
	display: none !important;
}

.story-list-page .slick-next, .story-list-page .slick-prev{
	display: block !important;
}


.story-list-page .slick-slider .slick-disabled {
  opacity : 0; 
  pointer-events:none;
}
.story-list-page .slick-next, .story-list-page .slick-prev {
     width: 37px;
    height: 100%;
    background-color: rgb(60 60 60 / 70%);
    display: block !important;
    z-index: 9;
    opacity: 1;
}
.story-list-page .slick-next:hover {
     width: 37px;
    height: 100%;
    background-color: rgb(60 60 60 / 70%);
    z-index: 9;
    opacity: 1;
    background-image: url(../img/right-arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 13px auto;
}
.story-list-page .slick-prev:hover {
     width: 37px;
    height: 100%;
    background-color: rgb(60 60 60 / 70%);
    z-index: 9;
    opacity: 1;
    background-image: url(../img/left-arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 13px auto;
}
.story-list-page .slick-prev {
    left: -5px;
    background-image: url(../img/left-arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 13px auto;
}
.story-list-page .slick-next {
    right: -5px;
    background-image: url(../img/right-arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 13px auto;
}
.story-list-page .slick-next:before, .story-list-page .slick-prev:before {
    font-size: 0;
}
.story-list-page .story-card {
    margin: 0px 10px;
}
.story-list-page .story-card a h4 {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 270px;
}

.story-cl-check input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.story-cl-check label {
  position: relative;
  cursor: pointer;
  margin-bottom: 0px !important;
}

.story-cl-check label:before {
  content:'';
  -webkit-appearance: none;
  background-color: #000000;
  border: 2px solid #000000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  border-radius: 50%;
}

.story-cl-check input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.home_story_middle .slick-list{
	margin: 0 -10px;
}
.story-init {
    max-width: 850px;
    margin: 10px auto 30px auto !important;
    text-align: left;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.story-init .back-btn {
    font-size: 16px;
    font-weight: bold;
    color: #0A1220;
    display: inline-block;
    width: auto;
    margin: 10px 0;
    margin-right: auto;
}
.story-init .home_story_init {
    max-width: 600px;
    display: block;
    margin: 20px auto 0 auto;
}
.story-init-content h3{
	font-size: 24px;
	font-weight: bold;
	margin-top: 15px;
}
.story-init-content h5{
	font-size: 18px;
	font-weight: bold;
}
.story-init .home_story_init .btn-col{
	text-align: center;
}
.story-init .home_story_init .btn-col a.btn.btn-primary {
    margin: 0 auto;
}
.story-input input,.story-input input:focus {
    background: none;
    border: none;
    border-bottom: #50B4DE solid 1px;
    padding: 5px 0px;
    height: 45px;
}
.story-init .home_story_init .story-img {
    height: 240px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    overflow: hidden;
    position: relative;
    padding-bottom: 40px;
}
.story-init .home_story_init .story-img input[type="file"] {
    display: block !important;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 999;
    opacity: 0;
}
.story-init .home_story_init .story-input {
    margin-top: 20px;
}
.story-init .home_story_init .story-img label {
    opacity: 1;
    position: relative;
    z-index: 1;
    font-size: 18px;
    color: #5CC6FF !important;
    font-weight: bold;
    text-align: center;
    width: 100%;
    padding-top: 10px;
}



.story-init .home_story_init .story-input-check .toggle-checkbox input[type="checkbox"] {
    position: relative;
    width: 55px;
    height: 30px;
    -webkit-appearance: none;
    background: #c6c6c6;
    outline: none;
    border-radius: 20px;
    box-shadow: none;
    transition: 0.7s;
    border: 1.5px solid #c6c6c6;
}

.story-init .home_story_init .story-input-check .toggle-checkbox input:checked[type="checkbox"] {
  background: #fff;
}

.story-init .home_story_init .story-input-check .toggle-checkbox input[type="checkbox"]:before {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 20px;
  top: 0;
  left: 0;
  background: #000000;
  transform: scale(1.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: .5s;
}

.story-init .home_story_init .story-input-check .toggle-checkbox input:checked[type="checkbox"]:before {
  left: 30px;
}
.story-init .home_story_init label{
	 font-size: 14px;
    color: #0A1220;
    font-weight: bold;
    display: block;
}
.story-init .home_story_init .story-input-check .checkbox-content label {
    font-size: 18px;
    color: #0A1220;
    font-weight: bold;
}
.story-init .home_story_init .story-input-check .checkbox-content span{
	font-size: 14px;
}
.story-init .home_story_init .story-input-check  {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.story-init .home_story_init .story-input-check .date-and-time{
	display: flex;
	align-items: center;
	margin-top: 10px;
}
.story-init .home_story_init .story-input-check .date-and-time label{
	font-size: 16px;
	font-weight: 600;
	color: #939393;
	margin-right: 10px;
}
.story-init .home_story_init .story-input-check .date-and-time input{
	    background: #939393;
    margin: 0 10px;
    width: 150px;
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
    padding: 10px 10px;
    height: 37px;
}
.story-init .home_story_init .story-input-check .checkbox-content {
    width: calc(100% - 70px);
}
.story-init .home_story_init .story-input-check .toggle-checkbox {
    min-width: 60px;
}
.story-init .home_story_init .story-link{
	margin-top: 10px;
}
.story-init .home_story_init .story-link a{
	font-size: 18px;
	color: #000000;
	font-weight: bold;
}
.story-init .home_story_init .save-btn{
	margin-top: 15px;
}
.story-init .home_story_init .save-btn1{
	margin-top: 15px;
}
.modal.chat-modal input {
    background: #EAEAEA;
    border-radius: 10px;
    height: 40px;
    padding: 0 20px;
    color: #000;
    border: none;
}
.story-init-content .story-header-search{
	 background: #EAEAEA;
    border-radius: 10px;
    height: 40px;
    padding: 0 20px;
    color: #000;
    border: none;
}
.modal.chat-modal .chat-modal-user-name .name-display{
	font-size: 18px;
	font-weight: 600;
}
.modal.chat-modal .chat-modal-user-name .username-display{
	font-size: 13px;
	font-weight: 400;
}
.modal.chat-modal .user-item button, .story-init-content .user-item button{
    margin: 0 15px 0 0;
    font-size: 0;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    padding: 0;
    border: #9699B5 solid 1px;
    background: #fff;
    position: relative;
}
.modal.chat-modal .user-item button.selected, .story-init-content .user-item button.selected{
	background: #0089FF;
	position: relative;
	border: #0089FF solid 1px;
}
.modal.chat-modal .user-item button.selected:after, .story-init-content .user-item button.selected:after{
	position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 20px;
    background: #fff;
    content: "";
    top: 4px;
    left: 0px;
    right: 0;
    margin: 0 auto;
}
.modal.chat-modal .chat-modal-user-name {
    display: flex;
    flex-direction: column;
}
.story-det-link{
	text-decoration: none;
	font-size: 16px;
	margin-left: auto;
}
.story-init .home_story_init .story-link label {
    margin-bottom: 15px;
    font-size: 18px;
}
.story-coll {
    margin-bottom: 15px;
}
.story-coll-data {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.story-coll-data .chat-modal-user-name {
    margin-left: 10px;
    display: flex;
    flex-direction: column;
}
.story-coll-data .chat-modal-user-name .name-display{
	font-size: 18px;
	font-weight: 600;
}
.story-coll-data .chat-modal-user-name .username-display{
	font-size: 13px;
	font-weight: 400;
}
.btn:hover, .btn:focus {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0b5ed7;
}
.home_story_middle .story-card a{
	text-decoration: none;
}
.home_story_middle .story-card a h4{
	color: #0A1220;
}
.home_story_middle .story-card{
	position: relative;
}
a.plus-btn {
    position: absolute;
    background: #50B4DE;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50px;
    text-align: center;
    padding: 1px 0;
    line-height: 1;
    font-weight: 700;
    font-size: 22px;
    right: 10px;
    top: 230px;
    z-index: 9;
}
.story-video {
    text-align: center;
}
.story-video h3{
	font-size: 16px;
	font-weight: 700;
}
.story-video-content{
	text-align: center;
	padding: 10px 70px;
}
.story-video-content h5{
	font-size: 21px;
	font-weight: 700;
}
.story-video-content h3{
	font-size: 26px;
	font-weight: 700;
	margin-top: 20px;
	margin-bottom: 50px;
}
.story-video-content a.btn.btn-primary {
    border: #000000 solid 1px;
    background: #000000;
    color: #0A1220;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 30px;
}
.record-video-large h3 span{
	color: #000000;
}

.video-btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.btn-col-play, .btn-col-stop {
    display: flex;
    flex-direction: column;
    margin: 0 10px;
}
.recorded-video video {
    width: 150px;
    border: #000000 solid 2px;
    border-radius: 10px;
    display: block;
    margin: 30px auto;
}
.recorded-video-btns{
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.recorded-video-btns .another-btn{
	border: #000000 solid 1px;
    background: #000000;
    color: #0A1220;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 30px;
    border-radius: 4px;
}
.recorded-video-btns .review-btn{
	border: #000000 solid 1px;
    background: #000000;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 30px;
    border-radius: 4px;
}
.story-setup .file-upload .btn {
    border: 0px solid gray;
    background-color: #50B4DE;
    padding: 0px 10px;
    margin: 20px 20px;
    border-radius: 100px;
    font-size: 20px;
    font-weight: bold;
    width: 50px;
    height: 50px;
}
.story-setup .upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    border: 2px dashed #BABABA;
    padding: 0px 0px;
    border-radius: 4px;
    margin: 0 5px;
}
.story-setup  button.btn.custom-img-preview.story-set-img {
    padding: 0;
    width: 92px;
    height: 92px;
    margin: 0;
    border-radius: 0px;
}
.story-setup {
	position: relative;
}
.story-setup .story-set-close {
    position: absolute;
    z-index: 9;
    max-width: 30px;
    right: 0;
    background: #000;
    height: 30px;
    border: #fff solid 1.5px;
    border-radius: 100px;
    padding: 4px;
    cursor: pointer;      
}
.story-setup .btn-primary-save {
    background-color: #000000;
    border-radius: 8px;
    color: #fff;
    padding: 10px 30px;
    font-size: 14px;
    position: absolute;
    right: 0;
    top: -30px;
}
.story-setup h2{
	font-size: 24px;
	font-weight: bold;
}
.story-setup .story-setup-content {
    margin-top: 50px;
}
.story-review h2{
font-size: 24px;
	font-weight: bold;
	color: #0A1220;
	margin-bottom: 10px;
}
.story-review video {
    width: 150px;
    min-width: 150px;
    max-width: 150px;
    height: 100px;
}
.story-review .que-content {
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: #000000 solid 1px;
    margin-left: 20px;
    padding-bottom: 10px;
    height: 100px;
}
.story-init a#saveBtn {
    margin-top: 15px;
    float: right;
    background: #000000 !important;
    border-color: #000000 !important;
    padding-left: 30px;
    padding-right: 30px;
}
.story-review .que-sub-data {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}
.story-review .que-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0A1220;
}
.story-review .que-content span{
	font-size: 12px;
	color: #0A1220;
	line-height: normal;
}
.que-content-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.que-cutom-checkbox label {
    margin-right: -10px !important;
    padding-right: 0px !important;
    width: auto !important;
}
.que-cutom-checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
a.play-video {
    text-decoration: none;
}
.que-cutom-checkbox label {
  position: relative;
  cursor: pointer;
}

.que-cutom-checkbox label:before {
  content:'';
  -webkit-appearance: none;
  background-color: transparent;
  background-image: url(../img/next.png);
  background-repeat: no-repeat;
  background-position: right center;
  border: 0px solid #000000;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.05), inset 0px 0px 0px 0px rgba(0, 0, 0, 0.05);
  padding: 12px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 0px;
  border-radius: 100px;
}

.que-cutom-checkbox input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.story-pic {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 510px;
    margin: 15px auto;
}
.story-pic .pic-img-section {
    min-width: 96px;
    max-width: 96px;
    padding: 3px;
    overflow: hidden;
    height: 96px;
    border-radius: 8px;
}
.story-pic .pic-img-section img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.review-cont {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
}
.story-review .btn-primary {
    background-color: #000000;
    color: #fff;
    text-align: center;
    min-width: 240px;
    margin: 30px auto;
    font-weight: 700;
    display: block;
    max-width: 240px;
}
.story-review .btn-primary-save {
    background-color: #000000;
    border-radius: 8px;
    color: #fff;
    padding: 10px 30px;
    font-size: 14px;
    position: absolute;
    right: 0;
    top: -30px;
}
.member-data {
    min-width: 70%;
    margin-top: 20px;
}
.member-data .member-data-content {
    display: flex;
    align-items: center;
    margin: 20px 0;
}
.member-data .member-data-content .profile-circle {
    width: 46px;
    height: 46px;
    margin-right: 15px;
}
.member-data .chat-modal-user-name {
    min-width: 40%;
}
.member-data .member-data-content .btn.remove-btn {
    background: #E92035;
    font-size: 14px;
    color: #fff;

        border-radius: 4px;
}
.btns-group {
    margin-left: auto;
}
.btns-group a.btn {
    margin-left: 30px;
}
.btn-secondary.close-btn {
    width: 32px;
    height: 32px;
    border-radius: 40px;
    padding: 0 4px;
    position: absolute;
    right: -10px;
    top: -10px;
    border: #fff solid 2px;
}
.member-data .member-data-content .btn.approve-btn {
    background: #000000;
    font-size: 14px;
    color: #fff;
        border-radius: 4px;
}

.story-textarea textarea {
    border: #50B4DE solid 2px;
    border-radius: 8px;
    background: #000000;
    height: 190px;
    padding: 10px 15px;
    color: #000;
    margin: 20px 0 50px 0;
}
#videoModal .modal-dialog {
    max-width: 1000px;
}
#videoModal .modal-dialog button.btn.btn-secondary {
    background: #fff url(../img/close-gray.svg) no-repeat center center;
    background-size: 34px;
    font-size: 0px;
    width: 42px;
    height: 42px;
    border-radius: 100px;
    border: none;
    position: absolute;
    right: -20px;
    top: -20px;
    z-index: 9;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
#videoModal .modal-dialog .modal-header {
    padding: 0;
    border: 0;
}
.story-review a.que-redirect {
    text-decoration: none;
    width: calc(100% - 170px);
}
.claim-view-with-search .claim-search-left{
	display: flex;
	align-items: center;
	    margin-bottom: 20px;
}
.claim-view-with-search .claim-search-left input {
    width: calc(100% - 350px);
    height: 40px;
    background-color: #f2f2f2;
    margin: 0;
}
.claim-view-with-search .claim-search-left  a.btn.btn-outline-primary{
	background-color: #000000;
	color: #fff;
	padding: 8px 35px;
	height: 40px;
	margin-left: auto;
}
.invite-modal .close-btn {
    border-radius: 100px;
    width: 32px;
    height: 32px;
    padding: 0 0;
    position: absolute;
    top: -10px;
    right: -10px;
    border: #fff solid 2px;
}
.invite-modal .close-btn img{
	max-width: 20px;
}
.invite-modal .modal-header {
    justify-content: center;
}
.invite-modal .modal-header h5{
    font-weight: 700;
    margin-bottom: 0px;
}
.access-modal .modal-header {
    justify-content: center;
}
.access-modal .modal-header h5{
    font-weight: 700;
    margin-bottom: 0px;
}
.access-modal ul li {
    margin: 5px 5px;
    list-style: none;
}
.access-modal p{
	text-align: center;
}
.access-modal-btn {
    display: flex;
    justify-content: center;
}
.access-modal-btn .btn{
   margin: 0 10px;
}
.btns-group .btn.reject-btn {
    border: #ff7b1a solid 1px;
    color: #ff7b1a;
}
.invite-modal p {
    text-align: center;
}
.invite-modal .modal-icons ul{
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
}
.invite-modal .modal-icons ul li {
    margin: 5px 5px;
    list-style: none;
    width: 40px;
}
.invite-modal .modal-icons ul li a {
    display: inline-block;
    width: 100%;
}
.invite-modal .modal-icons ul li img {
    width: 100%;
    height: auto;
}
.profile-overall-page .header-btn{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}
.profile-overall-page .header-btn .back-btn a{
    border: #999999 solid 1.5px;
    padding: 8px 25px;
    border-radius: 10px;
    color: #0A1220;
     font-weight: 700;
    text-decoration: none;
}
.profile-overall-page .custom-container-lg {
    max-width: 100%;
    padding: 20px 20px;
    background: #ffff;
}
.profile-overall-page .header-btn .edit-btn a {
    color: #0089FF;
    font-weight: 700;
    text-decoration: none;
}
.profile-overall-page .cust-vi-chat-icn {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    align-items: center;
}
.profile-overall-page .cust-vi-chat-icn label {
    font-size: 13px;
    font-weight: 600;
    margin-right: 10px;
}
.profile-overall-page .cust-vi-chat-icn select {
    word-wrap: normal;
    height: 40px;
    background-color: #F4F4F4;
    border-radius: 8px;
    margin-right: 10px;
    min-width: 110px;
}
.profile-overall-page .cust-vi-chat-icn .btn-outline-primary{
	white-space: nowrap;
	font-size: 16px;
	font-weight: 700;
	color: #0A1220;
}
.profile-overall-page .cust-vi-chat-icn .btn-outline-primary:hover{
	color: #fff;
}
.profile-overall-page .tab-bar {
    margin-bottom: 0px !important;
    border-bottom: 2px solid rgb(242 247 252);
    margin: 0 -20px;
}
.profile-overall-page .tab-bar .tab-item.active {
   border-bottom: rgba(0, 0, 0, 1) solid 2px !important;
    margin-bottom: -1px;
}
.overall-about-header h3 {
    color: #999999;
    font-size: 14px;
    margin-top: 20px;
    font-weight: 500;
}
.overall-about-header span {
    max-width: 680px;
    font-size: 15px;
    color: #0A1220;
    display: block;
    margin-bottom: 30px;
}
.overall-about-content .no-profile-story {
    background: #E5E5E5;
    border-radius: 16px;
    text-align: center;
    padding: 90px 50px;
}
.overall-about-content .no-profile-story img {
    max-width: 70px;
    border-radius: 100px;
}
.overall-about-content .no-profile-story h3 {
    font-size: 19px;
    color: #0A1220;
    font-weight: 700;
    margin-top: 30px;
}
.overall-about-content .no-profile-story p {
    font-size: 12px;
    color: #0A1220;
    margin-bottom: 20px;
}
.overall-about-content .no-profile-story a {
    background: #fff;
    padding: 13px 30px;
    border-radius: 10px;
}
.profile-overall-page .accordion-header .accordion-button{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.profile-overall-page .services-about-content {
    margin-top: 30px;
}
.profile-overall-page .services-about-content h2.accordion-header h3 {
    font-size: 21px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
.profile-overall-page .services-about-content h2.accordion-header h3 span.review-doc-icon {
    background: #63a0fb;
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    padding: 10px 9px;
    border-radius: 50px;
    margin-right: 20px;
}
.profile-overall-page .services-about-content h2.accordion-header .view-details-btn{
	background-color: #fff;
	padding: 10px 20px;
	border-radius: 6px;
	border: #000000 solid 1.7px;
	font-size: 14px;
	font-weight: 700;
	color: #0A1220;
}
.profile-overall-page .accordion-header .accordion-button::after {
    margin: 0;
    font-size: 0px;
    width: 0;
}
.doncument-price-col {
    margin-left: auto;
    margin-right: -10px;
    display: flex;
    align-items: center;
}
.doncument-price-col .price-col {
    font-size: 18px !important;
    font-weight: 700;
    color: #0A1220;
    margin-right: 50px !important;
    text-align: right;
}
.doncument-price-col .price-col span {
    font-size: 11px !important;
    color: #0A1220;
    font-weight: 400;
    display: block;
    margin: 0 !important;
}
.add-profile{

}
.add-profile .tab-bar {
    background: none;
    height: auto;
    line-height: normal;
    position: relative;
}
.add-profile .tab-item {
    cursor: pointer;
    padding: 20px 30px 35px 30px;
    border: 1px solid #ccc;
    border-bottom: none;
    background-color: #0A1220;
    border-radius: 8px;
    position: relative;
    margin-right: 15px;
    margin-bottom: 20px;
    width: 210px;
    text-align: center;
}
.add-profile .tab-item:after {
    width: 80%;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: "";
    bottom: 20px;
}
.add-profile .tab-item.active {
    background-color: #000000;
    border-bottom: none !important;
}
.add-profile .checkbox-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}
.add-profile .background-tab-content .form-group {
    border: #7FACE3 solid 1px;
    border-radius: 6px;
    padding: 4px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 5px;
}
.add-profile .background-tab-content .checkbox-wrapper .form-group input[type="checkbox"] {
    margin: 0;
}
.add-profile .background-tab-content h3{
	font-size: 15px;
	font-weight: 600;
	margin: 20px 0 5px 0;
	padding: 0;
}
.member-data .role-div {
    display: flex;
    align-items: center;
}
.member-data .btns-group {
    display: flex;
    align-items: center;
}
.member-data .role-div label {
    white-space: nowrap;
    padding-right: 10px;
}
.member-data .chat-modal-user-name {
    min-width: 33%;
}
.member-data .role-div select {
    height: 36px;
    font-size: 14px;
}
.member-data .btns-group a.btn.btn-outline-primary {
    background: #105BBC;
    color: #fff;
}
.role-select {
    display: flex;
    align-items: center;
    justify-content: center;
}
.role-select label{
	padding-right: 10px;
}
.role-select  select {
    height: 36px;
    font-size: 14px;
    max-width: calc(100% - 180px) !important;
}
.rol-content {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 15px 0;
    align-items: center;
}
.rol-content-col span {
    display: block;
}
.rol-content-col span:nth-child(2) {
    font-size: 13px;
}
#preview-container {
    min-width: 100%;
    position: relative;
}
#preview-container div {
    width: 110px !important;
    height: 110px !important;
    overflow: hidden;
}
#preview-container div .preview-img {
    width: 100% !important;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.custom-input-send-msg {
    display: flex !important;
    min-width: 100% !important;
    align-items: center;
    position: relative;
    height: 44px;
}
.chat-input input {
       margin: 0;
}
.chat-input input:focus {
       border: none;
       outline: none;
}
.message .all-media {
    margin: 7px 0;
}
.message .all-media .msg-img img {
    width: 90px !important;
    border-radius: 10px;
}
.claim-view-hed {
	display: flex;
    justify-content: flex-start;
    padding: 15px;
}
.claim-view-hed .backbtnclaim {
    background: #fff;
    text-decoration: none;
    color: #444;
    font-size: 16px;
    padding: 8px 20px;
    border-radius: 8px;
}
.with-story-data {
    max-width: 570px;
    margin: 0 auto;
}
.overall-about-btn {
    display: flex;
    justify-content: space-between;
    margin: 5px 0 25px 0;
    border-bottom: #50B4DE solid 1px;
    padding-bottom: 25px;
}
.overall-about-btn span {
    font-size: 14px;
}
.overall-about-btn span img {
    margin-right: 5px;
}
.overall-about-comment {
    position: relative;
}
.overall-about-comment input[type="text"] {
    background: #000000;
    height: 60px;
    color: #fff;
    border-radius: 4px;
    padding: 0 30px;
     font-weight: 700;
}
.overall-about-comment input[type="text"]::placeholder {
  color: #fff;
  opacity: 1; /* Firefox */
}

.overall-about-comment input[type="text"]::-ms-input-placeholder { /* Edge 12-18 */
  color: #fff;
}
.overall-about-comment button {
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #fff;
    font-weight: 700;
    height: 60px;
    z-index: 9;
}
.user-profile-icon {
      overflow: hidden;
}
.user-profile-icon img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.claim_detail_main .news_section ul li a {
    color: inherit;
    text-decoration: none;
}

.deactivateModal .close {
    padding: 0 0;
    width: 32px;
    height: 32px;
    line-height: 0;
    border-radius: 100px;
    color: #fff;
    background: #6c757d;
    position: absolute;
    top: -10px;
    right: -10px;
    border: #fff solid 2px;
}
.deactivateModal .modal-header {
    display: block;
    border-bottom: 0px;
}
.deactivateModal h5.modal-title {
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    display: block;
    margin: 0;
}
.deactivateModal .modal-footer {
    justify-content: center;
    border-top: 0;
}
.deactivateModal .modal-footer .btn-secondary {
    background: #fff;
    color: #565e64;
    padding-left: 30px;
	padding-right: 30px;
}
.deactivateModal .modal-footer .btn-primary{
	padding-left: 30px;
	padding-right: 30px;
	background: #000000;
	border-color: #000000;
}
.claim-detail-tab-content .removeExhibit {
        border: #E92035 solid 1px !important;
    color: #E92035 !important;
    padding: 8px 30px !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
}
.claim-detail-tab-content .removeExhibit:hover {
    border-color: #E92035 !important;
    color: #fff !important;
    background: #E92035 !important;
}

.claim-detail-tab-content .activateExhibit {
        border: #000000 solid 1px !important;
    color: #000000 !important;
    padding: 8px 30px !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
}
.claim-detail-tab-content .activateExhibit:hover {
    border-color: #000000 !important;
    color: #fff !important;
    background: #000000 !important;
}
.file-upload-right-col {
    padding-right: 20px;
}
.cust-vi-chat-icn.cust-over-chat label {
    white-space: nowrap;
}
.cust-vi-chat-icn.cust-over-chat select.profile-select {
    min-width: 170px;
}
.cust-vi-chat-icn.cust-over-chat a img {
    max-width: 39px;
    margin: 0 5px;
}
.notification-page {
    margin: 30px 40px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}
.cust-pro-chat {
    display: flex;
    align-items: center;
}
.notification-page h4 {
    color: #0A1220;
    font-size: 24px;
    font-weight: 700;
    border-bottom: #000000 solid 1px;
    padding-bottom: 15px;
    margin-bottom: 25px;
}
.notification-items {
    margin: 20px 0;
}
.notification-item-data {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.notification-item-data .img-data {
    width: 62px;
    height: 62px;
    border-radius: 100px;
    overflow: hidden;
}
.notification-item-data .img-data .profile-circle {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.notification-con {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}
.notification-time {
    margin-left: auto;
}
.notification-con a {
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    color: #000000;
}
span.notification-sname {
    font-size: 11px;
    color: #999999;
    font-weight: 600;
}
span.notication-msg {
    font-size: 14px;
    color: #0A1220;
    font-weight: 500;
}
.load-more-data {
    text-align: center;
}
.load-more-data a {
    text-decoration: none;
}
.notification-link{
	text-decoration: none;
}
.spinner-profile{
	text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.record-video-large .start-video-btn{
	background:url(../img/record-start-btn.png) no-repeat center center;
    font-size: 0px;
    border-radius: 100px;
    width: 60px;
    height: 60px;
    padding: 0px;
    background-size:65px;
}

.record-video-large .stop-video-btn{
	background:url(../img/record-stop-btn.png) no-repeat center center;
    font-size: 0px;
    border-radius: 100px;
    width: 60px;
    height: 60px;
    padding: 0px;
    background-size:65px;
}

.record-video-large .cancel-video-btn {
    background:url(../img/record-cancel-btn.png) no-repeat center center;
    font-size: 0px;
    border-radius: 100px;
    width: 60px;
    height: 60px;
    padding: 0px;
    background-size:65px;
}
img.complete-img {
    max-width: 30px;
}
img.not-complete-img {
    max-width: 30px;
}
.story-coll-data a.story-det-link {
    color: #0A1220 !important;
}
.story-spinner {
	text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}
.edit-pro-industry h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}
.edit-pro-industry .checkbox-wrapper {
    display: flex;
    flex-wrap: wrap;
}
.edit-pro-industry .checkbox-wrapper .form-group {
    border: #7FACE3 solid 1px;
    border-radius: 6px;
    padding: 4px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 5px;
}
.edit-pro-industry .checkbox-wrapper .form-group input {
    margin: 0;
}

.edit-pro-services h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 20px;
}
.edit-pro-services .checkbox-wrapper {
    display: flex;
    flex-wrap: wrap;
}
.edit-pro-services .checkbox-wrapper .form-group {
    border: #7FACE3 solid 1px;
    border-radius: 6px;
    padding: 4px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 5px;
}
.edit-pro-services .checkbox-wrapper .form-group input {
    margin: 0;
}
.story-process {
    background: #fa6400;
    color: #fff;
    padding: 4px 24px;
    border-radius: 10px;
    position: absolute;
    bottom: 55px;
    z-index: 2;
    left: 15px;
    font-size: 0.85em;
}
.story-ready-publish {
    background: #148939;
    color: #fff;
    padding: 4px 24px;
    border-radius: 10px;
    position: absolute;
    bottom: 55px;
    z-index: 2;
    left: 15px;
    font-size: 0.85em;
}
.story-detail-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.story-detail-btn .btn{
	margin: 5px 0;
}
a.btn.btn-primary.orson-review {
    background-color: #B57FE3;
    border-color: #B57FE3;
    margin: 60px auto 40px auto;
    display: block;
    width: 200px;
}
h3.orson-asset-count {
    text-align: center;
}
a.btn.btn-primary.orson-publish {
    display: block;
    width: 280px;
    margin: 60px auto 0 auto;
    background-color: #000000;
    border-color: #000000;
}
a.btn.btn-primary.orson-delete {
    background-color: #fff;
    border-color: #939393;
    color: #939393;
    width: 280px;
    margin: 50px auto 50px auto;
    display: block;
}
.story-init .home_story_init .story-input-check {
    margin-top: 30px;
}
.tab-bar.home_claim_tab.claim-view-tab {
    background: none;
}
.tab-bar.home_claim_tab.claim-view-tab .tab-item{
	color: #0A1220;
	border: 0px;
	font-size: 14px;
	font-weight: bold;
	padding: 0px;
	margin-right: 40px;
	border-bottom: transparent solid 2px !important;
}
.tab-bar.home_claim_tab.claim-view-tab .tab-item.active {
    background-color: transparent;
    color: #000000;
    border: 0px;
    border-bottom: #000000 solid 2px !important;
}
.approved-tab {
    margin-top: 20px;
}
.claim-view-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.collaborators-title{
	color: rgba(60, 60, 60, 0.5) !important;
	font-size: 16px !important;
	font-weight: bold;
	margin-top: 40px !important;
	margin-bottom: 10px !important;
}
a.collaborator-btn {
    background: #36B5BC;
    color: #fff !important;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px !important;
}
span.sub-name-display {
    font-size: 12px;
}
.approved-tab .chat-modal-user-name {
    min-width: calc(100% - 215px);
}
.approved-tab a.btn.approve-btn {
    background: #000000;
    color: #fff !important;
    font-size: 14px !important;
}
.approved-tab a.btn.reject-btn {
    font-size: 14px !important;
    background: rgb(247, 127, 111);
    color: #fff !important;
    margin-left: 10px;
}
.share-layout-btn {
    background: #50B4DE;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    width: 130px;
    display: block;
    position: absolute;
    right: -7px;
    top: 50%;
    font-size: 14px;
    margin-top: -40px;
    font-weight: bold;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.share-layout-btn:hover, .share-layout-btn:focus {
	color: #fff !important;
}
.story-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    padding-right: 7px;
}
a.share-layout-btn:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 14px solid transparent;
    border-bottom: 0px solid transparent;
    border-left: 14px solid #085f8c;
    border-right: 0;
    position: absolute;
    content: "";
    top: -13px;
    right: 0;
}
a.share-layout-btn:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 0px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 14px solid #085f8c;
    border-right: 0;
    position: absolute;
    content: "";
    bottom: -13px;
    right: 0;
}
.story-invite-modal .modal-header {
    border: none;
    padding-bottom: 0px;
}
.story-invite-modal p{
	font-size: 14px;
}
.story-invite-modal .modal-icons ul li {
    margin: 5px 5px;
    list-style: none;
    width: auto;
}
.story-invite-modal .modal-icons ul li img {
    width: 100%;
    height: 28px;
}
.story-invite-modal .modal-icons {
    border-top: rgba(0,0,0,0.2) solid 1px;
    padding-top: 20px;
    margin-top: 10px;
}
.story-invite-modal .modal-icons ul li a.copy-btn-modal {
    background: #41af1c;
    color: #fff;
    display: flex !important;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    text-decoration: none;
    padding: 5px 15px !important;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
}
.story-invite-modal .close-btn {
    border-radius: 100px;
    width: 32px;
    height: 32px;
    padding: 0 0;
    position: absolute;
    top: -10px;
    right: -10px;
    border: #fff solid 2px !important;
}
.claim-incomplate {
    color: red;
    font-size: 14px;
}
.claim-incomplate img {
    max-width: 20px;
    margin-right: 8px;
    vertical-align: top;
    margin-top: 4px;
}
.custom-claim-incomplate {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.custom-claim-incomplate h4 {
    margin: 0 20px 0 0 !important;
}
.custom-claim-incomplate .claim-incomplate img {
    margin-right: 5px;
    margin-top: 0px;
}
.cust-timeline-incomplate .claim-incomplate {
    margin-top: 16px;
}
.cust-timeline-incomplate .claim-incomplate  img {
    max-width: 20px;
    margin-right: 8px;
    vertical-align: top;
    margin-top: 1px;
}
.custom-star-timeline {
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    width: calc(100% - 600px);
}
.cust-claim-dash-table .claim-incomplate img {
    margin-right: 0;
    margin-top: 0px;
    margin-left: 10px;
}
.cust-user-incompleted .claim-incomplate img {
    border-radius: 0;
    height: auto;
    width: auto;
    margin-right: 3px;
    margin-top: 11px;
    margin-left: 20px;
}
 .cust-claim-detail-switch .custom-switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 30px;
    margin: 0px 0 0 30px;
}
    .cust-claim-detail-switch .custom-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }
    .cust-claim-detail-switch .custom-slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        transition: .4s;
        border-radius: 7px;
        display: flex;
        align-items: center;
        padding: 0 5px;
    }
    .cust-claim-detail-switch .custom-slider:before {
        content: "";
        position: absolute;
        height: 26px;
        width: 30px;
        left: 2px;
        bottom: 2px;
        background-color: white;
        transition: .4s;
        border-radius: 5px;
    }
    /* Label styles */
    .cust-claim-detail-switch .slider-label {
        font-size: 14px;
        font-weight: bold;
        color: white;
        position: absolute;
    }
    .cust-claim-detail-switch .on-label {
        left: 10px; /* Position for "On" label */
    }
    .cust-claim-detail-switch .off-label {
        right: 8px; /* Position for "Off" label */
        color: #666;
    }
    .cust-claim-detail-switch input:checked + .custom-slider {
        background-color: #000000;
    }
    .cust-claim-detail-switch input:checked + .custom-slider:before {
        transform: translateX(36px); /* Adjusted to match the slider width */
    }
    .cust-claim-detail-switch input:checked + .custom-slider .off-label {
        display: none; /* Hide "Off" label when checked */
    }
    .cust-claim-detail-switch input:not(:checked) + .custom-slider .on-label {
        display: none; /* Hide "On" label when not checked */
    }

.cust-doc-sec .two-col .half-col .two-col .half-col:first-child {
    width: 160px;
    padding-right: 0;
}
.cust-doc-sec .two-col .half-col {
    width: 65%;
    padding: 0 20px 0 20px;
}
.cust-doc-sec .document-col {
    max-width: 100%;
}
.cust-doc-sec .document-col select.custom-select.form-control{
	    background-position: 93% 20px;
}
.cust-exe-display {
    display: flex;
    align-items: flex-start;
}
.cust-timeline-incomplate .claim-list-left-col {
    width: 100%;
    position: relative;
    padding-left: 20px;
}
.cust-exe-display .custom-star-timeline {
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    width: calc(100% - 660px);
}
.cust-timeline-incomplate .cust-exe-display .claim-incomplate {
    margin-top: 0px;
    margin-left: 20px;
}
.cust-timeline-incomplate .cust-exe-display .stars span {
    font-size: 20px;
    line-height: 25px;
}
.cust-timeline-incomplate .cust-exe-display .claim-view {
    margin-top: 1px;
}
.cust-exe-sub-data .claim-date-title {
    line-height: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.cust-exe-sub-data .claim-date-title span {
    color: #0A1220;
    display: inline-block;
    max-width: 65%;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
    font-weight: bold;
    padding-left: 5px;
}
.cust-exe-sub-data .claim-date-title label{
	width: auto !important;
}
.cust-exe-sub-data .two-col {
     margin-bottom: 0px;
}
.cust-exe-display .rating-title {
    margin-top: 3px;
}
.cust-exe-display .update-col {
    padding-top: 3px;
    margin-left: 20px;
}
.cust-exhibit-separate .two-col {
    margin-bottom: 0px;
}
.cust-exhibit-separate .form-group {
    margin-bottom: 0px;
}
.cust-exhibit-separate .form-group label {
    margin-top: 8px !important;
}
.cust-case-info .date-picker-col {
    max-width: 100%;
}
.cust-exe-pri {
    display: flex;
    align-items: center;
}
.cust-exe-pri label {
    margin-right: 60px;
    font-weight: bold;
    font-size: 14px;
}
.cust-exe-pri span {
    font-size: 14px;
    font-weight: bold;
    color: #45494D !important;
}
.filter-item label.filter-cust-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 15px;
}
.filter-item .custom-select.form-control {
    border: var(--bs-border-width) solid var(--bs-border-color);
    padding: 5px 10px;
    height: 35px;
    font-size: 14px;
}
.filter-item input[type="text"] {
    border-radius: var(--bs-border-radius);
    font-size: 14px;
    padding: 5px 10px;
    height: 35px;
    margin-bottom: 0px;
}
.story-init .home_story_init .btn-col a.btn.btn-primary.lets-begin {
    background: #000000;
    border-color: #000000;
    display: block;
    width: 320px;
    margin-bottom: 10px;
}
.story-init .home_story_init .btn-col a.btn.btn-primary.share-str-bt {
    background: #000000;
    border-color:#000000;
    display: block;
    width: 320px;
    margin-bottom: 10px;
}
.coll-stro-copy-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.coll-stro-copy-btn h4{
	margin: 0;
	padding: 0;
}
.coll-stro-copy-btn a.copy-btn-modal{
	background: #41af1c;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    padding: 3px 20px;
    font-size: 15px;
}
.coll-stro-copy-btn a.copy-btn-modal img {
    max-width: 32px;
}
.story-video-cust-user {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.story-video-cust-user .chat-modal-user-name {
    padding-left: 10px;
}
.story-video-cust-user .chat-modal-user-name {
    padding-left: 10px;
    display: flex;
    flex-direction: column;
}
.story-video-cust-user .chat-modal-user-name .name-display {
    font-size: 15px;
    font-weight: 600;
}
.dropdown.three-dots ul.dropdown-menu {
	transform: translate3d(-140px, 29.6px, 0px) !important;
}
.overall-about-btn .dropdown-menu .dropdown-item{
	font-size: 11px;
	color: #33312E;
	font-weight: bold;
}
.claim_detail_main .cust-market-claim ul li {
    min-width: 215px;
    height: auto;
}
.slider-footer-buttons.cust-aud-display {
    max-width: 270px;
     flex-wrap: wrap;
}
.cust-aud-display span.slider-btn {
    white-space: nowrap;
    margin: 2px 2px;
}
.cust-notes-show .story-video-cust-user .profile-circle {
    border-radius: 50%;
    width: 55px;
    height: 55px;
}
.cust-notes-show .story-video-cust-user .chat-modal-user-name .sub-name-display {
    font-size: 10px;
}
.cust-notes-show .story-video-cust-user .chat-modal-user-name .user-msg-time {
    font-size: 10px;
}
.evidence-green-btn {
    background-color: #1E9F4B;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    padding: 8px 30px;
    display: inline-block;
    margin: 15px auto;
    text-decoration: none;
}
.evidence-green-btn:hover, .evidence-green-btn:focus {
	background-color: #1E9F4B;
    color: #fff;
}
.evidence-cust-data {
    margin-top: 15px;
    padding-left: 15px;
}
.evidence-cust-data h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0px;
}
.evidence-cust-data .cust-exe-display .custom-star-timeline {
    width: calc(100% - 580px);
}
.evidence-cust-data .cust-exe-display .custom-star-timeline .claim-view {
    margin-right: 100px;
}
.starsnew {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    cursor: pointer;
}
.starsnew span {
    font-size: 2rem;
    color: #ddd;
}
.starsnew span.filled {
    color: #FFD700;
}
.claim-list .starsnew {
    margin-left: auto;
}
.cust-timeline-incomplate .cust-exe-display .starsnew span {
    font-size: 20px;
    line-height: 25px;
}
.starseve {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    cursor: pointer;
}
.starseve span {
    font-size: 2rem;
    color: #ddd;
}
.starseve span.filled {
    color: #FFD700;
}
.rating-popup-new .modal-content {
    max-width: 400px;
}
.rating-popup-new .closenew {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #adb3bf;
    border-radius: 50px;
    width: 24px;
    height: 24px;
    font-size: 18px;
    color: #fff;
    border: #fff solid 2px;
    text-align: center;
    line-height: 1.1;
}
.rating-popup-header-new {
    border-bottom: #64a4f7 solid 1px;
    padding-bottom: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}
.done-btn-rating-eve {
    background: #64a4f7;
    color: #fff;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    display: inline-block;
    width: 100px;
    padding: 5px 10px;
    font-size: 14px;
    margin: 20px auto 0 auto;
}
/* ── Landing page: shared section utilities ── */
.section-eyebrow {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
    text-align: center;
}
.how-it-works-eyebrow {
    color: #2F5BFF;
}
.pricing-eyebrow {
    color: #2F5BFF;
}
.insights-eyebrow {
    color: #2F5BFF;
}
.section-heading-center {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #0A1220;
    text-align: center;
    margin-bottom: 12px;
}
.section-subtext-center {
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    color: #666;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.6;
}
.hero-subtext-center {
    max-width: 900px;
    color: #0A1220;
}
.claim-section.bg-white { background: #fff; }
.claim-section.bg-light { background: #F8FAFF; }

/* ── How It Works steps ── */
.how-it-step {
    background: #fff;
    border-radius: 12px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    height: 100%;
    margin-bottom: 0;
}
.how-it-step .step-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}
.how-it-step h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #0A1220;
    margin-bottom: 12px;
}
.how-it-step p {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    color: #0A1220;
    line-height: 1.6;
    margin: 0;
}
.how-it-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    color: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 16px;
}
.how-it-step .step-image {
    max-width: 220px;
    width: 100%;
    height: auto;
    margin: 0 auto 12px;
    display: block;
}
.how-it-steps-row {
    display: flex;
    gap: 24px;
    align-items: stretch;
}
.how-it-steps-row .col-step {
    flex: 1;
}
@media (max-width: 640px) {
    .how-it-steps-row { flex-direction: column; }
}

/* ── Pricing cards ── */
.pricing-section-inner { text-align: center; }
.pricing-tiers-row {
    display: flex;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 0;
}
.pricing-tiers-row .col-tier { flex: 1; }
@media (max-width: 640px) {
    .pricing-tiers-row { flex-direction: column; }
}
.pricing-card {
    background: #F8FAFF;
    border-radius: 12px;
    padding: 40px 32px;
    border: 1px solid #dde8f8;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pricing-card.featured {
    background: #1D378D;
    border-color: #1D378D;
}
.pricing-card .pricing-tier-label {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    display: block;
}
.pricing-card.featured .pricing-tier-label { color: #aac8f7; }
.pricing-card .pricing-price {
    font-family: "Montserrat", sans-serif;
    font-size: 38px;
    font-weight: bold;
    color: #0A1220;
    margin-bottom: 4px;
    display: block;
}
.pricing-card.featured .pricing-price { color: #fff; }
.pricing-card .pricing-per {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #999;
    margin-bottom: 24px;
    display: block;
}
.pricing-card.featured .pricing-per { color: #aaa; }
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}
.pricing-card ul li {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #0A1220;
    padding: 8px 0;
    border-bottom: 1px solid #C1CDFE;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pricing-card ul li::before {
    content: "✓";
    color: #2F5BFF;
    font-weight: bold;
    flex-shrink: 0;
}
.pricing-card.featured ul li { color: #eee; border-bottom-color: #6E82C8; }
.pricing-card.featured ul li::before { color: #aac8f7; }
.pricing-card .pricing-cta {
    display: block;
    background: #2F5BFF;
    color: #fff;
    padding: 13px 28px;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}
.pricing-card .pricing-cta:hover { opacity: 0.88; }
.pricing-card.featured .pricing-cta { background: #fff; color: #1D378D; }
.pricing-bundles {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}
.pricing-bundle-badge {
    background: #EEF5FF;
    color: #2F5BFF;
    border-radius: 20px;
    padding: 8px 20px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* ── Insights cards ── */
.insights-card {
    border-radius: 10px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}
.insights-card .insight-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.insights-card h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #0A1220;
    margin-bottom: 8px;
    line-height: 1.4;
}
.insights-card .insight-sub {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.5;
}
.insights-card .insight-read {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #2F5BFF;
    text-decoration: none;
    align-self: flex-start;
}
.insights-card .insight-read:hover { text-decoration: underline; }
.insights-card.pink { background: #FFFFFF; }
.insights-card.lavender { background: #ECF1FF; }
.insights-card.green { background: #3597891A; }
.insights-cards-row {
    display: flex;
    gap: 24px;
    align-items: stretch;
}
.insights-cards-row .col-insight { flex: 1; }
@media (max-width: 640px) {
    .insights-cards-row { flex-direction: column; }
}

/* ── Ecosystem cards ── */
.ecosystem-card {
    background: #F8FAFF;
    border-radius: 10px;
    padding: 28px 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.ecosystem-card .eco-icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}
.ecosystem-card .eco-body h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #0A1220;
    margin: 0 0 8px;
}
.ecosystem-card .eco-body p {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.55;
}

/* ── Team / Advisory Board cards ── */
.team-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    margin-bottom: 24px;
}
.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    display: block;
}
.team-avatar span {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    letter-spacing: -1px;
}
.team-card h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #0A1220;
    margin: 0 0 4px;
}
.team-card .team-role {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 14px;
    display: block;
}
.team-card p {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.55;
    margin-bottom: 14px;
}
.team-badge {
    display: inline-block;
    background: #EEF5FF;
    color: #000000;
    border-radius: 20px;
    padding: 5px 14px;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
}
.advisory-intro {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #555;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 36px;
    line-height: 1.6;
}
.advisory-divider {
    border: none;
    border-top: 1px solid #e8eef8;
    margin: 48px 0 40px;
}

/* ── Document submission card ── */
.submit-doc-section {
    margin-top: 48px;
}
.submit-doc-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
    border: 1px solid #dde8f8;
    padding: 48px 56px;
    max-width: 760px;
    margin: 0 auto;
}
.submit-doc-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #0A1220;
    margin-bottom: 12px;
    text-align: center;
}
.submit-doc-card > p {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    color: #0A1220;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 24px;
}
.submit-doc-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.submit-badge {
    background: #EEF5FF;
    color: #2F5BFF;
    border-radius: 20px;
    padding: 6px 16px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}
.submit-doc-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.file-input-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #F8FAFF;
    border: 2px dashed #aac8f7;
    border-radius: 10px;
    padding: 18px 24px;
    cursor: pointer;
    transition: border-color 0.2s;
}
.file-input-wrapper:hover { border-color: #000000; }
.doc-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
}
.file-input-label {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    white-space: nowrap;
    margin: 0;
}
.file-chosen {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: #888;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.file-chosen.has-file { color: #0A1220; font-weight: 600; }
.submit-doc-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.submit-doc-btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s;
    white-space: nowrap;
}
.submit-doc-btn:hover { opacity: 0.87; }
.submit-doc-btn.primary {
    background: #1D378D;
    color: #fff;
}
.submit-doc-btn.secondary {
    background: #2F5BFF;
    color: #fff;
    border: 2px solid #2F5BFF;
}
.submit-doc-btn.secondary:hover { background: #fff; border-color: #2F5BFF; color: #2F5BFF; }
@media (max-width: 640px) {
    .submit-doc-card { padding: 32px 20px; }
    .submit-doc-btns { flex-direction: column; }
    .submit-doc-btn { flex: none; }
}
.header-logo-img {
    /* Fixed height rather than width:100%/max-width, since
       img_logo_claimmasters.png's aspect ratio (512x266) is much squarer
       than the old wordmark's (178x36) -- scaling it to the old 140px
       width would make it disproportionately short. Fixing height and
       letting width follow the image's own aspect ratio avoids distortion
       regardless of the asset's proportions. */
    max-width: 200px;
    height: 90px;
    width: auto;
    display: block;
}
.pricing-card .free-tier-label {
    color: #2F5BFF;
}
.owners-section ul li {
    color: #0A1220;
}
#investors ul li {
    color: #0A1220;
}
.insights-subtext-center {
    color: #0A1220;
}
.insight-read {
    color: #2F5BFF;
}
.platform-eyebrow {
    color: #2F5BFF;
}
.platform-subtext-center {
    color: #0A1220;
}
.page-top-section#top {
    background-color: #F7F8FC;
}
.hero-heading-center {
    font-size: 36px;
}
.pricing-subtext-center {
    color: #0A1220;
}
.top-content.presignup-top-content {
    background-color: #F7F8FC;
    height: 100%;
}
.aboutus-left-section.presignup-left-section {
    height: 100%;
}
.aboutus-card.owner-card {
    background-color: #F7F8FC;
}
.aboutus-card.professionals-card {
    background-color: #ECF0F9;
}
.aboutus-card.insurance-card {
    background-color: #EAF4F3;
}
.aboutus-right-section.presignup-right-section {
    background-color: #FFFFFF;
    height: 100%;
}
.content-body.presignup-content-body {
    margin-top: 0;
}
.content-body.presignup-content-body #inner-content {
    background: linear-gradient(to right, #F7F8FC 0%, #F7F8FC 40%, #FFFFFF 40%, #FFFFFF 100%);
}
.top-content.prelogin-top-content {
    background-color: #F7F8FC;
    height: 100%;
}
.aboutus-left-section.prelogin-left-section {
    height: 100%;
}
.aboutus-right-section.prelogin-right-section {
    background-color: #FFFFFF;
    height: 100%;
}
.content-body.prelogin-content-body {
    margin-top: 0;
}
.content-body.prelogin-content-body #inner-content {
    background: linear-gradient(to right, #F7F8FC 0%, #F7F8FC 40%, #FFFFFF 40%, #FFFFFF 100%);
}
.footer-wrapper.light-footer-wrapper .footer {
    background-color: #F7F8FC;
    color: #0A1220;
}
.presignup-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Montserrat", sans-serif;
}
.presignup-footer-copy {
    margin: 0;
    font-size: 14px;
    color: #0A1220;
}
.presignup-terms-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
}
.presignup-terms-list li {
    position: relative;
    margin-right: 10px;
    padding-right: 10px;
    line-height: normal;
    font-size: 14px;
    color: #0A1220;
}
.presignup-terms-list li::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    height: 12px;
    width: 1px;
    background-color: #0A1220;
}
.presignup-terms-list li:last-child {
    margin-right: 0;
    padding-right: 0;
}
.presignup-terms-list li:last-child::after {
    display: none;
}
