/**
 * eZizz — Claim Your Profile (v2) — styles
 * Place in /css/claim-profile.css
 * Your existing .claim-banner / #claimBanner.is-visible rules already live in
 * your main stylesheet — leave those as-is. This file only adds the modal
 * and the small persistent "Claim Profile" button.
 */

/* Small persistent claim button (sidebar) */
.ezizz-claim-btn-small {
	display: inline;
	gap: 10px;
	justify-content: center;
	border: 1px dashed rgba(42, 179, 145, 0.4);
	color: #2ab391 !important;
	border-radius: 30px;
	padding: 5.25px 10.5px;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.25s ease;
	cursor: pointer;
}
.ezizz-claim-btn-small:hover {
	background: #2ab391;
	color: #fff !important;
	transform: translateY(-1px);
}
.ezizz-claim-btn-small i {
	font-size: 1rem;
}

/* Modal */
#ezizzClaimModal .modal-content.ezizz-claim-modal-content {
	background: #1a1a1a;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	color: #fff;
}
#ezizzClaimModal .modal-title {
	color: #fff;
	font-weight: 700;
}
.ezizz-claim-input {
	background: rgba(30, 30, 30, 0.9) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	color: #fff !important;
	border-radius: 10px;
	padding: 12px 14px;
}
.ezizz-claim-input:focus {
	border-color: #2ab391 !important;
	box-shadow: 0 0 0 3px rgba(42, 179, 145, 0.15) !important;
}
.ezizz-otp-input {
	text-align: center;
	font-size: 1.4rem;
	letter-spacing: 6px;
	font-weight: 700;
}
.ezizz-claim-step .btn-link {
	color: #8892b0;
	font-size: 0.85rem;
}
.ezizz-claim-step .btn-link:hover {
	color: #2ab391;
}

.claim-profile-wrap-m{
	display: none;
}

@media(max-width: 500px){
	.claim-profile-wrap{
		display: none;
	}
	
	.claim-profile-wrap-m{
		display: block;
		margin-top: 1rem;
	}
	
	.claim-profile-wrap-m .ezizz-claim-btn-small{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
	}
}