:root {
	--primary-color: #7647e9;
	--background: #ffffff;
	--foreground: #020817;
	--border: #e2e8f0;
	--ring: #7647e9;
}

.module-dropdown {
	position: relative;
	display: inline-block;
}

.module-dropdown-trigger {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 46px;
	padding: 0 12px;
	background-color: var(--background);
	border: 1px solid var(--border);
	border-radius: 6px;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	color: var(--primary-color);
	transition: all 0.2s ease;
}

.module-dropdown-trigger:hover {
	background-color: var(--background);
	border-color: var(--primary-color);
}

.module-dropdown-trigger:focus-visible {
	outline: none;
	box-shadow:
		0 0 0 2px var(--background),
		0 0 0 4px var(--ring);
}

.module-dropdown-content {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1;
	min-width: 0;
}

.module-dropdown-image {
	width: 2rem;
	height: 2rem;
	border-radius: 4px;
	object-fit: cover;
	flex-shrink: 0;
}

.module-dropdown-menu-image {
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 4px;
	object-fit: cover;
	flex-shrink: 0;
}

.module-dropdown-text {
	flex: 1;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.module-dropdown-icon-wrapper {
	display: flex;
	align-items: center;
	padding-left: 8px;
	margin-left: 8px;
}

.module-dropdown-icon {
	color: var(--foreground);
}

.module-dropdown-menu {
	display: flex;
	flex-direction: column;
	row-gap: 0.25rem;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 9999;
	width: 100%;
	padding: 4px;
	background-color: var(--background);
	border: 1px solid var(--border);
	border-radius: 6px;
	margin-top: 0.25rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	list-style: none;
}

.module-dropdown-menu li {
	margin: 0;
	padding: 0;
}

.module-dropdown-menu button {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	padding: 8px;
	border: none;
	background: none;
	text-align: left;
	font-size: 15px;
	line-height: 1.5;
	color: var(--foreground);
	cursor: pointer;
	transition: background-color 0.2s;
	border-radius: 4px;
}

.module-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 1rem;
}

.module-dropdown-menu button:hover {
	background-color: rgba(118, 71, 233, 0.05);
}

.module-dropdown-menu button:focus {
	outline: none;
	background-color: rgba(118, 71, 233, 0.1);
}

.module-dropdown-menu button.selected {
	background-color: rgba(118, 71, 233, 0.1);
	color: var(--primary-color);
}

.sidebar-custom {
	overflow: visible !important;
}

.sidebar-custom-list {
	overflow-y: auto !important;
}

.module-selector {
	max-width: 1100px;
	margin: 0 auto;
	padding: 20px;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.logo-container {
	text-align: center;
	margin-bottom: 40px;
}

.module-selector-logo {
	max-width: 120px;
}

.selector-title {
	text-align: center;
	font-size: 1.4rem;
	font-weight: 500;
	color: #333;
	margin-bottom: 0 !important;
}

.module-grid-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2.75rem;
	flex-grow: 1;
	max-width: 768px;
	margin: 0 auto;
	width: 100%;
}

.module-grid {
	display: grid;
	justify-content: center;
	align-items: start;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	width: 100%;
}

.module-block {
	width: 12rem;
	height: 12rem;
	background-color: var(--background);
	border: 1.5px solid var(--border);
	border-radius: 1rem;
	cursor: pointer;
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	transition: all 0.3s ease;
	padding: 0rem !important;
}

.module-block:hover {
	background-color: var(--background);
	border-color: var(--primary-color);
	box-shadow:
		0 4px 6px -1px rgb(0 0 0 / 0.1),
		0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.module-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.module-icon {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.module-title {
	font-size: 1rem;

	text-align: center;
	font-weight: 400;
	color: var(--foreground);
	margin: 0;
}

.copyright {
	text-align: center;
	margin-top: 60px;
	margin-bottom: 20px;
	font-size: 14px;
	color: #666;
}

.upload-status-indicator {
	position: fixed;
	bottom: 0;
	left: 250px;
	z-index: 99999;
	padding: 1rem;
}

@media (max-width: 768px) {
	.module-grid {
		gap: 20px;
	}
	.upload-status-indicator {
		left: 0;
	}
}

@media (max-width: 480px) {
	.module-block {
		width: 100%;
		height: 100%;
	}
	.module-title {
		font-size: 0.75rem;
	}
	.module-grid {
		gap: 15px;
	}
	.selector-title {
		text-align: center;
		font-size: 1.6rem;
		font-weight: 500;
		color: #333;
		margin-bottom: 0 !important;
	}
	.selector-title {
		font-size: 1.25rem;
	}
}

.module-gradient {
	background:
		url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='10' numOctaves='3' stitchTiles='stitch'/%3E%3CfeComponentTransfer%3E%3CfeFuncR type='table' tableValues='1.00 1.00'/%3E%3CfeFuncG type='table' tableValues='1.00 1.00'/%3E%3CfeFuncB type='table' tableValues='1.00 1.00'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.6'/%3E%3C/svg%3E"),
		radial-gradient(
			circle at 89.49353448275862% 19.529837251356238%,
			#e846b7 0px,
			transparent 40%
		),
		radial-gradient(circle at 6.196120689655173% 91.86256781193491%, #5129b2 0px, transparent 40%);
	background-color: white;
	background-position: center;
}

.main-container {
	min-height: calc(100svh - 65px);
	padding-bottom: 4.5rem !important;
}
*/ .uppy-Container {
	height: 100%;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.uppy-Root,
.uppy-Dashboard {
	height: 100%;
}

.category-products-container {
	position: sticky;
	top: 1rem;
	height: calc(100svh - 5rem);
	max-height: calc(100svh - 5rem);
}

.category-item {
	transition: all 0.2s ease;
}

.category-item:hover {
	background-color: rgba(0, 0, 0, 0.02);
}

.btn-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	transition: all 0.2s;
}

.btn-icon:hover {
	background-color: rgba(0, 0, 0, 0.05);
	transform: translateY(-1px);
}

.size-20 {
	width: 20px;
	height: 20px;
}

.bg-soft-primary {
	background-color: rgba(13, 110, 253, 0.15);
}

.bg-soft-success {
	background-color: rgba(25, 135, 84, 0.15);
}

.bg-soft-danger {
	background-color: rgba(220, 53, 69, 0.15);
}

.bg-soft-warning {
	background-color: rgba(255, 193, 7, 0.15);
}

.bg-soft-info {
	background-color: rgba(13, 202, 240, 0.15);
}

.cursor-grab {
	cursor: grab;
}

.cursor-grabbing {
	cursor: grabbing;
}

.module-drag-button:focus {
	outline: none;
}

.external-link:hover {
	text-decoration: underline;
}

.btn-zochil {
	background-color: #5116e2 !important;
	color: #fff !important;
	border: none;
	border-radius: 0.375rem;
	padding: 0.325rem 0.75rem;
}

.btn-zochil:hover {
	opacity: 0.9;
}

.text-zochil {
	color: #5116e2 !important;
}

@media (max-width: 1440px) {
	.marque-move-container {
		display: inline-block;
		padding-left: 100%;
		animation: marqueeMove 20s linear infinite;
	}
}

@media (min-width: 1440px) {
	.marquee-container {
		padding-left: 285px !important;
	}
}

.post-selection-card {
	cursor: pointer;
	border: 1px solid #e5e7eb;
	transition: all 0.2s;
}

.post-selection-card:hover {
	border-color: #9ca3af;
}

.post-selection-card.selected {
	border: 2px solid #3b82f6;
}

.post-selection-card.selected:hover {
	border-color: #3b82f6;
}

.post-card-text {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

.papa-delivery-tabs {
	background: #fff;
	padding: 1.5rem;
	border-radius: 0.5rem;
}

.custom-nav-pills {
	border-bottom: 1px solid #e3ebf6;
	padding-bottom: 0;
	gap: 0;
	padding-inline: 2.4rem;
}

.custom-nav-pills .nav-item {
	flex: 1;
}

.custom-nav-link {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 0.5rem;
	border: none;
	background: transparent;
	border-bottom: 3px solid transparent;
	border-radius: 0 !important;
	color: #95aac9;
	transition: all 0.3s ease;
	text-align: left;
}

.custom-nav-link:hover {
	background: transparent;
	color: #6e84a3;
}

.custom-nav-link.active {
	background: transparent;
	color: #2c7be5;
}

.nav-link-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #e3ebf6;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 0.5rem;
	flex-shrink: 0;
}

.custom-nav-link.active .nav-link-icon {
	background: #d4e6ff;
	color: #2c7be5;
}

.nav-link-icon svg {
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
}

.nav-link-title {
	font-weight: 600;
	font-size: 0.9rem;
}

.nav-link-subtitle {
	font-size: 0.8125rem;
	color: #95aac9;
	font-weight: 400;
}

.custom-nav-link.active .nav-link-subtitle {
	color: #6e84a3;
}

.nav-link-icon-separator {
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-link-icon-separator svg {
	flex-shrink: 0;
	color: #95aac9;
	stroke-width: 1.5;
	width: 1.5rem;
	height: 1.5rem;
}

.papa-delivery-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1.5rem 0;
}

.section-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: #12263f;
	margin-bottom: 0.5rem !important;
}

.selection-section {
	max-width: 800px;
	width: 100%;
}

.selection-group {
	background: #fff;
	padding: 1.5rem;
	border-radius: 0.5rem;
	border: 1px solid #e3ebf6;
}

.selection-group-title {
	font-size: 0.9375rem;
	font-weight: 600;
	color: #12263f;
	margin-bottom: 1rem;
}

.radio-group {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.radio-option {
	display: flex;
	align-items: center;
	padding: 1rem 1.25rem;
	border: 1px solid #e3ebf6;
	border-radius: 0.5rem;
	cursor: pointer;
	background: #fff;
}

.radio-option:hover {
	border-color: #95aac9;
	background: #f9fbfd;
}

.radio-option.selected {
	border-color: #2c7be5;
	background: #f0f7ff;
}

.radio-circle {
	width: 20px;
	height: 20px;
	border: 2px solid #d2ddec;
	border-radius: 50%;
	margin-right: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.radio-option.selected .radio-circle {
	border-color: #2c7be5;
}

.radio-inner {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #2c7be5;
}

.radio-label {
	font-size: 0.9375rem;
	color: #12263f;
	flex: 1;
}

.checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.checkbox-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.25rem;
	border: 1px solid #e3ebf6;
	border-radius: 0.5rem;
	cursor: pointer;
	transition: all 0.3s ease;
	background: #fff;
}

.checkbox-option:hover {
	border-color: #95aac9;
	background: #f9fbfd;
}

.checkbox-option.selected {
	border-color: #2c7be5;
	background: #f0f7ff;
}

.checkbox-content {
	flex: 1;
}

.checkbox-title {
	font-size: 0.9375rem;
	font-weight: 500;
	color: #12263f;
	margin-bottom: 0.25rem;
}

.checkbox-subtitle {
	font-size: 0.8125rem;
	color: #95aac9;
}

.checkbox-box {
	width: 24px;
	height: 24px;
	border: 2px solid #d2ddec;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.checkbox-option.selected .checkbox-box {
	border-color: #2c7be5;
	background: #2c7be5;
	color: #fff;
}

.checkbox-box i {
	font-size: 0.875rem;
}

@media (max-width: 768px) {
	.custom-nav-pills {
		flex-direction: column;
	}

	.custom-nav-link {
		border-bottom: 1px solid #e3ebf6;
		border-left: 3px solid transparent;
	}

	.custom-nav-link.active {
		border-bottom: 1px solid #e3ebf6;
		border-left-color: #2c7be5;
	}

	.nav-link-icon {
		width: 35px;
		height: 35px;
	}

	.nav-link-title {
		font-size: 0.875rem;
	}

	.nav-link-subtitle {
		font-size: 0.75rem;
	}
}

.tab-content > .tab-pane {
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.tab-content > .active {
	display: block;
	opacity: 1;
}

.delivery-section {
	background: #fff;
	padding: 1.5rem;
	border-radius: 0.5rem;
	border: 1px solid #e3ebf6;
	margin-bottom: 1.5rem;
	width: 100%;
}

.delivery-section-title {
	font-size: 0.9375rem;
	font-weight: 600;
	color: #12263f;
	margin-bottom: 1.25rem;
}

.selected-cargos-preview {
	margin-top: 0.75rem;
}

.selected-cargos-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.selected-cargo-item {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	padding: 1rem;
	border: 1px solid #d2ddec;
	border-radius: 0.5rem;
	background: #fff;
}

.selected-cargo-main {
	min-width: 0;
	flex: 1;
}

.selected-cargo-head {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.25rem;
}

.selected-cargo-code {
	display: inline-flex;
	align-items: center;
	padding: 0.125rem 0.5rem;
	border-radius: 999px;
	background: #edf2ff;
	color: #2c7be5;
	font-size: 0.75rem;
	font-weight: 600;
	flex-shrink: 0;
}

.selected-cargo-name {
	font-size: 0.875rem;
	font-weight: 500;
	color: #12263f;
	min-width: 0;
}

.selected-cargo-meta {
	font-size: 0.75rem;
	color: #6e84a3;
	display: flex;
	align-items: center;
	gap: 0.25rem;
	margin-bottom: 0.125rem;
}

.selected-cargo-parcel-stack {
	width: 100%;
}

.selected-cargo-parcel-stack > .delivery-section:last-child {
	margin-bottom: 0;
}

.selected-cargo-remove-btn {
	width: 30px;
	height: 30px;
	border: none;
	border-radius: 0.375rem;
	background: #f9fbfd;
	color: #e63757;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.15s ease-in-out;
}

.selected-cargo-remove-btn:hover {
	background: #feeef1;
}

.form-label-small {
	font-size: 0.8125rem;
	color: #95aac9;
	margin-bottom: 0.5rem;
	display: block;
	font-weight: 400;
}

.form-group {
	margin-bottom: 1rem;
}

.input-group-custom {
	display: flex;
	gap: 0;
	width: 100%;
}

.form-input {
	flex: 1;
	padding: 0.625rem 1rem;
	border: 1px solid #d2ddec;
	border-radius: 0.375rem 0 0 0.375rem;
	font-size: 0.9375rem;
	color: #12263f;
	background-color: #fff;
	transition: all 0.2s ease;
}

.form-input:focus {
	outline: none;
	border-color: #2c7be5;
	background-color: #fff;
}

.form-input.is-invalid {
	border-color: #e63757;
}

.form-input::placeholder {
	color: #95aac9;
}

.form-select-inline {
	min-width: 180px;
	padding: 0.625rem 2.5rem 0.625rem 1rem;
	border: 1px solid #d2ddec;
	border-left: none;
	border-radius: 0 0.375rem 0.375rem 0;
	font-size: 0.9375rem;
	color: #12263f;
	background-color: #f9fbfd;
	transition: all 0.2s ease;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2395aac9' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
}

.form-select-inline:focus {
	outline: none;
	border-color: #2c7be5;
	background-color: #fff;
}

.form-select-inline.is-invalid {
	border-color: #e63757;
}

.form-select {
	width: 100%;
	padding: 0.625rem 1rem;
	border: 1px solid #d2ddec;
	border-radius: 0.375rem;
	font-size: 0.9375rem;
	color: #12263f;
	background-color: #f9fbfd;
	transition: all 0.2s ease;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2395aac9' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
}

.form-select:focus {
	outline: none;
	border-color: #2c7be5;
	background-color: #fff;
}

.form-select.is-invalid {
	border-color: #e63757;
}

.invalid-feedback {
	display: none;
	width: 100%;
	margin-top: 0.25rem;
	font-size: 0.8125rem;
	color: #e63757;
}

.invalid-feedback.d-block {
	display: block;
}

.is-invalid ~ .invalid-feedback {
	display: block;
}

.payment-options {
	display: flex;
	gap: 0.75rem;
}

.payment-option {
	flex: 1;
	padding: 0.875rem 1.5rem;
	border: 1px solid #d2ddec;
	border-radius: 0.375rem;
	background: #fff;
	color: #12263f;
	font-size: 0.9375rem;
	font-weight: 500;
	cursor: pointer;
}

.payment-option:hover {
	border-color: #95aac9;
	background: #f9fbfd;
}

.payment-option.active {
	border-color: #2c7be5;
	background: #f0f7ff;
	color: #2c7be5;
}

.price-input-wrapper {
	text-align: center;
	padding: 1rem 0;
}

.price-display {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #f9fbfd;
	border: 1px solid #d2ddec;
	border-radius: 0.5rem;
	padding: 0.75rem 1rem;
	margin-bottom: 1rem;
}

.price-value {
	font-size: 2rem;
	font-weight: 700;
	color: #12263f;
	min-width: 60px;
	text-align: right;
}

.price-currency {
	font-size: 1.5rem;
	font-weight: 600;
	color: #12263f;
}

.price-edit-btn {
	background: transparent;
	border: none;
	color: #95aac9;
	cursor: pointer;
	padding: 0.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s ease;
}

.price-edit-btn:hover {
	color: #2c7be5;
}

.price-edit-btn i {
	font-size: 1.125rem;
}

.price-edit-mode {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.price-input {
	width: 200px;
	padding: 0.75rem 1rem;
	border: 1px solid #2c7be5;
	border-radius: 0.375rem;
	font-size: 1.5rem;
	font-weight: 600;
	color: #12263f;
	text-align: right;
}

.price-currency-inline {
	font-size: 1.5rem;
	font-weight: 600;
	color: #12263f;
}

.price-note {
	font-size: 0.8125rem;
	color: #95aac9;
	margin: 0;
	line-height: 1.5;
}

.product-table {
	background: #fff;
	border-radius: 0.5rem;
	overflow: hidden;
}

.product-table-header {
	display: grid;
	grid-template-columns: 2fr 1.5fr 1fr;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background: #f9fbfd;
	border-bottom: 1px solid #e3ebf6;
}

.product-table-header .product-col {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #12263f;
}

.product-table-row {
	display: grid;
	grid-template-columns: 2fr 1.5fr 1fr;
	gap: 1rem;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid #e3ebf6;
	align-items: center;
}

.product-table-row:last-child {
	border-bottom: none;
}

.product-col {
	font-size: 0.9375rem;
	color: #12263f;
}

.product-name {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 500;
}

.product-icon {
	font-size: 1.25rem;
}

@media (max-width: 768px) {
	.payment-options {
		flex-direction: column;
	}

	.product-table-header,
	.product-table-row {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}

	.product-table-header .product-col {
		display: none;
	}

	.product-table-row .product-col:before {
		content: attr(data-label);
		font-weight: 600;
		margin-right: 0.5rem;
	}
}

.accordion-section {
	background: #fff;
	border: 1px solid #e3ebf6;
	border-radius: 0.5rem;
	margin-bottom: 1rem;
	overflow: hidden;
}

.accordion-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.25rem;
	cursor: pointer;
	transition: background 0.2s ease;
}

.accordion-header:hover {
	background: #f9fbfd;
}

.accordion-title {
	font-size: 0.9375rem;
	font-weight: 600;
	color: #12263f;
	margin: 0;
}

.accordion-header i {
	color: #6e84a3;
	font-size: 1.125rem;
}

.accordion-content {
	padding: 0 1.25rem 1.25rem 1.25rem;
	animation: slideDown 0.3s ease;
}

.accordion-display {
	font-size: 0.9375rem;
	color: #2c7be5;
	font-weight: 500;
	padding: 0.75rem 1rem;
	background: #f0f7ff;
	border-radius: 0.375rem;
	border: 1px solid #d4e6ff;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.delivery-address-section {
	margin-top: 2rem;
}

.address-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.address-header h6 {
	font-size: 0.9375rem;
	font-weight: 600;
	color: #12263f;
}

.delivery-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: #fff;
	border: 1px solid #e3ebf6;
	border-radius: 0.5rem;
	margin-bottom: 1rem;
	cursor: pointer;
	transition: all 0.2s ease;
}

.delivery-item:hover {
	border-color: #95aac9;
	background: #f9fbfd;
}

.delivery-item-icon {
	font-size: 1.5rem;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f9fbfd;
	border-radius: 0.375rem;
}

.delivery-item-content {
	display: flex;
	align-items: start;
	justify-content: space-between;
	column-gap: 0.5rem;
	flex: 1;
}

.delivery-item-row {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.delivery-item-row:last-child {
	margin-bottom: 0;
}

.delivery-label {
	font-size: 0.8125rem;
	color: #95aac9;
	font-weight: 500;
	min-width: 90px;
}

.delivery-value {
	font-size: 0.8125rem;
	color: #12263f;
	font-weight: 500;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.delivery-value.price {
	color: #2c7be5;
	font-weight: 600;
}

.delivery-item > i {
	color: #95aac9;
	font-size: 1.125rem;
}

.total-price-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem;
	background: #f9fbfd;
	border: 1px solid #e3ebf6;
	border-radius: 0.5rem;
	margin-top: 1rem;
}

.total-label {
	font-size: 0.9375rem;
	color: #6e84a3;
	font-weight: 500;
}

.total-value {
	font-size: 1.25rem;
	color: #12263f;
	font-weight: 700;
}

.driver-wish-card {
	background: #fff;
	border: 1px solid #e3ebf6;
	border-radius: 0.5rem;
	padding: 1.5rem;
}

.driver-wish-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.5rem;
}

.driver-wish-header h6 {
	font-size: 0.9375rem;
	font-weight: 600;
	color: #12263f;
	margin: 0;
}

.driver-count {
	font-size: 0.875rem;
	color: #2c7be5;
	font-weight: 600;
}

.driver-wish-subtitle {
	font-size: 0.8125rem;
	color: #95aac9;
	margin-bottom: 1.5rem;
}

.wish-type-selection {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.wish-option {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem 1rem;
	border: 1px solid #e3ebf6;
	border-radius: 0.375rem;
	cursor: pointer;
	transition: all 0.2s ease;
}

.wish-option:hover {
	border-color: #95aac9;
	background: #f9fbfd;
}

.wish-option.selected {
	border-color: #2c7be5;
	background: #f0f7ff;
}

.wish-label {
	font-size: 0.9375rem;
	color: #12263f;
	font-weight: 500;
}

.driver-action {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	background: #fff;
	border: 1px solid #d4e6ff;
	border-radius: 0.5rem;
	cursor: pointer;
	margin-top: 0.75rem;
}

.driver-action-border {
	position: absolute;
	z-index: 50;
	left: 0;
	top: 0;
	bottom: 0;
	background-color: #2c7be5;
	width: 0.45rem;
	height: 100%;
	border-top-left-radius: 0.5rem;
	border-bottom-left-radius: 0.5rem;
}

.driver-action-img-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: #e3f2fd;
}

.driver-action-img {
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
}

.driver-action:hover {
	background: #e3f2fd;
	border-color: #2c7be5;
}

.driver-action-text {
	flex: 1;
	font-size: 0.8rem;
	color: #12263f;
	font-weight: 500;
}

.driver-action i:last-child {
	color: #6e84a3;
}

.driver-action-text-stack {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.driver-action-title {
	font-size: 0.8125rem;
	color: #12263f;
	font-weight: 600;
	line-height: 1.35;
}

.driver-action-sub {
	font-size: 0.75rem;
	line-height: 1.35;
}

.driver-action-sub--verified {
	font-weight: 500;
}

.papa-insurance-images-modal .modal-dialog {
	max-width: 420px;
}

.papa-insurance-images-modal__content {
	border: none;
	border-radius: 1rem;
	overflow: hidden;
}

.papa-insurance-images-modal__body {
	padding: 1.25rem 1.25rem 1.5rem;
}

.papa-insurance-images-modal__title {
	font-size: 1.0625rem;
	font-weight: 700;
	color: #12263f;
}

.papa-insurance-images-modal__lead {
	line-height: 1.45;
}

.papa-insurance-images-modal__carousel-wrap {
	border-radius: 0.75rem;
	overflow: hidden;
	background: #f1f3f5;
}

.papa-insurance-images-carousel .carousel-inner {
	border-radius: 0.75rem;
}

.papa-insurance-images-modal__slide {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 220px;
	max-height: 320px;
	padding: 0.5rem;
}

.papa-insurance-images-modal__slide img {
	max-width: 100%;
	max-height: 300px;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 0.5rem;
}

.papa-insurance-images-carousel .carousel-control-prev,
.papa-insurance-images-carousel .carousel-control-next {
	width: 2.25rem;
	height: 2.25rem;
	top: 50%;
	transform: translateY(-50%);
	bottom: auto;
	background: rgba(18, 38, 63, 0.45);
	border-radius: 50%;
	opacity: 1;
}

.papa-insurance-images-carousel .carousel-control-prev {
	left: 0.5rem;
}

.papa-insurance-images-carousel .carousel-control-next {
	right: 0.5rem;
}

.papa-insurance-images-carousel .carousel-indicators {
	margin-bottom: 0.5rem;
}

.papa-insurance-images-carousel .carousel-indicators li {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: rgba(44, 123, 229, 0.35);
}

.papa-insurance-images-carousel .carousel-indicators .active {
	background-color: #2c7be5;
}

.papa-insurance-images-modal__detail-link {
	font-size: 0.875rem;
	font-weight: 500;
	color: #2c7be5 !important;
}

.radio-option.is-invalid {
	border-color: #e63757;
}

.radio-option.is-invalid:hover {
	border-color: #e63757;
}

.drawer-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(18, 38, 63, 0.5);
	z-index: 1040;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.drawer-backdrop.active {
	opacity: 1;
	pointer-events: auto;
}

.custom-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	max-width: 480px;
	background: #fff;
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
	z-index: 1050;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
}

.custom-drawer .insurance-drawer-content {
	flex: 1;
	overflow-y: auto;
}

.custom-drawer.open {
	transform: translateX(0);
}

.insurance-drawer-content {
	padding: 1.5rem;
	background: #fff;
}

.insurance-drawer-header {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #e3ebf6;
}

.insurance-header-img {
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 0.75rem;
	object-fit: cover;
	flex-shrink: 0;
}

.insurance-header-content {
	flex: 1;
}

.insurance-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #12263f;
}

.insurance-subtitle {
	font-size: 0.875rem;
	color: #6e84a3;
	margin: 0;
}

.insurance-close-btn {
	background: transparent;
	border: none;
	color: #6e84a3;
	padding: 0.25rem;
	cursor: pointer;
	font-size: 1.5rem;
	line-height: 1;
	transition: color 0.2s ease;
}

.insurance-close-btn:hover {
	color: #12263f;
}

.insurance-description {
	margin-bottom: 1.5rem;
}

.insurance-description p {
	font-size: 0.875rem;
	color: #6e84a3;
	line-height: 1.6;
	margin: 0;
}

.insurance-contacts {
	background: #f9fbfd;
	border-radius: 0.5rem;
	padding: 1rem;
	margin-bottom: 1.5rem;
}

.insurance-section-title {
	font-size: 0.9375rem;
	font-weight: 600;
	color: #12263f;
	margin-bottom: 0.5rem;
}

.insurance-contact-item {
	display: flex;
	align-items: center;
	font-size: 0.875rem;
	color: #12263f;
}

.insurance-contact-item i {
	color: #6e84a3;
	font-size: 1rem;
}

.insurance-info-box {
	display: flex;
	gap: 0.75rem;
	background: #e3f2fd;
	border: 1px solid #90caf9;
	border-radius: 0.5rem;
	padding: 1rem;
	margin-bottom: 1.5rem;
}

.insurance-info-box i {
	color: #2196f3;
	font-size: 1.25rem;
	flex-shrink: 0;
	margin-top: 0.125rem;
}

.insurance-info-box p {
	font-size: 0.8125rem;
	color: #12263f;
	line-height: 1.5;
}

.insurance-driver-images-section {
	margin-bottom: 1.25rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid #e3ebf6;
}

.insurance-driver-images-hint {
	font-size: 0.8125rem;
	line-height: 1.4;
}

.insurance-driver-images-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.insurance-driver-image-thumb-wrap {
	display: block;
	border-radius: 0.5rem;
	overflow: hidden;
	border: 1px solid #e3ebf6;
	background: #f9fbfd;
}

.insurance-driver-image-thumb {
	width: 100%;
	height: 88px;
	object-fit: cover;
	display: block;
	vertical-align: middle;
}

.confirmed-insurance-preview {
	margin-top: 1rem;
	padding: 0.75rem 1rem;
	background: #f9fbfd;
	border: 1px solid #e3ebf6;
	border-radius: 0.5rem;
}

.confirmed-insurance-preview__title {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #12263f;
	margin-bottom: 0.5rem;
}

.confirmed-insurance-preview__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.confirmed-insurance-preview__grid a {
	display: block;
	border-radius: 0.375rem;
	overflow: hidden;
	border: 1px solid #e3ebf6;
	width: 72px;
	height: 72px;
}

.confirmed-insurance-preview__grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.insurance-coverage {
	margin-bottom: 1.5rem;
}

.coverage-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-top: 1rem;
}

.coverage-item {
	display: flex;
	gap: 0.75rem;
	padding: 1rem;
	background: #f9fbfd;
	border-radius: 0.5rem;
	border: 1px solid #e3ebf6;
}

.coverage-icon {
	width: 1.5rem;
	height: 1.5rem;
	background: #fff;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.coverage-content {
	flex: 1;
}

.coverage-title {
	font-size: 0.875rem;
	font-weight: 600;
	color: #12263f;
	margin: 0 0 0.25rem 0;
}

.coverage-description {
	font-size: 0.75rem;
	color: #95aac9;
	line-height: 1.4;
	margin: 0;
}

.insurance-footer {
	padding-top: 1rem;
	border-top: 1px solid #e3ebf6;
	position: sticky;
	bottom: 0;
	background: #fff;
}

.insurance-footer .btn {
	font-size: 1rem;
	font-weight: 600;
	padding: 0.875rem;
	border-radius: 0.5rem;
}

@media (max-width: 576px) {
	.custom-drawer {
		max-width: 100%;
	}

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

/* Cargo Detail Drawer */
.cargo-detail-section {
	margin-bottom: 1.25rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid #e3ebf6;
}

.cargo-detail-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.cargo-detail-section-title {
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #6e84a3;
	margin-bottom: 0.75rem;
}

.cargo-detail-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.4rem 0;
}

.cargo-detail-label {
	font-size: 0.875rem;
	color: #6e84a3;
	flex-shrink: 0;
}

.cargo-detail-value {
	font-size: 0.875rem;
	color: #12263f;
	font-weight: 500;
	text-align: right;
}

.cargo-detail-badge {
	background: #f0f4f9;
	border: 1px solid #e3ebf6;
	border-radius: 0.375rem;
	padding: 0.125rem 0.5rem;
	font-size: 0.8125rem;
}

.cargo-approve-images {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.cargo-approve-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.375rem;
}

.cargo-approve-hint {
	font-size: 0.8rem;
	color: #6e84a3;
	margin-bottom: 0.75rem;
}

.cargo-approve-loading {
	display: flex;
	align-items: center;
	color: #6e84a3;
	font-size: 0.875rem;
	padding: 0.5rem 0;
}

.cargo-approve-waiting {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem 1rem;
	background: #fffbf0;
	border: 1px solid #ffe08a;
	border-radius: 0.5rem;
}

.cargo-approve-waiting-icon {
	flex-shrink: 0;
	line-height: 1;
}

.cargo-approve-image-card {
	display: flex;
	flex-direction: column;
	background: #f9fbfd;
	border: 1px solid #e3ebf6;
	border-radius: 0.625rem;
	overflow: hidden;
}

.cargo-approve-image-link {
	display: block;
	width: 100%;
	position: relative;
	background: #fff;
}

.cargo-approve-image-thumb {
	width: 100%;
	max-height: 260px;
	object-fit: contain;
	display: block;
	vertical-align: middle;
}

.cargo-approve-image-missing {
	padding: 1rem;
}

.cargo-approve-description {
	padding: 0.625rem 0.875rem;
	border-top: 1px solid #e3ebf6;
}

.cargo-approve-success {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 0.875rem;
	background: #d4edda;
	border-top: 1px solid #c3e6cb;
	color: #155724;
}

.cargo-approve-action {
	padding: 0.75rem 0.875rem;
	border-top: 1px solid #e3ebf6;
}

.cargo-approve-block-warning {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0.75rem;
	padding: 0.625rem 0.875rem;
	background: #fff3cd;
	border: 1px solid #ffc107;
	border-radius: 0.5rem;
	color: #856404;
}

.cargo-edit-label {
	font-size: 0.8125rem;
	color: #6e84a3;
	margin-bottom: 0.375rem;
	display: block;
}

.cargo-detail-footer {
	display: flex;
	gap: 0.75rem;
	padding: 1rem 1.5rem;
	border-top: 1px solid #e3ebf6;
	background: #fff;
}

.cargo-footer-btn {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.625rem 1rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: background 0.15s;
}

.cargo-footer-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.cargo-footer-btn--primary {
	background: #2c7be5;
	color: #fff;
}

.cargo-footer-btn--primary:hover:not(:disabled) {
	background: #1a68d1;
}

.cargo-footer-btn--secondary {
	background: #f0f4f9;
	color: #12263f;
	border: 1px solid #e3ebf6;
}

.cargo-footer-btn--secondary:hover:not(:disabled) {
	background: #e3ebf6;
}

.cargo-footer-btn--danger {
	background: #fff;
	color: #e63757;
	border: 1px solid #e63757;
}

.cargo-footer-btn--danger:hover:not(:disabled) {
	background: #fff5f7;
}

body.drawer-open {
	overflow: hidden;
}

.favorite-drivers-content {
	padding: 1rem;
	background: #fff;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.favorite-drivers-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid #e3ebf6;
}

.favorite-drivers-title {
	font-size: 1rem;
	font-weight: 600;
	color: #12263f;
	margin: 0;
	line-height: 1.5;
}

.driver-count-badge {
	color: #2c7be5;
	font-weight: 700;
}

.drivers-list {
	flex: 1;
	overflow-y: auto;
	margin-bottom: 1rem;
}

.driver-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: #fff;
	border: 1px solid #e3ebf6;
	border-radius: 0.5rem;
	margin-bottom: 0.75rem;
	cursor: pointer;
	transition: all 0.2s ease;
}

.driver-item:hover {
	border-color: #95aac9;
	background: #f9fbfd;
}

.driver-item.selected {
	border-color: #2c7be5;
	background: #f0f7ff;
}

.driver-avatar {
	width: 48px;
	height: 48px;
	background: #e3ebf6;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.driver-avatar i {
	font-size: 1.5rem;
	color: #6e84a3;
}

.driver-info {
	flex: 1;
}

.driver-name {
	font-size: 0.9375rem;
	font-weight: 600;
	color: #12263f;
	margin: 0 0 0.25rem 0;
}

.driver-phone {
	font-size: 0.875rem;
	color: #6e84a3;
	margin: 0;
}

.driver-checkbox {
	flex-shrink: 0;
}

.driver-checkbox i {
	font-size: 1.2rem;
	color: #d2ddec;
	transition: color 0.2s ease;
}

.driver-item.selected .driver-checkbox i {
	color: #2c7be5;
}

.favorite-drivers-footer {
	margin-top: 1rem;
	background: #fff;
}

.favorite-drivers-footer .btn {
	font-size: 1rem;
	font-weight: 600;
	border-radius: 0.5rem;
}

.favorite-drivers-footer .btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.confirmed-screen {
	padding-bottom: 2rem;
}

.confirmed-total-card {
	background: #fff;
	border: 1px solid #e3ebf6;
	border-radius: 0.5rem;
	padding: 1.25rem 1.5rem;
	margin-bottom: 1rem;
	text-align: center;
}

.confirmed-total-label {
	font-size: 0.875rem;
	color: #95aac9;
	margin-bottom: 0.25rem;
}

.confirmed-total-price {
	font-size: 2rem;
	font-weight: 700;
	color: #12263f;
	margin: 0;
}

.confirmed-section {
	margin-bottom: 1.5rem;
}

.confirmed-section-title {
	font-size: 0.9375rem;
	font-weight: 600;
	color: #12263f;
	margin-bottom: 0.75rem;
}

.confirmed-warehouse {
	display: flex;
	align-items: center;
	padding: 1rem 1.25rem;
	border: 1.5px solid #2c7be5;
	border-radius: 0.5rem;
	background: #f0f7ff;
}

.confirmed-warehouse-label {
	font-size: 0.9375rem;
	color: #2c7be5;
	font-weight: 500;
}

.confirmed-deliveries {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.confirmed-map {
	width: 100%;
	height: 320px;
	border-radius: 0.5rem;
	overflow: hidden;
	background: #e3ebf6;
	margin-bottom: 1.25rem;
}

.confirmed-offers {
	background: #fff;
	border: 1px solid #e3ebf6;
	border-radius: 0.5rem;
	padding: 1.25rem;
}

.confirmed-offers-header {
	margin-bottom: 1.25rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #e3ebf6;
}

.confirmed-offers-header p {
	font-size: 1rem;
	font-weight: 600;
	color: #12263f;
	margin: 0 0 0.5rem 0;
}

.confirmed-offers-meta {
	margin-top: 0.5rem;
}

.driver-avatars {
	display: flex;
	align-items: center;
}

.driver-avatar-sm {
	width: 28px;
	height: 28px;
	background: #e3ebf6;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: -6px;
	border: 2px solid #fff;
	font-size: 0.625rem;
	color: #6e84a3;
}

.driver-avatar-sm:first-child {
	margin-left: 0;
}

.driver-avatar-sm i {
	font-size: 0.75rem;
}

.driver-avatar-more {
	background: #2c7be5;
	color: #fff;
	font-size: 0.625rem;
	font-weight: 700;
}

.driver-offer-card {
	margin-bottom: 1rem;
}

.driver-offer-card:last-child {
	margin-bottom: 0;
}

.driver-offer-info {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 0.875rem;
}

.driver-offer-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #e3ebf6;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
}

.driver-offer-avatar i {
	font-size: 1.5rem;
	color: #6e84a3;
}

.driver-offer-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.driver-offer-details {
	flex: 1;
	min-width: 0;
}

.driver-offer-name {
	font-size: 0.9375rem;
	font-weight: 600;
	color: #12263f;
	margin: 0;
}

.driver-offer-price {
	font-size: 0.9375rem;
	font-weight: 700;
	color: #2c7be5;
	white-space: nowrap;
}

.driver-offer-stars {
	display: flex;
	align-items: center;
	gap: 1px;
}

.driver-offer-stars i {
	font-size: 0.75rem;
}

.driver-offer-reviews {
	font-size: 0.75rem;
	color: #95aac9;
}

.driver-offer-badges {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	flex-wrap: wrap;
}

.badge-insurance {
	display: inline-flex;
	align-items: center;
	font-size: 0.6875rem;
	font-weight: 600;
	color: #2c7be5;
	background: #e8f3ff;
	border: 1px solid #b8d9ff;
	border-radius: 0.25rem;
	padding: 0.125rem 0.4rem;
}

.badge-insurance i {
	font-size: 0.625rem;
}

.badge-vip {
	display: inline-flex;
	align-items: center;
	font-size: 0.6875rem;
	font-weight: 600;
	color: #b8860b;
	background: #fff8e6;
	border: 1px solid #ffe08a;
	border-radius: 0.25rem;
	padding: 0.125rem 0.4rem;
}

.driver-offer-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.625rem;
}

.confirmed-driver-card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: #fff;
	margin-bottom: 1rem;
}

.confirmed-driver-avatar {
	width: 2.8rem !important;
	height: 2.8rem !important;
	border-radius: 0.5rem !important;
	flex-shrink: 0;
}

.confirmed-pincode {
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	margin-bottom: 1rem;
}

.confirmed-pincode-digit {
	width: 100%;
	height: 3rem;
	border: 1px solid #e3ebf6;
	border-radius: 0.5rem;
	background: #fff;
	display: flex;
	flex: 1 !important;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 600;
	color: #12263f;
}

.confirmed-pincode-warning {
	display: flex;
	align-items: flex-start;
	padding: 0.875rem 1rem;
	background: #eef6ff;
	border: 1px solid #b8d9ff;
	border-radius: 0.5rem;
}

.driver-offer-actions .btn {
	font-size: 0.875rem;
	font-weight: 600;
	padding: 0.5rem;
	border-radius: 0.5rem;
}

.digital-file-root {
	position: relative;
	min-height: 100vh;
}

.file-card {
	border-radius: 12px;
	transition: box-shadow 0.3s linear;
}

.file-card:hover {
	box-shadow:
		0 1px 3px 0 rgb(0 0 0 / 0.1),
		0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.thumbnail-wrapper {
	position: relative;
	cursor: pointer;
	border-top-right-radius: 12px;
	border-top-left-radius: 12px;
}

.thumbnail-image {
	height: 140px;
	overflow: hidden;
	background: #f8fafc;
	display: flex;
	align-items: center;
	justify-content: center;
}

.thumbnail-img {
	width: 100%;
	height: 100%;
	border-top-right-radius: 12px;
	border-top-left-radius: 12px;
	object-fit: cover;
}

.thumbnail-icon {
	height: 140px;
	border-top-right-radius: 12px;
	border-top-left-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.type-badge {
	position: absolute;
	top: 8px;
	left: 8px;
	color: #fff;
	font-size: 10px;
	font-weight: 600;
	border-radius: 0.4rem;
	padding: 2px 7px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.file-name {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	line-clamp: 1;
}

.card-footer-actions {
	display: flex;
	gap: 8px;
}

.btn-rounded {
	border-radius: 8px !important;
	font-size: 12px !important;
}

.drop-overlay {
	position: fixed;
	inset: 0;
	z-index: 2000;
	background: rgba(108, 63, 255, 0.08);
	border: 3px dashed #6c3fff;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	animation: drop-fade-in 0.15s ease;
}

.drop-overlay__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	color: #6c3fff;
	font-weight: 600;
	font-size: 18px;
	background: rgba(255, 255, 255, 0.9);
	padding: 40px 60px;
	border-radius: 16px;
	box-shadow: 0 8px 40px rgba(108, 63, 255, 0.15);
}

@keyframes drop-fade-in {
	from {
		opacity: 0;
		transform: scale(0.98);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.upload-panel {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	max-width: 32rem;
	width: 100%;
	z-index: 99999;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
	.upload-panel {
		left: 0.5rem;
		right: 0.5rem;
		width: auto !important;
		max-width: auto !important;
	}
}

.upload-panel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	border-bottom: 1px solid #f1f5f9;
	background: #fafafa;
}

.upload-panel__title {
	font-size: 13px;
	font-weight: 600;
	color: #1e293b;
}

.upload-panel__list {
	max-height: 280px;
	overflow-y: auto;
	padding: 8px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.upload-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	border-radius: 8px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	transition: background 0.2s;
}

.upload-card--done {
	background: #f0fdf4;
	border-color: #bbf7d0;
}

.upload-card--error {
	background: #fff1f2;
	border-color: #fecdd3;
}

.upload-card__thumb {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.upload-card__info {
	flex: 1;
	min-width: 0;
}

.upload-card__name {
	margin: 0 0 2px;
	font-size: 12px;
	font-weight: 600;
	color: #1e293b;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.upload-card__size {
	margin: 0 0 6px;
	font-size: 11px;
	color: #94a3b8;
}

.upload-card__bar-wrap {
	height: 4px;
	background: #e2e8f0;
	border-radius: 99px;
	overflow: hidden;
}

.upload-card__bar {
	height: 100%;
	background: #6c3fff;
	border-radius: 99px;
	transition: width 0.2s ease;
}

.upload-card__error-msg {
	margin: 0;
	font-size: 11px;
	color: #ef4444;
}

.upload-card__status {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.upload-card__pct {
	font-size: 12px;
	font-weight: 600;
	color: #6c3fff;
	min-width: 36px;
	text-align: right;
}

.spin {
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.empty-state {
	display: flex;
	justify-content: center;
	padding: 60px 16px;
	width: 1005;
}

.empty-state__box {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 6rem 80px;
	border: 2px dashed #cbd5e1;
	border-radius: 16px;
	cursor: pointer;
	transition:
		border-color 0.2s,
		background 0.2s;
	text-align: center;
}

.empty-state__box:hover {
	border-color: #6c3fff;
	background: #faf8ff;
}

.modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.75);
	z-index: 1040;
	backdrop-filter: blur(4px);
}

.viewer-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1050;
	width: 90vw;
	max-width: 860px;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

.viewer-modal-header {
	border-bottom: 1px solid #f1f5f9;
}

.viewer-modal-title-wrapper {
	overflow: hidden;
	flex: 1;
}

.viewer-modal-title {
	font-size: 15px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.viewer-modal-meta {
	font-size: 12px;
}

.viewer-modal-close {
	border-radius: 8px !important;
	min-width: 32px;
	flex-shrink: 0;
}

.viewer-modal-body {
	max-height: 85vh;
	overflow-y: auto;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
}

.media-video {
	width: 100%;
	max-height: 70vh;
	display: block;
}

.media-image {
	max-width: 100%;
	max-height: 70vh;
	display: block;
	margin: auto;
}

.audio-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 48px;
}

.pdf-frame {
	width: 100%;
	height: 70vh;
	border: none;
}

.other-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 48px;
}

.other-text {
	opacity: 0.7;
}

.confirm-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1060;
}

.confirm-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1070;
	width: 32rem;
	background: #fff;
	border-radius: 14px;
	padding: 28px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.confirm-text {
	font-size: 14px;
	text-wrap: wrap;
	word-break: break-all;
}

.confirm-actions {
	gap: 0.75rem;
}

.pagination-bar {
	border-radius: 12px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.action-menu-toggle {
	width: 28px;
	height: 28px;
	border: none;
	background: transparent;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #94a3b8;
	cursor: pointer;
	transition:
		background 0.15s,
		color 0.15s;
	padding: 0;
	flex-shrink: 0;
}

.action-menu-toggle:hover {
	background: #f1f5f9;
	color: #475569;
}

.action-menu-dropdown {
	min-width: 160px;
	border: 1px solid #e2e8f0 !important;
	border-radius: 10px !important;
	padding: 4px !important;
	font-size: 13px;
}

.action-menu-item {
	border-radius: 6px !important;
	padding: 7px 12px !important;
	color: #334155 !important;
	display: flex;
	align-items: center;
	transition: background 0.12s;
}

.action-menu-item:hover {
	background: #f8fafc !important;
	color: #0f172a !important;
}

.action-menu-item i {
	color: #64748b;
}

.action-menu-item--danger {
	color: #ef4444 !important;
}

.action-menu-item--danger:hover {
	background: #fff1f2 !important;
	color: #dc2626 !important;
}

.action-menu-item--danger i {
	color: #ef4444;
}

.file-card {
	cursor: pointer;
}

.min-w-0 {
	min-width: 0;
}

.attachment-selector {
	display: flex;
	flex-direction: column;
}

.attachment-selector__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 14px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 10px 10px 0 0;
	border-bottom: none;
}

.attachment-selector__count {
	font-size: 13px;
	font-weight: 600;
	color: #475569;
}

.attachment-selector__list {
	border: 1px solid #e2e8f0;
	border-radius: 0 0 10px 10px;
	overflow: hidden;
}

.attachment-selector__empty {
	border: 1px solid #e2e8f0;
	border-top: none;
	border-radius: 0 0 10px 10px;
	padding: 40px;
	text-align: center;
}

.attachment-selector__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 0;
	flex-wrap: wrap;
	gap: 8px;
}

.attachment-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	cursor: pointer;
	border-bottom: 1px solid #f1f5f9;
	transition: background 0.12s;
	background: #fff;
}

.attachment-row:last-child {
	border-bottom: none;
}

.attachment-row:hover {
	background: #f8fafc;
}

.attachment-row:hover .attachment-row__preview-btn {
	opacity: 1;
}

.attachment-row--selected {
	background: #faf8ff !important;
}

.attachment-row__icon {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.attachment-row__info {
	flex: 1;
	min-width: 0;
}

.attachment-row__name {
	margin: 0 0 3px;
	font-size: 13px;
	font-weight: 600;
	color: #1e293b;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.attachment-row__meta {
	margin: 0;
	font-size: 11px;
	color: #94a3b8;
	display: flex;
	align-items: center;
	gap: 5px;
}

.attachment-row__badge {
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	border-radius: 3px;
	padding: 1px 5px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

.attachment-row__preview-btn {
	width: 28px;
	height: 28px;
	border: none;
	background: #f1f5f9;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #64748b;
	cursor: pointer;
	flex-shrink: 0;
	opacity: 0;
	transition:
		opacity 0.15s,
		background 0.15s,
		color 0.15s;
}

.attachment-row__preview-btn:hover {
	background: #e2e8f0;
	color: #1e293b;
}

.attachment-row__check {
	width: 20px;
	height: 20px;
	border-radius: 6px;
	border: 2px solid #cbd5e1;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		background 0.12s,
		border-color 0.12s;
}

.attachment-row__check--active {
	background: #6c3fff;
	border-color: #6c3fff;
}

.attachment-modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 1060;
	backdrop-filter: blur(4px);
	animation: attachment-fade-in 0.15s ease;
}

.attachment-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1070;
	width: 90vw;
	max-width: 820px;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
	animation: attachment-slide-in 0.18s ease;
}

@keyframes attachment-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes attachment-slide-in {
	from {
		opacity: 0;
		transform: translate(-50%, -48%);
	}
	to {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

.attachment-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 18px;
	border-bottom: 1px solid #f1f5f9;
}

.attachment-modal__header-icon {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.attachment-modal__title {
	margin: 0 0 2px;
	font-size: 14px;
	font-weight: 600;
	color: #1e293b;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 60vw;
}

.attachment-modal__meta {
	margin: 0;
	font-size: 11px;
	color: #94a3b8;
	display: flex;
	align-items: center;
	gap: 5px;
}

.attachment-modal__close {
	width: 32px;
	height: 32px;
	border: none;
	background: #f1f5f9;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #64748b;
	cursor: pointer;
	flex-shrink: 0;
	transition: background 0.15s;
}

.attachment-modal__close:hover {
	background: #e2e8f0;
	color: #1e293b;
}

.attachment-modal__body {
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 220px;
	max-height: 72vh;
	overflow-y: auto;
}

.attachment-modal__video {
	width: 100%;
	max-height: 68vh;
	display: block;
}

.attachment-modal__image {
	max-width: 100%;
	max-height: 68vh;
	display: block;
	margin: auto;
}

.attachment-modal__audio-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 48px;
	width: 100%;
}

.attachment-modal__pdf {
	width: 100%;
	height: 68vh;
	border: none;
	display: block;
}

.attachment-modal__other {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 48px;
	color: #fff;
}

.category-topbar {
	display: flex;
	align-items: center;
	justify-content: end;
	margin-bottom: 16px;
}

.category-topbar__count {
	font-size: 13px;
	color: #64748b;
}

.category-add-btn {
	border-radius: 8px !important;
	font-size: 13px !important;
	display: flex;
	align-items: center;
	gap: 2px;
}

.category-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.category-card {
	display: flex;
	align-items: center;
	gap: 14px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 12px 14px;
	transition:
		box-shadow 0.15s,
		border-color 0.15s;
}

.category-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
	border-color: #cbd5e1;
}

.category-card__avatar {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: linear-gradient(135deg, #6c3fff 0%, #a78bfa 100%);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	letter-spacing: 0.5px;
}

.category-card__body {
	flex: 1;
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.category-card__name {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: #1e293b;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.category-card__actions {
	flex-shrink: 0;
}

.category-status-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	font-weight: 600;
	border-radius: 20px;
	padding: 2px 9px 2px 6px;
	white-space: nowrap;
	flex-shrink: 0;
}

.category-status-badge--on {
	background: #f0fdf4;
	color: #16a34a;
}

.category-status-badge--off {
	background: #f8fafc;
	color: #94a3b8;
}

.category-status-badge__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	flex-shrink: 0;
}

.category-status-badge--on .category-status-badge__dot {
	background: #22c55e;
}

.category-status-badge--off .category-status-badge__dot {
	background: #cbd5e1;
}

.category-dropdown-menu {
	min-width: 150px;
	border: 1px solid #e2e8f0 !important;
	border-radius: 10px !important;
	padding: 4px !important;
	font-size: 13px;
}

.category-dropdown-item {
	border-radius: 6px !important;
	padding: 7px 12px !important;
	color: #334155 !important;
	display: flex;
	align-items: center;
	transition: background 0.12s;
}

.category-dropdown-item:hover {
	background: #f8fafc !important;
}

.category-dropdown-item--danger {
	color: #ef4444 !important;
}

.category-dropdown-item--danger:hover {
	background: #fff1f2 !important;
}

.category-dropdown-divider {
	height: 1px;
	background: #f1f5f9;
	margin: 3px 6px;
}

.category-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 60px 20px;
	text-align: center;
	border: 2px dashed #e2e8f0;
	border-radius: 14px;
	background: #fafafa;
}

.category-empty__icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: #f1f5f9;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	font-size: 22px;
	color: #94a3b8;
}

.category-empty__title {
	font-size: 16px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 6px;
}

.category-empty__text {
	font-size: 13px;
	color: #94a3b8;
	margin-bottom: 20px;
	max-width: 280px;
}

.category-modal-header {
	border-bottom: 1px solid #f1f5f9 !important;
	padding: 18px 22px 14px !important;
}

.category-modal-title {
	font-size: 16px !important;
	font-weight: 700 !important;
	color: #1e293b;
}

.category-modal-body {
	padding: 20px 22px !important;
}

.category-modal-footer {
	border-top: 1px solid #f1f5f9 !important;
	padding: 14px 22px !important;
	gap: 8px;
}

.category-modal-cancel {
	border-radius: 8px !important;
	font-size: 13px !important;
}

.category-modal-submit {
	border-radius: 8px !important;
	font-size: 13px !important;
	min-width: 90px;
}

.category-status-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 14px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	margin-top: 4px;
}

.category-status-toggle__label {
	margin: 0 0 2px;
	font-size: 13px;
	font-weight: 600;
	color: #1e293b;
}

.category-status-toggle__hint {
	margin: 0;
	font-size: 11px;
	color: #94a3b8;
}

.badge-hot {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(135deg, #ff6b35, #ff2d55);
	color: #fff;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 1px;
	padding: 2px 8px;
	border-radius: 20px;
	text-transform: uppercase;
	/* box-shadow: 0 2px 6px rgba(255, 45, 85, 0.45); */
	line-height: 16px;
}

.papa-order-stepper__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.papa-order-stepper__title {
	font-size: 0.9375rem;
	font-weight: 600;
	color: #12263f;
	margin: 0;
	flex-shrink: 0;
}

.papa-order-stepper__badge {
	min-width: 0;
	padding: 0.35rem 0.65rem;
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.25;
	color: #206bc4;
	background: #e7f0fe;
	border-radius: 0.375rem;
	text-align: right;
}

.papa-order-stepper__track {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 0.25rem 0.125rem 0;
}

.papa-order-stepper__node {
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: #95aac9;
	transition:
		border-color 0.2s ease,
		color 0.2s ease;
}

.papa-order-stepper__node.is-done,
.papa-order-stepper__node.is-current {
	background: #fff;
	color: #01bec0;
}

.papa-order-stepper__node.is-todo {
	background: #fff;
	border-color: #e9ecef;
	color: #ced4da;
}

.papa-order-stepper__connector {
	flex: 1;
	height: 2px;
	margin: 0 1.5rem;
	border-radius: 2px;
	background: #e9ecef;
	min-width: 1rem;
	align-self: center;
	transition: background 0.2s ease;
}

.papa-order-stepper__connector.is-done {
	background: #01bec0;
}

.papa-order-stepper__connector.is-progress {
	background: linear-gradient(90deg, #01bec0 50%, #e9ecef 50%);
}

.papa-payment-modal .papa-payment-method-tabs.nav-tabs {
	border-bottom: 1px solid #e3ebf6;
}

.papa-payment-modal .papa-payment-method-tabs .nav-link {
	font-size: 0.875rem;
	font-weight: 600;
	padding: 0.5rem 0.75rem;
	color: #6e84a3;
	border: none;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
}

.papa-payment-modal .papa-payment-method-tabs .nav-link:hover {
	border-color: transparent;
	color: #2c7be5;
}

.papa-payment-modal .papa-payment-method-tabs .nav-link.active {
	color: #2c7be5;
	border-bottom-color: #2c7be5;
	background: transparent;
}

.papa-payment-modal .qpay-deeplink-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	max-height: min(60vh, 420px);
	overflow-y: auto;
	padding: 0 0.125rem;
}

.papa-payment-modal .qpay-deeplink-card {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.625rem 0.75rem;
	border: 1px solid #e3ebf6;
	border-radius: 0.5rem;
	background: #fff;
	color: #12263f;
	text-decoration: none;
	transition:
		border-color 0.15s ease,
		background 0.15s ease;
}

.papa-payment-modal .qpay-deeplink-card:hover {
	border-color: #2c7be5;
	background: #f8fbff;
	color: #12263f;
	text-decoration: none;
}

.papa-payment-modal .qpay-deeplink-logo {
	width: 40px;
	height: 40px;
	object-fit: contain;
	border-radius: 0.375rem;
	flex-shrink: 0;
}

.papa-payment-modal .qpay-deeplink-logo-placeholder {
	width: 40px;
	height: 40px;
	border-radius: 0.375rem;
	background: #e9ecef;
	flex-shrink: 0;
}

.papa-payment-modal .qpay-deeplink-text {
	min-width: 0;
	flex: 1;
}

.papa-payment-modal .qpay-deeplink-title {
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.35;
}

.uppy-StatusBar-actionBtn--done {
	background-color: transparent !important;
	color: #2c7be5 !important;
	border: 1px solid #2c7be5 !important;
	border-radius: 15px !important;
	padding: 5px 15px !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	letter-spacing: 0.3px !important;
	transition: all 0.2s ease !important;
}

.uppy-StatusBar-actionBtn--done:hover {
	background-color: #2c7be5 !important;
	color: #fff !important;
}

.papa-sticky-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1030;
	background: #fff;
	border-top: 1px solid #e3ebf6;
	padding: 12px 24px;
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	animation: stickyBarSlideUp 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (min-width: 768px) {
	.papa-sticky-bar {
		left: 250px;
	}
}

@keyframes stickyBarSlideUp {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}
