:root {
	--success-color: #4bb543;
	--warning-color: #ffd500;
	--card-shadow: 0 2px 4px rgba(0,0,0,.05);
	--card-hover-shadow: 0 4px 12px rgba(0,0,0,.1);
	--transition-speed: 0.3s;
}

a{
	text-decoration: none;
}
.fw-300 {
	font-weight: 300;
}
.fw-500 {
	font-weight: 500;
}
.fw-600 {
	font-weight: 600;
}
.smallest, smallest {
	font-size: .8em;
}
body {
	font-family: -apple-system, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}
.theme-icon-light {
	display: none;
}
.theme-icon-dark {
	display: none;
}

.btn-theme-switch, .btn-theme-switch:hover, .btn-theme-switch, .btn-theme-switch:active, .btn-theme-switch:focus {
	background: transparent !important;
}
.section-title {
	position: relative;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
}
.section-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background-color: var(--primary-color);
}
.featured-section {
	position: relative;
}
.featured-section .swiper {
	padding: 1rem;
	margin: -1rem;
}
.swiper-slide {
	height: auto;
}
.swiper-button-prev,.swiper-button-next {
	width: 40px;
	height: 40px;
	background-color: white;
	border-radius: 50%;
	box-shadow: 0 2px 4px rgba(0,0,0,.1);
	transition: all var(--transition-speed);
}
.swiper-button-prev:hover,.swiper-button-next:hover {
	background-color: var(--primary-color);
	color: white;
}
.swiper-button-prev:after,.swiper-button-next:after {
	font-size: 1.2rem;
}
.swiper-button-disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
.badge {
	padding: 0.5em 1em;
	font-weight: 500;
}
.show-coupon-btn {
	padding: 0.375rem 1rem;
	font-weight: 500;
	transition: all var(--transition-speed);
}
.show-coupon-btn:hover {
	transform: translateY(-1px);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.coupon-card {
	transition: transform var(--transition-speed), box-shadow var(--transition-speed);
	box-shadow: var(--card-shadow);
	border: none;
	height: 100%;
	overflow: hidden;
	animation: fadeInUp 0.5s ease-out;
	animation-fill-mode: both;
    transition: all 0.2s ease-in-out;
}
.coupon-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--card-hover-shadow);
}
.coupon-card:nth-child(2) {
	animation-delay: 0.1s;
}
.coupon-card:nth-child(3) {
	animation-delay: 0.2s;
}
.coupon-card:nth-child(4) {
	animation-delay: 0.3s;
}
.coupon-card .card-header {
	background: transparent;
	padding-bottom: 0;
}
.coupon-card .brand-logo {
	width: auto;
	object-fit: contain;
}
.coupon-card .card-body {
	padding-top: 1.5rem;
	display: flex;
	flex-direction: column;
}
.coupon-card .card-title {
	font-size: 1.1rem;
	line-height: 1.4;
	margin-bottom: 0.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.coupon-incentive {
	margin: 0.5rem 0;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.coupon-incentive-inner {
	background: transparent;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	position: relative;
	text-align: center;
	width: 100%;
}
.coupon-incentive-inner::before {
	left: -6px;
}
.coupon-incentive-inner::after {
	right: -6px;
}
.brand-coupon-incentive .coupon-incentive-inner {
    width: 150px;
    padding: 0;
}
.incentive-text {
	font-weight: 600;
	font-size: 1.1rem;
	color: var(--primary);
	white-space: wrap;
	display: block;
}
.brand-coupon-incentive .incentive-text {
    white-space: wrap;
    line-height: 1.2;
}
.coupon-card .card-text {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: #6c757d;
}
.coupon-card-r {
	margin-top: -0.8rem;
}
.stars {
	display: inline-flex;
	gap: 2px;
}
.banner-section {
	height: 150px;
}
.banner-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pattern-svg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.brand-logo {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.brand-logo-wrapper + .card-body {
	padding-top: 3rem;
}

.hover-accent {
	transition: color 0.2s ease;
}
.hover-accent:hover {
	color: var(--primary-color) !important;
}
.search-loader {
	z-index: 5;
}
.search-input-wrapper {
	position: relative;
}
input[type="search"]::-webkit-search-cancel-button {
	position: relative;
	right: 20px;
}
.is-searching .bi-search {
	display: none;
}
.is-searching .spinner-border {
	display: block !important;
}
.search-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--background-secondary);
	border: 1px solid var(--border-light);
	border-radius: 0.5rem;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
	z-index: 1000;
	max-height: 400px;
	overflow-y: auto;
	display: none;
	min-height: 114px;
}
.search-dropdown.show {
	display: block;
}
.search-section {
	padding: 1rem;
}
.search-section:not(:last-child) {
	border-bottom: 1px solid var(--bs-border-color);
}
.search-section-title {
	font-size: 0.875rem;
	color: var(--bs-secondary);
	margin-bottom: 0.5rem;
	font-weight: 500;
}
.search-item {
	display: flex;
	align-items: center;
	padding: 0.5rem;
	border-radius: 0.375rem;
	text-decoration: none;
	color: var(--bs-body-color);
	transition: background-color 0.2s;
}
.search-item:hover {
	background-color: var(--background);
}
.search-item-image {
	width: 32px;
	height: 32px;
	margin-right: 0.75rem;
	object-fit: contain;
}
.search-item-content {
	flex: 1;
}
.search-item-title {
	font-size: 0.875rem;
	font-weight: 500;
}
.search-item-subtitle {
	font-size: 0.75rem;
	color: var(--bs-secondary);
}
.search-empty {
	padding: 2rem;
	text-align: center;
	color: var(--bs-secondary);
}
.search-loading {
	padding: 1rem;
	text-align: center;
	color: var(--bs-secondary);
}
[data-bs-theme="dark"] {
	--card-shadow: 0 2px 4px rgba(0,0,0,.2);
	--card-hover-shadow: 0 4px 12px rgba(0,0,0,.3);
}
#searchForm {
    max-width: 600px;
    margin: 0 auto;
    flex: 1;
}
.header-search {
    height: 40px;
    font-size: 14px !important;
    padding-right: 40px;
	outline: none;
	box-shadow: none;
}
.search-loader i {
	font-size: 0.9rem;
	color: var(--accent-lighter);
}
.header-search:active, .header-search:focus {
	box-shadow: none;
}
.header-search::-webkit-search-decoration,
.header-search::-webkit-search-cancel-button,
.header-search::-webkit-search-results-button,
.header-search::-webkit-search-results-decoration {
    display: none;
    -webkit-appearance: none;
}
.header-search::-moz-search-clear-button {
    display: none;
}
.header-search::placeholder {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
	color: var(--text-third);
}
.header-search:placeholder-shown {
	text-overflow: ellipsis;
}
@media (max-width: 576px) {
    .header-search {
        height: 36px;
        font-size: 12px !important;
    }
    .search-dropdown {
        position: fixed;
        top: 63px;
		width: 100%;
        left: 0;
        right: 0;
        margin: 0;
        border-radius: 0.5rem;
    }
	.header-search::placeholder {
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
		color: var(--text-third);
		font-size: 12px !important;
	}
	.search-loader {
		padding-right:  0.75rem !important;
	}
}	
.text-warning svg {
	filter: invert(83%) sepia(47%) saturate(2309%) hue-rotate(349deg) brightness(98%) contrast(106%);
}
body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
	width: 100%;
    z-index: 1000;
}
.navbar {
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
}

/* Logo Styles */
.navbar-brand {
    min-width: auto;
}

.navbar-brand img {
    max-height: 28px;
    width: auto;
}

@media (max-width: 576px) {
    .navbar-brand img {
        max-height: 24px;
    }
}
.main-wrapper {
	margin-top: 64px;
	display: flex;
	flex: 1;
	min-height: calc(100vh - 64px);
}
.sidebar {
	width: 500px;
	position: sticky;
	top: 64px;
	height: calc(100vh - 64px);
	overflow-y: auto;
	z-index: 100;
}
.main-content {
	flex: 1;
	overflow-y: auto;
}
.footer {
	position: relative;
	z-index: 101;
	padding-top: 80px;
}

.sidebar-section {
	padding: 1.5rem;
	border-bottom: 1px solid var(--primary-lightest);
}
.sidebar-section:last-child {
	border-bottom: none;
}
.sidebar {
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.sidebar::-webkit-scrollbar {
	display: none;
}
.container-2xl {
	max-width: 90rem;
}
.featured-coupon-card {
	display: grid;
	grid-template-columns: 35% 1fr;
	min-height: 320px;
	transition: all 0.3s ease;
}
.featured-media {
	position: relative;
	overflow: hidden;
}
.featured-banner {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.featured-placeholder {
	width: 100%;
	height: 100%;
	min-height: 320px;
}
.featured-brand-logo {
	max-width: 80%;
	max-height: 80%;
	object-fit: contain;
}
.featured-content {
	padding: 1.5rem;
}
.featured-brand {
	font-size: 0.875rem;
	font-weight: 500;
}
.featured-title {
	font-size: 1.1rem;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.featured-description {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.featured-action-btn {
	font-weight: 500;
	padding: 0.5rem 1rem;
	transition: all 0.3s ease;
}
.newest-coupons-section {
    position: relative;
}

.newest-coupons-scroll {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.newest-coupon {
	margin-bottom: 0.8rem;
	background: var(--background);
    transition: all 0.2s ease-in-out;
}
.newest-coupon-content {
	padding: 0.75rem 1.5rem;
	gap: 1rem;
	padding: 0.75rem;
	justify-content: center;
	align-items: center;
}
.t-smallest {
    font-size: 0.72rem;
}
.newest-brand-container {
	flex: 0 0 52px;
    position: relative;
}
.newest-brand-logo,.newest-brand-placeholder {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.newest-badge-container {
    position: absolute;
    left: -3px;
    top: -10px;
}
.badge.badge-small {
    padding: 0.3em 0.6em;
    font-size: 0.6em;
}
.brand-image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.newest-info {
	flex: 1;
	min-width: 0;
}
.newest-title {
	font-size: 0.95rem;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.newest-incentive {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.newest-action {
	flex: 0 0 auto;
	padding-left: 1rem;
	border-left: 1px solid var(--border-light);
}
.code-preview {
	min-width: 90px;
    font-family: -apple-system, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.newest-badge {
	height: 0;
	position: relative;
	z-index: 1;
}
.newest-coupon:hover {
	transform: translateX(4px);
}

.coupon-card:hover {
	transform: translateY(-4px);
}
.coupon-card .brand-logo-wrapper {
	position: absolute;
	bottom: -1rem;
	left: 1rem;
	width: 80px;
	height: 80px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.coupon-incentive-inner {
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	text-align: center;
	margin: 0.5rem 0;
}
.card-footer {
	transition: background-color 0.2s ease-in-out;
}
.banner-section {
	height: 150px;
}
.banner-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.accent-colored-placeholder {
	height: 100%;
	display: flex;
    background-color: var(--primary-lighter);
	align-items: center;
	justify-content: center;
	opacity: 0.3;
}
.card-body {
	padding-top: 2rem;
}
.coupon-code-container {
	position: relative;
	width: 120px;
}
.code-preview-wrapper {
	position: relative;
	width: 100%;
}
.btn-reveal {
	position: relative;
	width: 100%;
	z-index: 2;
	font-size: 0.875rem;
	transition: all 0.3s ease;
 
}
.hidden-code {
	position: absolute;
	top: 4px;
	right: -20px;
	width: 90%;
	height: 38px;
	border: 1px dashed var(--border-light);
	overflow: hidden;
	transition: all 0.3s ease;
}
.code-content {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-right: 12px;
    font-family: -apple-system, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	font-size: 0.9rem;
	color: var(--accent);
	letter-spacing: 1px;
}
.code-content::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to left,transparent 30%,var(--background-secondary) 70%);
	pointer-events: none;
}
.code-preview-wrapper:hover .btn-reveal {
	transform: translateX(0);
}
.code-preview-wrapper:hover .hidden-code {
	transform: translateX(-12px);
}
@keyframes subtle-bounce {
	0%, 100% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(-5px);
	}
}
.code-preview-wrapper:not(:hover) .btn-reveal {
	animation: subtle-bounce 2s ease-in-out infinite;
}

.coupon-card-standard .hidden-code {
	position: absolute;
	top: 8px;
	right: -5px;
	width: 90%;
	height: 38px;
	border: 1px dashed var(--border-light);
	overflow: hidden;
	transition: all 0.3s ease;
}
.coupon-card:hover {
	transform: translateY(-4px);
}
.coupon-card-standard .rating-badge {
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.incentive-circle {
	position: absolute;
	width: 20px;
	height: 20px;
	background: #fff;
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
}
.incentive-circle.start {
	left: -10px;
}

.text-white{

	color: rgb(59, 52, 71);
}
.accent-darker {
 
    color: #393b3d
}
 
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
}
.h4, h4 {
    font-size: calc(1.275rem + .3vw);
}
.accent {
    color: #333;
}
.mb-1 {
    margin-bottom: .25rem !important;
	margin-top:4px;
	font-size:14px;
}
.incentive-circle.end {
	right: -10px;
}
.code-preview-wrapper {
	position: relative;
	width: 100%;
}
@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.02);
	}
	100% {
		transform: scale(1);
	}
}
.coupon-incentive-inner:hover {
	animation: pulse 1s infinite;
}
.card-footer {
	font-size: 0.875rem;
}
.short-description-text {
	font-size: 0.8em;
	line-height: 1.2;
}
.brand-page-container {
	min-height: calc(100vh - 64px);
}
.brand-sidebar {
	width: 500px;
	flex-shrink: 0;
	position: sticky;
	top: 64px;
	height: calc(100vh - 64px);
	overflow-y: auto;
}
.brand-logo-container {
	width: 92px;
	height: 92px;
	margin: 0 auto;
	background: var(--background);
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.brand-logo {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.stats-grid {
	display: grid;
    column-count: 3;
	gap: 1rem;
}
.stat-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
}
.brand-main-content {
	flex: 1;
	min-width: 0;
}
.coupon-row {
	transform: translateY(0);
	transition: all 0.3s ease;
}
.coupon-row:hover {
	transform: translateY(-2px);
	border-color: var(--accent-lighter) !important;
}
.coupon-row-pattern {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 30%;
	background-image: radial-gradient(var(--accent-lightest) 1px, transparent 1px);
	background-size: 10px 10px;
	opacity: 0.1;
	pointer-events: none;
}
.btn-reveal {
	transition: all 0.3s ease;
}
.btn-reveal:hover {
	background-color: var(--accent) !important;
	color: white !important;
	opacity: 0.9;
}
.btn-content,.btn-hover-content {
	transition: all 0.3s ease;
	position: absolute;
	width: 100%;
	left: 0;
}
.btn-hover-content {
	transform: translateY(100%);
}
.btn-reveal:hover .btn-content {
	transform: translateY(-100%);
}
.btn-reveal:hover .btn-hover-content {
	transform: translateY(0);
}
.hidden-code {
	position: absolute;
	right: -10px;
	bottom: -10px;
	padding: 0.5rem 1rem;
	transform: rotate(-3deg);
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	opacity: 0;
	transition: all 0.3s ease;
}
.code-preview-wrapper:hover .hidden-code {
	opacity: 1;
	transform: rotate(0);
}
.rating-badge {
	font-size: 0.875rem;
}
.coupon-meta i {
	font-size: 1rem;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.coupon-row {
	opacity: 0;
	animation: fadeInUp 0.5s ease forwards;
}
.btn-reveal-container {
	position: relative;
	z-index: 1;
}
.btn-reveal {
	transition: all 0.3s ease;
}
.btn-inner {
	position: relative;
	overflow: hidden;
	height: 24px;
}
.btn-default-content,.btn-hover-content {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	width: 100%;
	left: 0;
	transition: all 0.3s ease;
}
.btn-default-content {
	top: 0;
}
.btn-hover-content {
	top: 100%;
}
.btn-reveal:hover .btn-default-content {
	top: -100%;
}
.btn-reveal:hover .btn-hover-content {
	top: 0;
}
.modal-overlay {
	position: fixed;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}
.coupon-modal {
	width: 100%;
	max-width: 600px;
	background: #fff;
 
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	display: flex;
	flex-direction: column;
    max-height: 100%;
 
}
.modal-header {
	background-color: var(--background-secondary);
	border-bottom: 1px solid var(--border-light);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 2rem;
 
}
.header-overlay {
 

}
.coupon-modal .brand-logo-wrapper {
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	background: var(--background);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.coupon-modal .brand-logo-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
}
.coupon-title {
	font-size:16px;
	font-weight: 700;
}
.verified-badge {
	font-size: 0.75rem;
	background: var(--background-secondary-lighter);
	color: var(--text-lighter);
	padding: 0.25rem 0.75rem;
	border-radius: 1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	color:#000;
}
.modal-body {
	padding: 1.5rem;
	overflow-y: auto;
	 
}
.incentive-banner {
	background: #ffde67;
	border-radius: 1rem;
	position: relative;
    background: radial-gradient(circle, #ffde67 50%, #ffd322 100%);
	overflow: hidden;
}
.banner-pattern {
	position: absolute;
	inset: 0;
	 
	background-size: 10px 10px;
	 
	pointer-events: none;
}
.stats-row {
	display: flex;
	justify-content: space-around;
	padding: 1.5rem 0;
 
	margin-bottom:10px;
}
.stat-item {
	text-align: center;
	flex: 1;
}
.stat-value {
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--text);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 0.25rem;
}
.stat-label {
	font-size: 13px;
    color: #393b3d;
    margin-top: 10px;
    font-weight: 600;
	margin-left:5px;
}
.description-section,.terms-section {
	margin-bottom: 1.5rem;
}
.description-section h4,.terms-section h4 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text);
}
.description-section {
	font-size: 15px;
    line-height: 1.75;
    font-weight: 400;
	padding-bottom: 120px;
	padding-top: 0px;
}
.terms-list {
	list-style-type: circle;
	padding-left: 1.25rem;
	margin: 0;
}
.terms-list li {
	margin-bottom: 0.5rem;
	color: var(--text-lighter);
	font-size: 0.875rem;
}



.modal-footer {
	background: #f2f4f5;
    padding: 1.5rem;
	border-top: 2px solid #e7e8eb;
	padding-bottom: 25px !important;
}
.modal-footer2 {
 
     padding-top:25px;
	 
	padding-bottom: 15px !important;
}
@keyframes pulse-glow {
	0%, 100% {
	  transform: scale(1);
	  box-shadow: 0 0 0 0 #00b06f;
	}
	50% {
	  transform: scale(1.05);
	  box-shadow: 0 0 0 5px rgba(52, 152, 219, 0);
	}
  }
  
  .pulse-glow {
	animation: pulse-glow 2s infinite;
  }


.code-section {
	background: var(--background);
	padding: 1.5rem;
	border-radius: 1rem;
	margin-bottom: 1.5rem;
	position: relative;
	overflow: hidden;
}
.section-pattern {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(var(--accent) 1px, transparent 1px);
	background-size: 10px 10px;
	opacity: 0.05;
	pointer-events: none;
}
.code-preview {
	text-align: center;
}
.code-label {
	font-size: 0.875rem;
	color: var(--text-lighter);
	margin-bottom: 0.5rem;
}
.code-display {
	background: var(--background-secondary);
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	display: inline-block;
}
.code-display span {
    font-family: -apple-system, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	font-size: 1.125rem;
	letter-spacing: 1px;
	color: var(--accent);
}
.btn-close {
	width: 32px;
	height: 32px;
	padding: 0;
	background: var(--background) !important;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.7;
	transition: all 0.2s ease;
	cursor: pointer;
}
.btn-close:hover {
	opacity: 1;
}

@keyframes modalFadeIn {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
.coupon-modal {
 
}
 .modal-coupon-obscured{
	font-size: 28px;
    filter: blur(3px);
    padding: 5px;
 }
 .height-fix{
	min-height: 190px !important;
 }
.modal-btn-reveal {
    display: block;
    height: 4.125rem;
    padding-right: 1.875rem;
    position: relative;
    transition: padding .1s;
    width: 16.438rem;
    text-decoration: none;
}
.modal-btn-reveal2 {
	display: block;
    height: 50px;
    position: relative;
    transition: padding .1s;
    width: 100%;
    text-decoration: none;
    margin: 0 auto;
    margin-left: 30px;
    background: #fff;
 
    border-color: #144835;
    border-radius: 46px;
    margin: 0 auto;
	border-color: #144835;
    border-radius: 12px;
    margin: 0 auto;
	background: #0aa849;
}
.hide{
	display: none;
}

 
 
.modal-btn-reveal .code {
align-items: center;
    border-radius: 12px;
    color: #333;
    display: flex
;
    font-size: 1.625rem;
    font-weight: 600;
    height: 100%;
    justify-content: flex-end;
    line-height: 1.23;
    overflow: hidden;
    padding-right: .5rem;
    position: absolute;
    white-space: nowrap;
    width: 100%;
 
}
 .how{
	text-align: center;
	font-size: 12px;
 }

 @keyframes pulse {
	0% {
	  transform: scale(1);
	  box-shadow: 0 0 10px rgba(255, 165, 0, 0.6);
	}
	50% {
	  transform: scale(1.1);
	  box-shadow: 0 0 20px rgba(255, 165, 0, 0.9);
	}
	100% {
	  transform: scale(1);
	  box-shadow: 0 0 10px rgba(255, 165, 0, 0.6);
	}
  }

  @keyframes subtlePulse {
	0% {
	  transform: scale(1);
	}
	50% {
	  transform: scale(1.05);
	}
	100% {
	  transform: scale(1);
	}
  }



.offer-cta {
        display: block;
        width: 13.438rem;
    }
.btn-reveal {
    display: block;
    height: 50px;
 
    position: relative;
    transition: padding .1s;
    width: 100%;
	    margin: 0 auto;
}




 .btn-reveal .code {
    align-items: center;
    background-color: #edf2ff;

    border-radius: 4px;
    color: #333;
    display: flex;;
    font-family: monospace;
    font-size: 1.625rem;
    font-weight: 600;
    height: 100%;
    justify-content: flex-end;
    line-height: 1.23;
    overflow: hidden;
    padding-right: .5rem;
    position: absolute;
    white-space: nowrap;
    width: 100%;
	border: 1px dashed #00b06f;
}

.btn-reveal .cover {
background-color: #00b06f;
 border: 0px;
   border-radius:14px;
 
    color: #fff;
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    overflow: hidden;
    padding: 13px;
    position: relative;
    text-align: center;
    text-overflow: ellipsis;
    transition: width .1s, padding .1s;
    white-space: nowrap;
	margin-top: 15px;
    box-sizing: border-box;
   
}


  .move-right {
      width: 100px;
      height: 100px;
      background: coral;
      animation: slideRight 1s infinite alternate;
    }

    @keyframes slideRight {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(10px);
      }
    }
.processing-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2rem;
	gap: 2rem;
}
.circle-loader-container {
	position: relative;
	width: 150px;
	height: 150px;
}
.process-message {
	text-align: center;
	font-size: 1rem;
	color: var(--text);
	margin-top: 1rem;
}
.animate__bounceIn {
	animation: bounceIn 0.75s;
}
@keyframes bounceIn {
	from, 20%, 40%, 60%, 80%, to {
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}
	0% {
		opacity: 0;
		transform: scale3d(.3, .3, .3);
	}
	20% {
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		transform: scale3d(.9, .9, .9);
	}
	60% {
		opacity: 1;
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		transform: scale3d(.97, .97, .97);
	}
	to {
		opacity: 1;
		transform: scale3d(1, 1, 1);
	}
}
.progress-ring {
	width: 150px;
	height: 150px;
	transform: rotate(-90deg);
}
.progress-ring__circle {
	stroke-dasharray: 283;
	transition: stroke-dashoffset 0.1s ease;
}
.circle-loader-container {
	position: relative;
	width: 150px;
	height: 150px;
	margin: 0 auto;
}
.loader-percentage {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 24px;
	font-weight: 600;
}
.progress-bar-container {
	width: 100%;
	padding: 0;
	background: var(--background-secondary);
}
.progress-bar-track {
	width: 100%;
	height: 4px;
	background: var(--background-secondary);
	overflow: hidden;
}
.progress-bar-fill {
	height: 100%;
	background: var(--accent);
	transition: width 0.1s ease;
}
.processing-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2rem;
	text-align: center;
}
.process-message {
	margin-top: 2rem;
	font-size: 1rem;
	color: var(--text);
}
.console-message-container {
	min-height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.console-message {
	background: var(--background-secondary);
	padding: 1rem 1.5rem;
	border-radius: 0.75rem;
	font-size: 1rem;
	color: var(--text);
	text-align: center;
}
.processing-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2rem;
	gap: 2rem;
}
.animate__bounceIn {
	animation-duration: 0.6s;
}
.checkmark {
	animation-duration: 0.5s;
}
.final-step-content {
	padding: 2rem;
	text-align: center;
}
/* Enhanced Coupon Display Styles */
.modal-coupon-display {
    padding: 1rem;
    margin: 2rem 0;
}

.modal-coupon-box {
    background: var(--background-secondary);
    border: 2.5px dashed var(--accent-lightest);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Label Styling */
.modal-coupon-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.modal-coupon-label-text {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Status Badge */
.modal-coupon-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 100px;
    background: var(--background);
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-lighter);
    letter-spacing: 0.05em;
}

.modal-coupon-status.success {
    background: var(--accent-lightest);
    color: var(--accent);
}

/* Code Content */
.modal-coupon-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 60px;
}

/* Code Segments */
.modal-coupon-segments {
    font-family: -apple-system, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent);
	-webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
	cursor: default;
}
.gap-2 {
    gap: .5rem !important;
}

.py-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
}
.px-2 {
    padding-right: .5rem !important;
    padding-left: .5rem !important;
}
.align-items-center {
    align-items: center !important;
}
.rounded-pill {
    border-radius: 50rem;
}

.bg-opacity-10 {
    --bs-bg-opacity: 0.1;
}
.bg-white {
    --bs-bg-opacity: 1;
	background-color: #ffffff1a !important;
	border: 1px rgb(218, 220, 224) solid;
}


.text-center {
    text-align: center !important;
}
.primary-lightest {
	color: #01875f;
}
.modal-coupon-content.revealed .modal-coupon-segments {
    -webkit-user-select: text;
    user-select: text;
    -webkit-touch-callout: default;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.modal-coupon-obscured {
    display: flex;
    align-items: center;
}

.modal-coupon-visible {
    opacity: 0.9;
	position: relative;
    background: linear-gradient(260deg, var(--accent) 0%, transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: blur(1px);
    animation: modal-coupon-pulse 2s infinite;
}

.modal-coupon-hidden {
    position: relative;
    margin-left: 4px;
}

.modal-coupon-blur {
    position: relative;
    background: linear-gradient(90deg, var(--accent) 0%, transparent 60%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: blur(2px);
    animation: modal-coupon-pulse 2s infinite;
}

@keyframes modal-coupon-pulse {
    0%, 100% {
        filter: blur(2px);
        opacity: 0.7;
    }
    50% {
        filter: blur(3px);
        opacity: 0.5;
    }
}
.modal-coupon-visible,
.modal-coupon-hidden,
.modal-coupon-blur {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}
/* Copy Button */
.modal-coupon-copy {
    background: var(--background);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 0.5rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text);
    transition: all 0.2s ease;
    cursor: pointer;
	-webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    position: relative;
}
/* Add active state for mobile touch */
 
 
.modal-coupon-copy.copied {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
	pointer-events: none;
}
 
.modal-coupon-copy-default,
.modal-coupon-copy-success {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Corner Patterns */
.modal-coupon-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    opacity: 0.2;
	border-radius: 5px;
}

.modal-coupon-corner.left-top {
    top: 12px;
    left: 12px;
	border-left: 2px dashed var(--accent);
	border-top: 2px dashed var(--accent);
}

.modal-coupon-corner.right-top {
    top: 12px;
    right: 12px;
	border-right: 2px dashed var(--accent);
	border-top: 2px dashed var(--accent);
}

.modal-coupon-corner.left-bottom {
    bottom: 12px;
    left: 12px;
	border-left: 2px dashed var(--accent);
	border-bottom: 2px dashed var(--accent);
}

.modal-coupon-corner.right-bottom {
    bottom: 12px;
    right: 12px;
	border-right: 2px dashed var(--accent);
	border-bottom: 2px dashed var(--accent);
}

/* Animation for revealed code */
.modal-coupon-revealed {
    animation: modal-coupon-reveal 0.5s ease-out forwards;
}

@keyframes modal-coupon-reveal {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Hover Effects */
.modal-coupon-box:hover {
    border-color: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Dark Mode Adjustments */
[data-bs-theme="dark"] .modal-coupon-box {
    background: var(--background);
}

[data-bs-theme="dark"] .modal-coupon-status {
    background: var(--background-secondary);
}
.btn-get-code {
	background: var(--accent);
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 0.5rem;
	font-weight: 500;
	transition: all 0.3s ease;
	cursor: pointer;
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
}
a.btn-get-code {
	text-decoration: none;
}
.btn-get-code:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.loading-state {
	text-align: center;
	padding: 1rem;
}
.spinner-border {
	width: 18px;
	height: 18px;
}
.code-text {
	transition: all 0.3s ease;
}
.code-text.revealed {
	transform: scale(1.05);
}
.rating-btn {
    padding: 0.3rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-third);
    background: var(--background);
    border: 1px solid var(--border-light);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-btn:not(.disabled):hover {
    transform: scale(1.1);
    color: var(--accent);
}

.rating-btn.text-accent {
    background: var(--accent-lightest);
    border: 1px solid var(--accent);
    transform: scale(1.1);
}

.rating-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.rating-info {
    animation: fadeIn 0.3s ease-in;
    font-size: 0.72em;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.rating-title {
    font-weight: 500;
}

.rating-info {
    animation-duration: 0.3s;
}
.brand-rating-card {
    transition: all 0.3s ease;
}
.stars-container button {
    transform: scale(1);
    transition: all 0.2s ease;
    line-height: 0;
}
.stars-container button:hover {
    transform: scale(1.15);
}
.stars-container button:hover ~ button svg {
    stroke: var(--accent-lightest);
    fill: none;
}
.rating-message {
    animation: slideIn 0.3s ease;
    position: absolute;
    left: 0;
    bottom: -16px;
    width: 100%;
    font-size: 0.7rem;
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.rating-divider {
    font-size: 1.2em;
    line-height: 1;
}
.count {
	display: inline-flex;
}
.count.updating {
    animation: countUpdate 0.3s ease-in-out;
}
@keyframes countUpdate {
    0% { opacity: 0.5; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.5); color: var(--accent); }
    100% { opacity: 1; transform: scale(1); }
}
.icon-rotate {
	transform: rotate(-20deg);
}
.modal-remaining-count {
	font-size: 0.75rem;
}
[data-bs-theme=dark] .btn-close {
	filter: none;
}
.animate__bounceIn {
    animation-duration: 0.6s !important;
    animation-fill-mode: both;
}
.modal-body {
    transition: opacity 0.3s ease-out;
}
.code-text.revealed {
    animation: codeReveal 0.5s ease-out forwards;
}
@keyframes codeReveal {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.success-message .checkmark-circle {
    animation: successPop 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
@keyframes successPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.btn-get-code {
    animation: buttonPop 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
@keyframes buttonPop {
    0% {
        transform: scale(0.95);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}
.footer-wrapper {
    position: relative;
}
.footer-top {
	margin-bottom: 80px;
}
.footer-l-content {
	height: 100%;
}
.footer-logo {
    max-height: 40px;
    width: auto;
}
.social-icon-link {
    width: 36px;
    height: 36px;
	transition: all 0.2s ease;
    transition: all 0.3s ease;
}
.social-icon-link:hover {
    background: var(--accent) !important;
    color: white !important;
	transform: translateY(-2px);
}
.brand-link {
    transition: all 0.3s ease;
}
.brand-link:hover {
    transform: translateX(5px);
}
.brand-link:hover .brand-name {
    color: var(--accent);
}
.trust-feature {
    transition: all 0.3s ease;
}

.trust-feature:hover .feature-icon {
    background: var(--accent) !important;
}
.trust-feature:hover .feature-icon svg path {
    stroke: white;
}
.footer-title {
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}
.copyright-wrapper {	
	font-size: 0.8rem;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.brand-stats-grid .stat-card {
    transition: transform 0.2s ease;
}
.brand-stats-grid .stat-card:hover {
    transform: translateY(-2px);
}
.brand-tips ul li {
    position: relative;
    padding-left: 1.5rem;
}
.brand-tips ul li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
}
.pagination {
    gap: 0.5rem;
}

.pagination .page-link {
    border-radius: 50%;
	height: 28px;
	width: 28px;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	justify-content: center;
    margin: 0;
    border: 1px solid var(--border-light);
	color: var(--accent-lighter);
	background-color: var(--background-secondary);
	transition: all var(--transition-speed);
}
.page-item:first-child .page-link {
	border-radius: 50% 0 0 50%;
	transform: scale(0.7);
}
.page-item:last-child .page-link {
	border-radius: 0 50% 50% 0;
	transform: scale(0.7);
}
.page-item:first-child .page-link:hover, .page-item:last-child .page-link:hover {
	transform: scale(1);
}
.pagination .page-item.active .page-link, .pagination .page-item.active .page-link:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.pagination .page-item.disabled .page-link {
    opacity: 0.5;
}
.pagination .page-link:hover:not(.disabled) {
    background-color: var(--accent-color);
	color: var(--accent);
    border-color: var(--accent-lightest);
}
@media (max-width: 1024px) {
	html, body {
		overflow-x: hidden;
	}
	header {
		width: 100%;
		max-width: 100%;
	}
	.container-2xl {
		max-width: 100%;
		padding: 0 1rem;
	}
	.navbar-brand {
		margin: 0;
	}
	.coupon-row .row {
		row-gap: 1.5rem;
	}
	.coupon-row-pattern {
		width: 100%;
		height: 30%;
		opacity: 0.05;
	}
	.brand-page-container {
		flex-direction: column;
	}
	.brand-sidebar {
		width: 100%;
		height: auto;
		position: relative;
		top: 0;
	}
	.coupon-row .row {
		row-gap: 1rem;
	}
}
@media (max-width: 1024px) {
	.main-wrapper {
		flex-direction: column;
	}
	.sidebar {
		width: 100%;
		position: relative;
		top: 0;
		height: auto;
		border-right: none;
	}
	.swiper-button-prev,.swiper-button-next {
		display: none;
	}
	.coupon-card .card-title {
		font-size: 0.9rem;
	}
	.short-description-text {
		font-size: 0.65em;
	}
	.newest-coupon-content {
		align-items: center;
		flex-wrap: wrap;
		padding: 1rem;
		gap: 0;
	}
	.newest-info {
		padding-left: 8px;
	}
	.newest-action {
		width: 100%;
		padding-left: 0;
		padding-top: 0;
		margin-top: 12px;
		text-align: center;
		border: none;
		text-align: center;
	}
	.newest-brand-container {
		flex: 0 0 60px;
	}
	.newest-brand-logo,.newest-brand-placeholder {
		width: 60px;
		height: 60px;
	}
	.newest-action .coupon-code-container {
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
	}
	.newest-incentive, .newest-title {
		margin-bottom: 0 !important;
	}
	.newest-coupons-section::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 32px;
        background: linear-gradient(to right, transparent, var(--background));
        pointer-events: none;
        opacity: 0.8;
    }
	.newest-coupons-scroll {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
        margin-bottom: -1rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .newest-coupons-scroll::-webkit-scrollbar {
        display: none;
    }

    .newest-coupon {
        flex: 0 0 300px;
        scroll-snap-align: start;
    }
    .newest-meta {
        display: none !important;
    }
    .newest-brand-container {
        flex: 0 0 42px;
    }
    .newest-brand-logo,
    .newest-brand-placeholder {
        width: 42px;
        height: 42px;
    }

    .newest-title {
        font-size: 0.875rem;
    }
    .newest-coupon:hover {
        transform: none;
    }
	.hidden-code {
		right: -10px;
	}
	.coupon-incentive-inner {
		padding: 0.5rem 1rem;
		margin: 0;
	}
	.coupon-card-standard .incentive-content.p-3 {
		padding: 0.25rem 0 !important;
	}
	.coupon-card-standard  .incentive-text {
		font-size: 0.95rem;
		line-height: 1.3;
	}
	.coupon-card-standard .card-footer {
		display: none;
	}
	.coupon-brand-name {
		font-size: 0.75rem;
	}
	.badge {
		font-size: 0.65em;
		padding: 0.4em 0.7em;
		line-height: 1;
	}
	.btn-reveal {
		font-size: 0.75rem;
	}
	.footer {
		padding-top: 40px;
	}
	.footer-top {
		margin-bottom: 40px;
	}
	.featured-coupon-card {
        grid-template-columns: 100px 1fr;
        grid-template-rows: auto;
        min-height: 160px;
    }
    
    .featured-placeholder {
        min-height: 160px;
    }
    
    .featured-content {
        padding: 0.75rem;
    }
    
    .featured-brand {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }
    
    .featured-title {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    .featured-description {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .featured-incentive {
        padding: 0.25rem 0.5rem;
        margin-bottom: 0.5rem;
        font-size: 0.8rem;
    }
    
    .featured-footer {
        font-size: 0.75rem;
    }
    
    .featured-action-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
        margin-top: 0.5rem;
    }
    .featured-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.75rem;
        margin: 0.5rem;
    }
}
@media (max-width: 640px) {
	.modal-overlay {
		padding: 0.5rem;
	}
 
	.modal-header,.modal-body,.modal-footer {
		padding: 1rem;
		padding-bottom: 15x;
		padding-top:15px;
	}
	.stat-item {
		min-width: 33.333%;
	}
	.stat-value {
		font-size: 14px;
	}
	.code-section {
		padding: 1rem;
	}
	.code-display {
		padding: 0.5rem 1rem;
	}
	.banner-section {
		height: 112px;
	}
	.coupon-card .brand-logo-wrapper {
		height: 60px;
		width: 60px;
	}
	.footer-branding {
		text-align: center;
	}
	.footer-social {
		justify-content: center;
	}
}
@media (max-width: 480px) {
    .modal-coupon-segments {
        font-size: 1.5rem;
    }
    
    .modal-coupon-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modal-coupon-copy {
        width: 100%;
        justify-content: center;
    }
}
@media (min-width: 576px) and (max-width: 768px) {
    .newest-coupon {
        flex: 0 0 320px;
    }
}
@media (min-width: 480px) and (max-width: 768px) {
    .featured-coupon-card {
        grid-template-columns: 120px 1fr;
        min-height: 180px;
    }
    
    .featured-placeholder {
        min-height: 180px;
    }
    
    .featured-content {
        padding: 1rem;
    }
	
}
body.modal-open {
	overflow: hidden;
	position: fixed;
	width: 100%;
}
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
	-webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.modal-loader {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.modal-loader .spinner-border {
    width: 3rem;
    height: 3rem;
}
@media (max-width: 768px) {
	.container-2xl {
		padding-right: .5rem !important;
		padding-left: .5rem !important;
	}
	.btn-theme-switch svg {
		width: 20px;
		height: 20px;
	}
    .modal-overlay {
        padding: 0;
    }
 
    
    .modal-overlay[x-show="$store.couponModal.isOpen"] .coupon-modal {
        animation: slideInRight 0.3s ease-out;
    }
    .modal-overlay[x-show="$store.couponModal.isOpen"][closing] .coupon-modal {
        animation: slideOutRight 0.3s ease-out;
    }
    @keyframes slideInRight {
        from {
            transform: translateX(100%);
        }
        to {
            transform: translateX(0);
        }
    }
    @keyframes slideOutRight {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(100%);
        }
    }
	.modal-body {
        position: relative;
    }
	.modal-body.mb-s1 {
		padding-top: 20px;
	}
    .incentive-banner {
		width: 100%;
		padding: 1rem 2rem !important;
		justify-content: center;
		align-items: center;
	}
    .processing-content,
    .final-step-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 100%;
    }
	.btn-close.btn-modal-close {
		position: absolute !important;
		top: 12px;
		right: 12px;
		width: 28px;
		height: 28px;
	}
    .modal-footer {
		position: fixed;
		bottom: 0;
		z-index: 10;
		width: 100%;
		padding-top:22px;
    }
	.stat-value svg {
		width: 20px;
		height: 20px;
	}
	.modal-coupon-display, .modal-coupon-box {
		width: 100%;
	}
	.final-step-content, .processing-content {
		padding: 0;
	}
	.modal-coupon-display {
		margin-top: 1rem;
	}
	.modal-badges {
		margin-top: 12px;
	}
	.search-loader i {
		font-size: 0.8rem;
	}
	.brand-logo-container {
		width: 82px;
		height: 82px;
	}
	.brand-sidebar .brand-description {
		font-size: 0.85rem;
		text-align: center;
	}
	.brand-sidebar .stat-icon {
		margin: 0 !important;
	}
	.brand-sidebar .stat-value {
		margin: 0 !important;
	}
	.brand-sidebar .stat-card {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		justify-content: center;
	}
	.brand-sidebar .stat-card .stat-label {
		flex: 0 0 100%;
		width: 100%;
	}
	.brand-coupons-list .coupon-title {
		font-size: 1rem;
	}
	.brand-coupons-list .coupon-short-description {
		font-size: 0.75rem;
	}
	.brand-coupons-list .brand-coupon-incentive .coupon-incentive-inner {
		height: 118px;
	}
	.brand-coupons-list .coupon-meta {
		flex-direction: row !important;
		flex-wrap: wrap;
		gap: 0 !important;
	  }
	.coupon-meta-col {
		flex:  0 0 50%;
	}
	.brand-coupons-list .rating-badge {
		padding: 0 !important;
		background-color: transparent !important;
	}
	.brand-result-count {
		font-size: 0.8rem;
	}
}
@media (max-width: 575px) {
	.coupons-remaining {
		font-size: 11px !important;
	}
	.coupons-remaining-wrapper  {
		padding-left: 0.7rem !important;
		padding-right: 0.7rem !important;
	}
	.final-step-content {
		min-height: auto;
		padding-bottom: 12px !important;
		padding-top: 24px !important;
	}
	.final-step-content h4 {
		font-size: 1.1rem;
	}
	.reveal-subtitle {
		font-size: 0.9rem;
	}
	.rating-btn {
		padding: 0.2rem;
		border-radius: 50%;
		cursor: pointer;
		transition: all 0.3s ease;
		color: var(--text-third);
		background: var(--background);
		border: 1px solid var(--border-light);
		width: 28px;
		height: 28px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.rating-btn svg {
		width: 18px;
		height: 18px;
	}
	.rating-title {
		font-size: 0.8rem;
	}
	.modal-coupon-display {
		padding: 1rem 0;
	}
	.spinner-border {
		width: 16px;
		height: 16px;
	}
}
@media (max-width: 375px) {
	.modal-body.mb-s1 {
		padding-top: 2rem;
	}
	.stat-value {
		font-size: 0.9rem;
	}
	.coupons-remaining-wrapper  {
		padding-left: 0.35rem !important;
		padding-right: 0.35rem !important;
		width: 100%;
	}
	.coupons-remaining {
		font-size: 0.7rem !important;
		letter-spacing: -0.5px;
	}
	.coupons-remaining-wrapper svg {
		width: 14px;
		height: 14px;	
	}
	.card-body {
		padding: 1rem 0.5rem !important;
	}
	.modal-header {
	 
		padding-bottom: 2.4rem;
	}
 
	.header-m-con {
		padding-right: 30px;
	}
	.modal-header .brand-name {
		font-size: 0.7rem;
	}
	.modal-header .coupon-title {
		font-size: 0.95rem;
	}
	.modal-coupon-display {
		margin-top: 0;
	}
	.final-step-content {
		padding-top: 12px !important;
	}
}

.h-100 {
    height: 100% !important;
}

.w-100 {
    width: 100% !important;
}
.start-0 {
    left: 0 !important;
}
.top-0 {
    top: 0 !important;
}
.position-absolute {
    position: absolute !important;
}

.position-relative {
    position: relative !important;
}

.overflow-hidden {
    overflow: hidden !important;
}
.modal-header {
 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 1rem;
   
    padding-top: 15px;
	padding-bottom:  15px;
	border-bottom: 1px solid rgb(218, 220, 224);
	
}
.gap-3 {
    gap: 1rem !important;
}
.align-items-center {
    align-items: center !important;
}
.justify-content-between {
    justify-content: space-between !important;
}
.d-flex {
    display: flex !important
;
}


.product-image{
	text-align: center;
	padding-top:25px;
}


.go-move2 {
    animation: 1.75s ease-in-out infinite both game-button
}
@-webkit-keyframes game-button {

    0%,
    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }
}

@-moz-keyframes game-button {

    0%,
    to {
        -moz-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -moz-transform: scale(1.05);
        transform: scale(1.05)
    }
}

@keyframes game-button {

    0%,
    to {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -o-transform: scale(1.05);
        transform: scale(1.05)
    }
}

 
  
  .aa0 {
	max-width: 500px;
	padding: 0 0px;
	margin: 25px auto 32px
  }
  
  .aa0 .ah2 {
	flex-direction: column;
	display: flex;
	width: 100%;
	gap: 16px;
	justify-content: center;
	margin: 0 auto
  }
  
  .aa0 .ah2 .ah1 {
	line-height: 1;
	font-family: opensans, helvetica, arial, sans-serif;
	width: 100%;
	color: #111;
	cursor: auto;
	font-size: 18px;
	letter-spacing: -.5px;
	padding: 4px 0 4px 0;
	font-weight: 700
  }
  
  .aa0 .ah2 .ah1:last-of-type {
	font-size: medium;
	text-align: center
  }
  
  .aa0 .ah2 .ah0 {
	min-width: 250px;
	border: 1px solid #ccc;
	border-radius: 10.5px;
	padding: 16px 0 12px 0
  }
  
  .af9 {
	display: flex;
	flex-direction: column;
	min-height: 16px;
	gap: 2px;
	margin: 0;
	padding: 0 16px;
	color: #333;
	font-family: "Segoe UI Historic", "Segoe UI", Helvetica, Arial, sans-serif
  }
  
  .ag5 {
	display: flex;
	gap: 6px;
	position: relative
  }
  
  .af9 > .af7 > :not(.ag6,.ag8,.ag9):nth-child(n+2){
	margin-left: 44px
  }
  
  .af7 > :not(.ag6,.ag8,.ag9):nth-child(n+2){
	margin-left: 36px;
	padding-left: 4px
  }
  
  
  .af7 {
	display: flex;
	flex-direction: column;
	gap: 2px;
	position: relative
  }
  
  .af7 .ag5 img{
	cursor: pointer;
	border-radius: 50%;
	margin-top: 4px;
	position: relative;
	box-shadow: 0 0 0 3px #fff;
	z-index: 10
  }
  
  .af9 > .af7 :nth-child(1) img{
	height: 36px;
	width: 36px
  }
  
  .af9 > .af7 :nth-child(n+2) img{
	height: 28px;
	width: 28px
  }
  
  
  .ac2 {
	display: flex;
	flex-direction: column;
	z-index: 6
  }
  
  .ac2 .ac5 {
	width: fit-content;
	padding: 8px 12px;
	background: #f0f2f5;
	border-radius: 18px;
	text-align: start;
	padding-bottom: 2px;
  }
  
  .ac2 .ac4 {
	line-height: 16px;
	font-size: 13px;
	margin: 0;
	font-weight: 600;
	cursor: pointer;
	color: #080809
  }   
  
  .ac2 .ac1 {
	display: flex;
	column-gap: 16px;
	flex-wrap: wrap;
	padding: 4px 0 0 12px
  }
  
  .ac2 .ac1 u {
	font-size: 12px;
	text-decoration: none;
	color: #65676b
  }
  
  .ac2 .ac1 u:hover {
	text-decoration: underline;
	cursor: pointer
  }            
  
  .ac2 .ac1 :nth-child(2){
	font-weight: 700
  }  
  
  .ac2 .ac1 .ac0 {
	position: relative;
	top: -5px
  }
  
  .ac2 .ac1 .ac0>span {
	display: inline-block;
	position: relative;
	width: 18px;
	height: 18px;
	overflow: hidden;
	background-color: #fff;
	border-radius: 50%;
	background-repeat: no-repeat;
	box-shadow: 0 0 0 2px #fff;
	top: 4px
  }
  
  .ac2 .ac1 .ac0 :nth-child(n+2) {
	z-index: 1001
  }
  
  .ac2 .ac1 .ac0 :nth-child(n+3) {
	z-index: 1000;
	left: -6px
  }
  
  .ac2 .ac1 .ac0 :nth-child(n+4) {
	z-index: 999;
	left: -12px
  }
  
  .ac2 .ac3 {
	margin: 0;
	line-height: 21.3328px;
	font-size: 14px
  }
  
  .ag6{
	position: absolute;
	background-color: #F0F2F5;
	display: flex;
	width: 2px;
	top: 6px;
	left: 16px;
	z-index: 3
  }
  .ag7{
	position: relative;
	z-index: 6;
	color: #65686c;
	font-size: 15px;
	line-height: 20px;
	display: block;
	font-weight: 600;
	background-color: #fff;
	box-shadow: -4px 0 0 0 #fff;
	margin-bottom: 6px;
	text-decoration: none;
	cursor: pointer
  }
  .ag9{
	position: absolute;
	height: 32px;
	width: 48px;
	border: 2px solid #F0F2F5;
	border-radius: 10.5px;
	left:-28px;
	top:-16px;
	z-index:1
  }
  .af7 .af7 .af7 .ag9,
  .af7 .af7 .ag5 .ag9{
	left: -24px
  }
  .ag5 > .ag7 ~ .ag9 {
	top: -24px
  }            
  .ag8{
	position: absolute;
	height: 48px;
	width: 64px;
	background-color: #fff;
	border-radius: 10.5px;
	left: -26px;
	top: -31px;
	z-index: 2
  }
  .af7 .af7 .af7 .ag8,
  .af7 .af7 .ag5 .ag8{
	left: -22px
  }
  .ag5 > .ag7 ~ .ag8 {
	top: -39px
  }
  .ac2 .ac1 .ac0 .ab3 {
	background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M16.0001 7.9996c0 4.418-3.5815 7.9996-7.9995 7.9996S.001 12.4176.001 7.9996 3.5825 0 8.0006 0C12.4186 0 16 3.5815 16 7.9996Z' fill='url(%23paint0_linear_15251_63610)'/%3E%3Cpath d='M16.0001 7.9996c0 4.418-3.5815 7.9996-7.9995 7.9996S.001 12.4176.001 7.9996 3.5825 0 8.0006 0C12.4186 0 16 3.5815 16 7.9996Z' fill='url(%23paint1_radial_15251_63610)'/%3E%3Cpath d='M16.0001 7.9996c0 4.418-3.5815 7.9996-7.9995 7.9996S.001 12.4176.001 7.9996 3.5825 0 8.0006 0C12.4186 0 16 3.5815 16 7.9996Z' fill='url(%23paint2_radial_15251_63610)' fill-opacity='.5'/%3E%3Cpath d='M7.3014 3.8662a.6974.6974 0 0 1 .6974-.6977c.6742 0 1.2207.5465 1.2207 1.2206v1.7464a.101.101 0 0 0 .101.101h1.7953c.992 0 1.7232.9273 1.4917 1.892l-.4572 1.9047a2.301 2.301 0 0 1-2.2374 1.764H6.9185a.5752.5752 0 0 1-.5752-.5752V7.7384c0-.4168.097-.8278.2834-1.2005l.2856-.5712a3.6878 3.6878 0 0 0 .3893-1.6509l-.0002-.4496ZM4.367 7a.767.767 0 0 0-.7669.767v3.2598a.767.767 0 0 0 .767.767h.767a.3835.3835 0 0 0 .3835-.3835V7.3835A.3835.3835 0 0 0 5.134 7h-.767Z' fill='%23fff'/%3E%3Cdefs%3E%3CradialGradient id='paint1_radial_15251_63610' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='rotate(90 .0005 8) scale(7.99958)'%3E%3Cstop offset='.5618' stop-color='%230866FF' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%230866FF' stop-opacity='.1'/%3E%3C/radialGradient%3E%3CradialGradient id='paint2_radial_15251_63610' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='rotate(45 -4.5257 10.9237) scale(10.1818)'%3E%3Cstop offset='.3143' stop-color='%2302ADFC'/%3E%3Cstop offset='1' stop-color='%2302ADFC' stop-opacity='0'/%3E%3C/radialGradient%3E%3ClinearGradient id='paint0_linear_15251_63610' x1='2.3989' y1='2.3999' x2='13.5983' y2='13.5993' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2302ADFC'/%3E%3Cstop offset='.5' stop-color='%230866FF'/%3E%3Cstop offset='1' stop-color='%232B7EFF'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E")
  }
  
  .ac2 .ac1 .ac0 .ab2 {
	background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg clip-path='url(%23clip0_15251_63610)'%3E%3Cpath d='M15.9963 8c0 4.4179-3.5811 7.9993-7.9986 7.9993-4.4176 0-7.9987-3.5814-7.9987-7.9992 0-4.4179 3.5811-7.9992 7.9987-7.9992 4.4175 0 7.9986 3.5813 7.9986 7.9992Z' fill='url(%23paint0_linear_15251_63610)'/%3E%3Cpath d='M15.9973 7.9992c0 4.4178-3.5811 7.9992-7.9987 7.9992C3.5811 15.9984 0 12.417 0 7.9992S3.5811 0 7.9986 0c4.4176 0 7.9987 3.5814 7.9987 7.9992Z' fill='url(%23paint1_radial_15251_63610)'/%3E%3Cpath d='M7.9996 5.9081c-.3528-.8845-1.1936-1.507-2.1748-1.507-1.4323 0-2.4254 1.328-2.4254 2.6797 0 2.2718 2.3938 4.0094 4.0816 5.1589.3168.2157.7205.2157 1.0373 0 1.6878-1.1495 4.0815-2.8871 4.0815-5.159 0-1.3517-.993-2.6796-2.4254-2.6796-.9811 0-1.822.6225-2.1748 1.507Z' fill='%23fff'/%3E%3C/g%3E%3Cdefs%3E%3CradialGradient id='paint1_radial_15251_63610' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='matrix(0 7.9992 -7.99863 0 7.9986 7.9992)'%3E%3Cstop offset='.5637' stop-color='%23E11731' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23E11731' stop-opacity='.1'/%3E%3C/radialGradient%3E%3ClinearGradient id='paint0_linear_15251_63610' x1='2.3986' y1='2.4007' x2='13.5975' y2='13.5993' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FF74AE'/%3E%3Cstop offset='.5001' stop-color='%23FA2E3E'/%3E%3Cstop offset='1' stop-color='%23FF5758'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_15251_63610'%3E%3Cpath fill='%23fff' d='M-.001.0009h15.9992v15.9984H-.001z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E")
  }
  
  .ac2 .ac1 .ac0 .ab1 {
	background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg clip-path='url(%23clip0_15251_63610)'%3E%3Cpath d='M15.9953 7.9996c0 4.418-3.5816 7.9996-7.9996 7.9996S-.004 12.4176-.004 7.9996 3.5776 0 7.9957 0c4.418 0 7.9996 3.5815 7.9996 7.9996Z' fill='url(%23paint0_linear_15251_63610)'/%3E%3Cpath d='M15.9973 7.9992c0 4.4178-3.5811 7.9992-7.9987 7.9992C3.5811 15.9984 0 12.417 0 7.9992S3.5811 0 7.9986 0c4.4176 0 7.9987 3.5814 7.9987 7.9992Z' fill='url(%23paint1_radial_15251_63610)'/%3E%3Cpath d='M15.9953 7.9996c0 4.418-3.5816 7.9996-7.9996 7.9996S-.004 12.4176-.004 7.9996 3.5776 0 7.9957 0c4.418 0 7.9996 3.5815 7.9996 7.9996Z' fill='url(%23paint2_radial_15251_63610)' fill-opacity='.8'/%3E%3Cpath d='M12.5278 8.1957c.4057.1104.6772.4854.623.9024-.3379 2.6001-2.5167 4.9012-5.1542 4.9012s-4.8163-2.3011-5.1542-4.9012c-.0542-.417.2173-.792.623-.9024.8708-.237 2.5215-.596 4.5312-.596 2.0098 0 3.6605.359 4.5312.596Z' fill='%234B280E'/%3E%3Cpath d='M11.5809 12.3764c-.9328.9843-2.1948 1.6228-3.5841 1.6228-1.3892 0-2.6512-.6383-3.5839-1.6225a1.5425 1.5425 0 0 0-.016-.0174c.4475-1.0137 2.2-1.3599 3.5999-1.3599 1.4 0 3.1514.3468 3.5998 1.3599l-.0157.0171Z' fill='url(%23paint3_linear_15251_63610)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.3049 5.8793c.1614-1.1485-.6387-2.2103-1.7872-2.3717l-.0979-.0138c-1.1484-.1614-2.2103.6388-2.3717 1.7872l-.0163.1164a.5.5 0 0 0 .9902.1392l.0163-.1164c.0846-.6016.6408-1.0207 1.2424-.9362l.0978.0138c.6016.0845 1.0207.6407.9362 1.2423l-.0164.1164a.5.5 0 0 0 .9903.1392l.0163-.1164ZM2.6902 5.8793c-.1614-1.1485.6387-2.2103 1.7872-2.3717l.0979-.0138c1.1484-.1614 2.2103.6388 2.3717 1.7872l.0164.1164a.5.5 0 1 1-.9903.1392l-.0163-.1164c-.0846-.6016-.6408-1.0207-1.2423-.9362l-.098.0138c-.6015.0845-1.0206.6407-.936 1.2423l.0163.1164a.5.5 0 0 1-.9902.1392l-.0164-.1164Z' fill='%231C1C1D'/%3E%3C/g%3E%3Cdefs%3E%3CradialGradient id='paint1_radial_15251_63610' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='matrix(0 7.9992 -7.99863 0 7.9986 7.9992)'%3E%3Cstop offset='.5637' stop-color='%23FF5758' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23FF5758' stop-opacity='.1'/%3E%3C/radialGradient%3E%3CradialGradient id='paint2_radial_15251_63610' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='rotate(45 -4.5272 10.9202) scale(10.1818)'%3E%3Cstop stop-color='%23FFF287'/%3E%3Cstop offset='1' stop-color='%23FFF287' stop-opacity='0'/%3E%3C/radialGradient%3E%3ClinearGradient id='paint0_linear_15251_63610' x1='2.396' y1='2.3999' x2='13.5954' y2='13.5993' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FFF287'/%3E%3Cstop offset='1' stop-color='%23F68628'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint3_linear_15251_63610' x1='5.1979' y1='10.7996' x2='5.245' y2='14.2452' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FF60A4'/%3E%3Cstop offset='.2417' stop-color='%23FA2E3E'/%3E%3Cstop offset='1' stop-color='%23BC0A26'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_15251_63610'%3E%3Cpath fill='%23fff' d='M-.002 0h16v15.9992h-16z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E")
  }
  
  .ac2 .ac1 .ac0 .ab0 {
	background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg clip-path='url(%23clip0_15251_63610)'%3E%3Cpath d='M15.9972 7.9996c0 4.418-3.5815 7.9996-7.9996 7.9996-4.418 0-7.9996-3.5816-7.9996-7.9996S3.5796 0 7.9976 0c4.4181 0 7.9996 3.5815 7.9996 7.9996Z' fill='url(%23paint0_linear_15251_63610)'/%3E%3Cpath d='M15.9973 7.9992c0 4.4178-3.5811 7.9992-7.9987 7.9992C3.5811 15.9984 0 12.417 0 7.9992S3.5811 0 7.9986 0c4.4176 0 7.9987 3.5814 7.9987 7.9992Z' fill='url(%23paint1_radial_15251_63610)'/%3E%3Cpath d='M15.9972 7.9996c0 4.418-3.5815 7.9996-7.9996 7.9996-4.418 0-7.9996-3.5816-7.9996-7.9996S3.5796 0 7.9976 0c4.4181 0 7.9996 3.5815 7.9996 7.9996Z' fill='url(%23paint2_radial_15251_63610)' fill-opacity='.8'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.6144 10.8866c.159-1.8461 1.127-2.887 2.382-2.887 1.2551 0 2.2231 1.0418 2.3822 2.887.1591 1.8461-.7342 3.1127-2.3821 3.1127-1.648 0-2.5412-1.2666-2.3821-3.1127Z' fill='%234B280E'/%3E%3Cellipse cx='11.1978' cy='5.6997' rx='1.3999' ry='1.6999' fill='%231C1C1D'/%3E%3Cellipse cx='4.7979' cy='5.6997' rx='1.3999' ry='1.6999' fill='%231C1C1D'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.3528 3.166a1.4744 1.4744 0 0 0-1.8591-.3279.4.4 0 1 1-.3976-.6941c.9527-.5457 2.1592-.333 2.8678.5056a.4.4 0 0 1-.6111.5163ZM5.4998 2.8381a1.4744 1.4744 0 0 0-1.859.3278.4.4 0 0 1-.6111-.5162c.7085-.8387 1.915-1.0514 2.8677-.5057a.4.4 0 0 1-.3976.6941Z' fill='%23E0761A'/%3E%3C/g%3E%3Cdefs%3E%3CradialGradient id='paint1_radial_15251_63610' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='matrix(0 7.9992 -7.99863 0 7.9986 7.9992)'%3E%3Cstop offset='.5637' stop-color='%23FF5758' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23FF5758' stop-opacity='.1'/%3E%3C/radialGradient%3E%3CradialGradient id='paint2_radial_15251_63610' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='rotate(45 -4.5262 10.9226) scale(10.1818)'%3E%3Cstop stop-color='%23FFF287'/%3E%3Cstop offset='1' stop-color='%23FFF287' stop-opacity='0'/%3E%3C/radialGradient%3E%3ClinearGradient id='paint0_linear_15251_63610' x1='2.3979' y1='2.3999' x2='13.5973' y2='13.5993' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FFF287'/%3E%3Cstop offset='1' stop-color='%23F68628'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_15251_63610'%3E%3Cpath fill='%23fff' d='M-.002 0h15.9992v15.9992H-.002z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E")
  }
  
  @media (max-width: 450px) {
	.af9,.af7 {
	  gap: 6px
	}
	.ac2 .ac1 {
	  row-gap: 2px
	}
	.ac2 .ac1 u {
	  font-size: 14px
	}
	.ac2 .ac1 .ac0 {
	  position: relative;
	  top: -2px
	}
	.ac2 .ac1 .ac0>span {
	  width: 16px;
	  height: 16px;
	  box-shadow: 0 0 0 1.5px #fff;
	  top: 3px
	}
  }