/* Hero Section */
.invoice-hero-section {
	min-height: 77vh;
	background: linear-gradient(180deg, #FFF5F5 0%, #FFFFFF 100%);
	padding: 20px 20px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	position: relative;
	overflow: hidden;
}

.invoice-hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(234, 88, 12, 0.05) 0%, transparent 50%);
	pointer-events: none;
}

.invoice-hero-container {
	max-width: 1200px;
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 1;
}

.trust-badge-new {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #16a2491a;
	color: #16a249;
	padding: 10px 16px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 24px;
	/* box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35); */
}

.trust-badge-new svg {
	width: 18px;
	height: 18px;
}

.hero-headline {
	font-size: 60px;
	font-weight: 700;
	line-height: 1;
	margin: 0 0 20px 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.hero-headline .line-1 {
	color: #1F2937;
}

.hero-headline .line-2 {
	color: #DC2626;
}

.hero-headline .line-3 {
	color: #EA580C;
}

.hero-description {
	font-size: 18px;
	color: #4B5563;
	line-height: 1.6;
	max-width: 700px;
	margin: 0 auto 32px;
}

.hero-cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 48px;
}

.hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 32px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.hero-btn-primary {
	background: linear-gradient(135deg, #DC2626 0%, #EA580C 100%);
	color: white;
	box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.hero-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

.hero-btn-secondary {
	background: white;
	color: #374151;
	border: 1px solid #D1D5DB;
}

.hero-btn-secondary:hover {
	background: #F9FAFB;
	border-color: #9CA3AF;
	transform: translateY(-2px);
}

.hero-statistics {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	max-width: 600px;
	margin: 0 auto;
}

.hero-stat-item {
	text-align: center;
}

.hero-stat-number {
	font-size: 30px;
	font-weight: 700;
	color: #1F2937;
	margin-bottom: 8px;
	line-height: 1;
}

.hero-stat-label {
	font-size: 14px;
	color: #6B7280;
	/* font-weight: 500; */
}

/* Invoice Generator Section */

.invoice-options {
	margin: auto;
	width: 96%;
}

.invoice-generator-wrapper {
	background: #FFFFFF;
	padding: 80px 20px;
}

.invoice-generator-container {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
}

#invoice-form {
	width: 100%;
}

.invoice-generator-heading {
	text-align: center;
	margin-bottom: 40px;
	justify-content: center;
}

.mobile-form-preview-toggle {
	display: none;
	gap: 12px;
	margin: 0 auto 0px;
	max-width: 420px;
}

.mobile-form-preview-toggle button {
	border: none;
	border-radius: 16px;
	padding: 10px 18px;
	font-weight: 600;
	font-size: 15px;
	background: #F3F4F6;
	color: #4B5563;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: inset 0 0 0 1px #E5E7EB;
}

.mobile-form-preview-toggle button.active {
	background: linear-gradient(135deg, #DC2626 0%, #EA580C 100%);
	color: #FFFFFF;
	box-shadow: 0 6px 16px rgba(220, 38, 38, 0.25);
}

.mobile-form-preview-toggle button:focus-visible {
	outline: 2px solid #DC2626;
	outline-offset: 2px;
}

.invoice-generator-heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: #1F2937;
	margin: 0;
}

.invoice-generator-heading .red-text {
	color: #DC2626;
}

.invoice-form-preview-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 40px;
	align-items: flex-start;
	position: relative;
}

.invoice-form-panel,
.invoice-preview-panel {
	flex: 1;
	min-width: 0;
	width: 100%;
}

.invoice-preview-column {
	position: relative;
	height: 100%;
	min-width: 0;
	width: 100%;
}

.invoice-form-panel {
	background: white;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	overflow: visible;
	max-height: none;
	height: auto;
	box-sizing: border-box;
}

.invoice-preview-panel {
	background: white;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 20px;
	height: fit-content;
	align-self: flex-start;
	/* max-height: calc(100vh - 40px); */
	/* overflow-y: auto; */
}

.invoice-preview-panel.is-fixed {
	position: fixed;
	top: 20px;
	left: 0;
	right: auto;
	z-index: 25;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
}

.invoice-preview-panel.is-bottom {
	position: absolute;
	top: auto;
	bottom: 0;
	left: 0;
	width: 100%;
	max-height: none;
	overflow: visible;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #374151;
	font-size: 14px;
}

.form-group label sup {
	color: #DC2626;
}

.form-control {
	width: 100% !important;
	padding: 12px 16px !important;
	border: 1px solid #D1D5DB !important;
	border-radius: 8px !important;
	font-size: 14px !important;
	transition: border-color 0.3s ease !important;
	box-sizing: border-box !important;
}

#gst-div {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 0px !important;

	label {
		width: 50px;
		margin-left: 20px;
	}
}

#file-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-align: center;

	span {
		display: block;
		font-weight: 400;
		text-align: center;
	}
}

#file-div {
	border: 2px dashed #D1D5DB;
	padding: 5px;
	text-align: center;
	background-color: #F9FAFB;
	border-radius: 8px;
	color: #6B7280;
	cursor: pointer;
	transition: all 0.3s ease;
	justify-content: center;
	display: flex;
}

.user-actions-container {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.45);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 2;
	padding: 24px;
	backdrop-filter: blur(2px);
	width: 100%;
	height: 100%;
	border-radius: 0px;
}

.user-actions-dialog {
	width: 100%;
	max-width: 620px;
	background: #fff;
	border-radius: 24px;
	padding: 32px;
	box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
}

.user-action-form {
	/* padding: 20px 0; */
	background: #fff;
}

.user-actions-dialog #closeButton {
	position: absolute;
	top: 18px;
	right: 18px;
	float: none;
	margin: 0;
	font-size: 26px;
	color: #111827;
	cursor: pointer;
	transition: color 0.2s ease;
	z-index: 2100;
}

.user-actions-dialog #closeButton:hover {
	color: #DC2626;
}

.form-control:focus {
	outline: none;
	border-color: #DC2626;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

textarea.form-control {
	resize: vertical;
	min-height: 80px;
}

.theme-selector {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 8px;
	margin-bottom: 14px;
}

.theme-color {
	width: 42px;
	height: 42px;
	border-radius: 8px;
	border: 3px solid transparent;
	cursor: pointer;
	transition: all 0.3s ease;
}

.theme-color.active {
	border-color: #DC2626;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.items-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}

.items-table-wrapper {
	width: 100%;
}

.items-table th {
	text-align: left;
	padding: 12px;
	background: #F9FAFB;
	font-weight: 600;
	font-size: 12px;
	color: #6B7280;
	text-transform: uppercase;
}

.items-table td {
	padding: 12px;
	border-bottom: 1px solid #E5E7EB;
}

.items-table input {
	width: 100%;
	padding: 8px;
	border: 1px solid #D1D5DB;
	border-radius: 6px;
	font-size: 14px;
	box-sizing: border-box;
	background: white;
	transition: border-color 0.3s ease;
}

.items-table input:focus {
	outline: none;
	border-color: #DC2626;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.items-table td {
	padding: 8px;
	vertical-align: middle;
}

.items-table .text-right {
	text-align: right;
}

.items-table input.text-right {
	text-align: right;
}

.items-table .rate,
.items-table .amount {
	position: relative;
}

.items-table .rate .currency-change,
.items-table .amount .currency-change {
	position: absolute;
	left: 11px;
	top: 50%;
	transform: translateY(-50%);
	color: #6B7280;
	font-weight: 500;
	pointer-events: none;
}

.items-table .rate input,
.items-table .amount input {
	padding-left: 24px;
}

.add-item-btn {
	background: transparent;
	border: 1px dashed #D1D5DB;
	color: #6B7280;
	padding: 12px 24px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.3s ease;
	width: 100%;
	margin-bottom: 24px;
}

.add-item-btn:hover {
	border-color: #DC2626;
	color: #DC2626;
	background: #FEF2F2;
}

.invoice-summary {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #E5E7EB;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 12px;
	font-size: 14px;
}

.summary-row.total {
	font-size: 18px;
	font-weight: 700;
	color: #DC2626;
	padding-top: 12px;
	border-top: 2px solid #E5E7EB;
	margin-top: 12px;
}

.action-buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 30px;
}

.action-btn {
	padding: 14px 24px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.3s ease;
	flex-direction: row;
}

.action-btn-primary {
	background: #DC2626;
	color: white;
}

.action-btn-primary:hover {
	background: #B91C1C;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.action-btn-secondary {
	background: white;
	color: #374151;
	border: 1px solid #D1D5DB;
}

.action-btn-secondary:hover {
	background: #F9FAFB;
	border-color: #9CA3AF;
}

/* Template Section */
.templates-section {
	padding: 20px 20px;
	background: #F4F4F6;
}

.templates-heading {
	text-align: center;
	margin-bottom: 40px;
}

.templates-heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: #1F2937;
	margin: 0 0 16px 0;
}

.templates-heading p {
	font-size: 16px;
	color: #6B7280;
	max-width: 600px;
	margin: 0 auto;
}

.templates-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	max-width: 1016px;
	margin: 0 auto;
}

.template-card {
	display: block;
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
}

.template-card-button{
	display: block;
	width: 100%;
	padding: 12px 16px;
	background: #DC2626;
	color: white;
	text-align: center;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	border: none;
	border-radius: 0 0 12px 12px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.template-card-button:hover {
	background: #B91C1C;
	color: white;
	text-decoration: none;
}
.template-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.template-preview {
	width: 100%;
	height: 270px;
	background: #F9FAFB;
	border-radius: 8px;
	margin-bottom: 16px;
	position: relative;
	overflow: hidden;
}

.template-preview::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 40px;
}

.requirements-card-container {
	display: flex;
	align-items: center;
	gap: 8px;
}

.template-card h3 {
	font-size: 18px;
	font-weight: 600;
	color: #1F2937;
	margin: 0 0 8px 0;
	padding-top: 10px;
	margin-left: 10px;
}

.template-card p {
	font-size: 14px;
	color: #6B7280;
	margin: 0;
}

.template-popular-badge {
	display: inline-block;
	background: #EC4899;
	color: white;
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 8px;
}

/* Steps Section */
.steps-section {
	padding: 20px 20px;
	background: linear-gradient(180deg, #FFF5F5 0%, #FFFFFF 100%);
}

.steps-container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.steps-heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: #1F2937;
	margin: 0 0 16px 0;
}

.steps-heading p {
	font-size: 16px;
	color: #6B7280;
	margin: 0 0 60px 0;
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	position: relative;
	padding-top: 60px;
}

.steps-grid::before {
	content: '';
	position: absolute;
	top: 90px;
	left: 10%;
	right: 10%;
	height: 2px;
	background: #E5E7EB;
	z-index: 0;
}

.step-card {
	background: white;
	border-radius: 12px;
	padding: 40px 24px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	position: relative;
	z-index: 1;
}

.step-number {
	position: absolute;
	top: -18px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 40px;
	background: #DC2626;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 700;
	z-index: 2;
}

.step-icon {
	width: 44px;
	height: 44px;
	margin: 0 auto 0px;
	color: #9CA3AF;
}

.step-card h3 {
	font-size: 20px;
	font-weight: 600;
	color: #1F2937;
	margin: 0 0 12px 0;
}

.step-card p {
	font-size: 14px;
	color: #6B7280;
	margin: 0;
}

/* Elements Section */
.elements-section {
	padding: 80px 20px;
	background: white;
}

.elements-container {
	max-width: 1200px;
	margin: 0 auto;
}

.elements-heading {
	text-align: center;
	margin-bottom: 60px;
}

.elements-heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: #1F2937;
	margin: 0 0 16px 0;
}

.elements-heading p {
	font-size: 16px;
	color: #6B7280;
	margin: 0;
}

.elements-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.element-card {
	background: white;
	border-radius: 12px;
	padding: 18px;
	border: 1px solid #e5e7eb;
	/* text-align: center; */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.element-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.element-icon {
	width: 32px;
	height: 32px;
	margin-bottom: 10px;
	color: #EC4899;
}

.element-card h3 {
	font-size: 18px;
	font-weight: 600;
	color: #1F2937;
	margin: 0 0 12px 0;
}

.element-card p {
	font-size: 14px;
	color: #6B7280;
	margin: 0;
	line-height: 1.6;
}

/* Features Section */
.features-section {
	padding: 20px 20px;
	background: #F9FAFB;
}

.features-container {
	max-width: 1200px;
	margin: 0 auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 60px;
}

.feature-card {
	background: white;
	border-radius: 12px;
	padding: 32px 24px;
	/* text-align: center; */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-icon-container {
	display: flex;
	align-items: center;
	gap: 12px;
}

.feature-icon {
	width: 46px;
	height: 46px;
	background: #DC2626;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	/* margin: 0 auto 24px; */
	margin-bottom: 16px;
	color: white;
}

.feature-card h4 {
	font-size: 20px;
	font-weight: 600;
	color: #1F2937;
	margin: 0 0 12px 0;
}

.feature-card p {
	font-size: 14px;
	color: #6B7280;
	margin: 0;
	line-height: 1.6;
}

/* Video Section */
.video-section {
	padding: 80px 20px;
	background: white;
	margin: 0px !important;
}

.video-container {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
	padding-bottom: 10px;
	height: auto;
}

.video-heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: #1F2937;
	margin: 0 0 16px 0;
}

.video-heading p {
	font-size: 16px;
	color: #6B7280;
	margin: 0 0 40px 0;
}

.video-placeholder {
	width: 100%;
	aspect-ratio: 16/9;
	background: linear-gradient(135deg, #FFE5E5 0%, #FFE8D6 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	cursor: pointer;
	overflow: hidden;
}

.video-placeholder-thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
	display: block;
	transition: opacity 0.3s ease;
}

.video-placeholder iframe {
	width: 100%;
	height: 100%;
	border-radius: 12px;
}

.video-placeholder-content {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
}

.video-placeholder-content span {
	width: 100%;
	text-align: center;
	font-size: 16px;
	color: black;
	font-weight: 600;
	margin-top: 10px;
}

.play-button {
	width: 91px;
	height: 92px;
	background: #DC2626;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 32px;
	z-index: 10;
	position: relative;
	transition: transform 0.2s ease;
}

.play-button:hover {
	transform: scale(1.1);
}

/* FAQ Section */
.faq-section {
	padding: 80px 20px;
	background: white;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-heading {
	text-align: center;
	margin-bottom: 60px;
}

.faq-heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: #1F2937;
	margin: 0 0 16px 0;
}

.faq-heading p {
	font-size: 16px;
	color: #6B7280;
	margin: 0;
}

.faq-item {
	margin-bottom: 16px;
	border: 1px solid #E5E7EB;
	border-radius: 8px;
	overflow: hidden;
}

.faq-question {
	padding: 20px;
	background: #F9FAFB;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 500;
	color: #1F2937;
	transition: all 0.3s ease;
}

.faq-question:hover {
	background: #F3F4F6;
}

.faq-question.active {
	background: white;
	color: #DC2626;
	border-color: #DC2626;
}

.faq-answer {
	padding: 0 20px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
	padding: 20px;
	max-height: 500px;
}

.faq-chevron {
	transition: transform 0.3s ease;
}

.faq-question.active .faq-chevron {
	transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
	.mobile-form-preview-toggle {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.invoice-form-preview-container {
		grid-template-columns: 1fr;
	}

	.invoice-preview-panel {
		position: relative;
		top: 0;
	}

	.elements-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.invoice-generator-wrapper {
		padding: 32px 12px;
	}

	.invoice-form-panel,
	.invoice-preview-panel {
		padding: 20px;
	}

	.invoice-form-panel h3,
	.invoice-preview-panel h3 {
		font-size: 18px;
	}

	.invoice-form-panel,
	.invoice-preview-column {
		width: 100%;
	}

	.items-table-wrapper {
		overflow-x: auto;
	}

	.items-table {
		min-width: 640px;
	}

	.hero-headline {
		font-size: 42px;
	}

	.hero-statistics {
		grid-template-columns: repeat(3, 1fr);
		padding: 16px 0px;
	}

	.steps-grid {
		grid-template-columns: 1fr;
		padding-top: 40px;
	}

	.steps-grid::before {
		display: none;
	}

	.elements-grid {
		grid-template-columns: 1fr;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.templates-grid {
		grid-template-columns: 1fr;
	}

	.action-buttons {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.hero-headline {
		font-size: 32px;
	}

	.hero-cta-buttons {
		flex-direction: column;
	}

	.hero-btn {
		width: 100%;
		justify-content: center;
	}
}

/* Preview Loading Animation */
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

#preview-loader {
	margin: 20px 0;
}

/* Preview Styling */
#content {
	background: white;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	min-height: 400px;
}

#content .pdfTransactionHTMLView {
	background: white;
	padding: 20px;
	font-family: 'Segoe UI', Calibri, Candara, Optima, Arial, sans-serif;
	color: #000000;
	line-height: 1.4;
}

#content .pdfTransactionHTMLView table {
	width: 100%;
	border-collapse: collapse;
}

#content .pdfTransactionHTMLView td,
#content .pdfTransactionHTMLView th {
	padding: 4.4px;
	font-size: 14.08px;
}

#content .pdfTransactionHTMLView p {
	margin: 0;
	padding: 1.76px;
	font-size: 14.08px;
}

#content .pdfTransactionHTMLView .boldText {
	font-weight: bold;
}

#content .pdfTransactionHTMLView .companyNameHeaderTextSize {
	font-size: 21.12px;
}

#content .pdfTransactionHTMLView .bigTextSize {
	font-size: 13.2px;
}

#content .pdfTransactionHTMLView .theme10TxnHeaderTextSize {
	font-size: 23.76px !important;
	font-weight: bold;
}

#content .pdfTransactionHTMLView .theme10SectionPadding {
	margin-bottom: 15.84px !important;
}

#content .pdfTransactionHTMLView .theme10amountSection {
	margin-bottom: 8.8px !important;
}

#content .pdfTransactionHTMLView .theme10BoxStyle {
	background-color: #F7F7F7 !important;
	color: #747474 !important;
	padding: 8px;
}

#content .pdfTransactionHTMLView .theme10BoxHeading {
	color: #747474 !important;
	font-weight: bold;
	font-size: 11.44px;
	padding: 4px 0;
}

#content .pdfTransactionHTMLView .theme10BorderColor {
	border-color: #DDDDDD !important;
	border: 1px solid #DDDDDD;
}

#content .pdfTransactionHTMLView .borderBottomForTxn,
#content .pdfTransactionHTMLView .borderTopForTxn {
	border-top: 1px solid;
	border-bottom: 1px solid;
	border-color: gray;
}

#slider-wrapper {
	overflow: visible;
}

#slider {
	overflow: visible;
}

.slide {
	border: none;
	padding-top: 4px;
}

#content img {
	max-width: 100%;
	height: auto;
}

#content .vyapar-powered {
	position: relative;
	float: right;
	margin-top: 20px;
}
