/*============== HEADER ==============*/
.primary-header {
	width: 100%;
	position: relative;
	margin: 0 auto;
	background-position: bottom;
	background-repeat: no-repeat;
	border-bottom-left-radius: 200px;
	border-bottom-right-radius: 200px;
	box-sizing: border-box;
	font-family: Poppins, sans-serif;
}

.overlay {
	z-index: -1;
	width: 100%;
	position: absolute;
	top: 0;
	opacity: 0;

	-webkit-transition: opacity .5s;
	-moz-transition: opacity .5s;
	-ms-transition: opacity .5s;
	transition: opacity .5s;
}

.primary-header.loaded {
	background: rgba(0, 0, 0, 0.2);
}

.primary-header.loaded .overlay {
	opacity: 1;
	animation: animate-move-bg 30s;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
}

@keyframes animate-move-bg {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-200px);
	}
}

@media (max-width: 800px) {
	.primary-header {
		height: 700px;
		background-size: 172%;
		background-position: bottom left;
	}

	.overlay {
		height: 134%;
		width: auto;
	}
}

/*---------------SITE HEADER ----------*/

body {
	background: #fff
}

.primary-header .site-header {
	width: 100%;
	padding: 32px 108px;
	background: transparent;
	margin: 0 auto;
	box-shadow: none;
	position: initial;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.site-header.open {
	margin-top: 44px;
}

.site-header.nye-open {
	margin-top: 50px;
}

.site-header .logo {
	height: 50px;
	width: auto;
	transition: .2s transform;
	margin-right: 30px;
}

.site-header .logo:hover {
	transform: scale(1.1)
}

.site-header .logo-text {
	color: white;
	line-height: 20px;
	position: relative;
	top: 22px;
	left: -108px;
}

.site-header .get-app {
	display: flex;
	align-items: center;
}

.search-loader {
	top: 16px !important;
}

.get-app div {
	display: inline-block;
	font-size: 14px;
	line-height: 1.43;
	color: #FBFBFB;
	vertical-align: top;
}

.get-app .store-logo {
	cursor: pointer;
}

.store-logo img {
	height: 24px;
	width: 24px
}

.site-header .site-nav {
	font-family: 'Poppins', sans-serif;
	display: flex;
	align-items: center;
	gap: 32px;
	background-color: #2A0C8E;
	padding: 10px 24px;
	border-radius: 40px;
	flex-wrap: nowrap;
	white-space: nowrap;
}

.site-nav .site-links {
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	color: #FBFBFB;
}

.site-nav .nye-button {
	position: absolute;
	display: inline-block;
	padding: 10px 14px;
	color: #FFF;
	background: #1c003d;
	border-radius: 4px;
	font-weight: bold;
	margin-left: -100px;
	font-size: 14px;
	border: none;
	overflow: hidden;
	top: -4px;
	-webkit-animation: zoominout 2.5s ease-out infinite normal;
	animation: zoominout 2.5s ease-out infinite normal;
	-moz-animation: zoominout 2.5s ease-out infinite normal;;
}

@-webkit-keyframes zoominout {
	0% {
		-webkit-transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.2);
	}
	100% {
		-webkit-transform: scale(1);
	}
}

@-moz-keyframes zoominout {
	0% {
		-moz-transform: scale(1);
	}
	50% {
		-moz-transform: scale(1.2);
	}
	100% {
		-moz-transform: scale(1);
	}
}

@keyframes zoominout {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}

.site-nav .nye-button::before {
	position: absolute;
	content: "";
	width: 40px;
	height: 100%;
	z-index: 10;
	background: linear-gradient(
			to right,
			rgba(255, 255, 255, 0.13) 0%,
			rgba(255, 255, 255, 0.63) 40%,
			rgba(255, 255, 255, 0.63) 60%,
			rgba(255, 255, 255, 0.13) 100%
	);
	-webkit-animation: shimmereffect 2.5s infinite;
	animation: shimmereffect 2.5s infinite;
	animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	top: 0;
}

.site-nav .nav-arrow {
	vertical-align: middle;
}

.site-nav .business-link {
	display: none;
	background: #fff;
	min-width: 150px;
	position: absolute;
	top: 50px;
	border-radius: 4px;
	z-index: 1;
	box-shadow: 0 3px 8px 0 rgb(0 0 0 / 12%);
}

.site-nav .about-link {
	display: none;
	background: #fff;
	min-width: 150px;
	position: absolute;
	border-radius: 4px;
	z-index: 1;
	box-shadow: 0 3px 8px 0 rgb(0 0 0 / 12%);
	text-transform: capitalize;
}

.business-link:after, .about-link:after {
	bottom: 100%;
	left: 50%;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border: 8px solid transparent;
	border-bottom-color: #fff;
	margin-left: -8px;
	z-index: 1;
}

.site-nav .mp-about {
	display: inline-block;
}

.site-nav .mp-about:hover {
	display: block;
}

.site-nav .mp-business {
	display: inline-block;
}

.site-nav .mp-business:hover .business-link {
	top: auto;
	display: block;
}

.site-nav .mp-about:hover .about-link {
	top: auto;
	display: block;
}

.business-link .links {
	padding: 12px 8px;
	font-size: 12px;
	display: block;
	transition: 1s all;
	float: none;
}

.about-link .links {
	padding: 12px 8px;
	font-size: 12px;
	display: block;
	transition: 1s all;
	float: none;
}

.business-link .links:hover {
	background: #eee;
}

.business-link .links:first-child:hover {
	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
}

.business-link .links:last-child:hover {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

.about-link .links:hover {
	background: #eee;
}

.about-link .links:first-child:hover {
	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
}

.about-link .links:last-child:hover {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

.links .link-arrow {
	float: right;
	padding-top: 6px;
	width: 6px;
}

.site-nav a.highlight {
	padding: 10px 12px;
	border: 1px solid #fcfcfc;
	border-radius: 4px;
}

.primary-header .home-login-popup {
	display: inline-block;
	margin-left: 8px;
}

.primary-header .login-cta {
	display: flex;
	font-size: 16px;
	background: #ef1c71;
	border: 1px solid #E8E8E8;
	border-radius: 8px;
	padding: 4px 8px 4px 8px;
	color: #FFFFFF;
	line-height: 24px;
	font-weight: 600;
	cursor: pointer;
}

@media (max-width: 1200px) {
	.primary-header .site-header {
		padding: 32px 60px;
	}

	.site-header .site-nav {
		gap: 20px;
		padding: 8px 16px;
	}

	.site-header .logo {
		margin-right: 10px;
	}

	.site-nav .site-links {
		font-size: 14px;
	}

	.primary-header .home-login-popup {
		margin-left: 8px;
	}

	.primary-header .login-cta {
		font-size: 14px;
		line-height: 20px;
	}
}

@media (max-width: 1000px) {
	.primary-header .site-header {
		padding: 32px;
	}

	.site-header .site-nav {
		gap: 12px;
		padding: 8px 12px;
	}

	.site-nav .site-links {
		font-size: 12px;
	}

	.get-app div {
		font-size: 12px;
	}

	.site-header .logo {
		margin-right: 0;
		height: 35px;
		width: auto;
	}

	.primary-header .login-cta {
		font-size: 12px;
		line-height: 18px;
	}
}

@media (max-width: 800px) {
	.primary-header .site-header {
		padding: 8px;
		display: flex;
	}

	.site-header.open {
		margin-top: 62px;
	}

	.site-header.open-job {
		margin-top: 66px;
	}

	.site-header .get-app {
		float: none;
		vertical-align: middle;
		margin: auto 8px auto auto;
	}

	.site-header .logo {
		height: 32px;
	}

	.logo-holder .logo {
		height: 35px;
		margin-left: 20px;
	}

	.primary-header .home-login-popup {
		display: inline-block;
		padding: 16px 0;
	}

	.primary-header .logo-holder {
		display: block;
		text-align: center;
	}

	.primary-header .login-cta {
		display: inline-block;
		font-size: 14px;
		font-weight: 500;
		color: #ffffff;
		margin-left: 8px;
	}
}

/*---------------- MOBILE HEADER ------------*/

.mobile-header {
	width: 100%;
	height: 210px;
	position: relative;
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: auto;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
	font-family: Poppins, sans-serif;
}

.mobile-header .home-header-section {
	width: 100%;
	position: relative;
	text-align: center;
	padding: 40px 16px;
}

.mobile-header .home-header-section h1 {
	font-size: 14px;
	color: white;
	line-height: 20px;
	margin: 42px auto 32px;
	font-weight: 500;
}

.mobile-header .home-header-section h1 span {
	color: #EF1C74;
}

.home-header-section .home-login-popup {
	position: absolute;
	top: 16px;
	right: 16px;
}

.home-header-section .logo-holder {
	position: absolute;
	top: 16px;
	left: 16px;
}

.home-header-section .header-bg-img {
	width: 100%;
	min-height: 170px;
}

.home-header-section .mgp-logo-white {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	top: 56px;
}

.mobile-header .location-container {
	position: absolute;
	top: 0;
	max-width: 60%;
}

.home-header-section .header-title {
	line-height: 24px;
	font-size: 14px;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	font-weight: bold;
}

.mobile-header .login-cta {
	background-color: #ef1c74;
	padding: 4px 12px;
	top: 16px;
	right: 22px;
	border-radius: 4px;
	line-height: 16px;
	font-size: 12px;
	color: white;
}

.mobile-header .search-bar-holder {
	height: 40px;
	border-radius: 12px;
	box-shadow: 0 3px 8px rgb(0 0 0 / 20%);
	position: absolute;
	width: calc(100% - 56px);
	margin-left: 28px;
	margin-right: 28px;
	z-index: 100;
	bottom: 60px;
	background: white;
}

.search-bar-holder .home-search-bar {
	height: 40px;
	border: none;
	padding-left: 42px;
	background: url('https://static.magicpin.com/samara/static/images/search.svg') no-repeat scroll 12px 50%;
	width: 100%;
}

.mobile-header .stick-home-search-bar {
	position: fixed;
	box-shadow: none;
	top: 150px;
	height: 58px;
	width: 100%;
	margin-left: 0;
	border-radius: 0;
}

.mobile-header .sticky-header {
	background: linear-gradient(#240a7a, #2e108e);
	display: none;
	position: fixed;
	z-index: 101;
	width: 100%;
	height: 56px;
	top: 0;
	justify-content: space-between;
	padding: 8px 20px;
}

.company-details-holder .company-logo {
	height: 24px;
}

.company-details-holder .sticky-header-title {
	font-weight: 700;
	color: white;
	line-height: 16px;
	font-size: 10px;
	text-align: center;
}

/*---------------- HEADER FORM -------------*/

.primary-header .header-content {
	width: 100%;
	font-size: 48px;
	line-height: 56px;
	text-align: center;
	margin: 0 auto;
	max-width: 1400px;
}

.header-content h1 {
	font-size: 36px;
	color: white;
	line-height: 44px;
	margin: 32px auto;
	font-weight: 800;
}

.header-content h1 span {
	color: #ef1c74;
}

.header-content .home-search {
	width: 100%;
}

.home-search .header-search {
	margin: 0 auto;
	line-height: 0;
	display: flex;
	justify-content: center;
	height: 50px;
}

.header-search .search-location,
.header-search .search-query {
	display: inline-block;
	position: relative;
	border-radius: 0;
}

.header-search .search-location {
	border-right: 1px solid rgba(0, 0, 0, 0.12);
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.header-search .search-query {
	margin-left: 0;
	border-radius: 0;
}

.header-search input,
.header-search button {
	display: inline-block;
	background: white;
	border: none;
	padding: 12px 8px;
	font-size: 16px;
}

.header-search .search-button {
	color: #ef1c74;
	background: #fff;
	cursor: pointer;
	text-align: center;
	padding: 12px 16px 12px 20px;
	height: auto;
	margin-left: 0;
	font-size: 16px;
	border: 1px solid;
	border-radius: 4px;
	width: 170px;
	font-weight: 600;
}

.header-search .search-button:hover {
	background: #cd0b5b
}

.search-location input.location {
	width: 200px;
	background: url('https://static.magicpin.com/samara/static/images/location.svg') no-repeat scroll 16px 12px;
	background-size: 24px;
	padding-left: 48px;
}

.search-query input.query {
	width: 550px;
	background: url('https://static.magicpin.com/samara/static/images/search.svg') no-repeat scroll 16px 12px;
	padding-left: 42px;
}

.search-location .location-holder {
	position: absolute;
	top: 0;
	left: 0;
	background: white;
	height: 100%;
	width: 100%;
	border-radius: 8px 0 0 8px;
}

.location-holder .selected-location {
	width: 100%;
	height: 100%;
	background: url('https://static.magicpin.com/samara/static/images/location.svg') no-repeat scroll 16px 12px;
	background-size: 24px;
	padding: 12px 16px 16px 48px;
	font-size: 16px;
	line-height: 24px;
	cursor: pointer;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	text-align: left;
	border: 0;
}

.search-location .search-location-results,
.search-query .search-query-results {
	width: 100%;
	background: white;
	position: absolute;
	left: 0;
	top: 52px;
	z-index: 1000;
	list-style: none;
	max-height: 500px;
	overflow: auto;
	border-radius: 8px;
}

.search-location-results li,
.search-query-results li {
	text-overflow: ellipsis;
	padding: 12px;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	font-size: 14px;
	line-height: 18px;
	border-bottom: 1px solid #ECEEF4;
	color: #3e5561;
	position: relative;
	text-align: left;
}

.search-query-results li .query-item-description {
	font-size: 12px;
	color: #637e8c;
}

.search-location-results li:hover,
.search-query-results li:hover {
	background: #ECEEF4;
}

.search-query-results li:hover {
	background: white;
}

@media (max-width: 800px) {
	.primary-header .header-content {
		width: 100%;
	}

	.header-content .header-search {
		width: 100%;
	}

	.header-content h1 {
		font-size: 50px;
	}

	.header-search .search-location,
	.header-search .search-query {
		width: 80%;
		margin: 0 auto;
	}

	.header-search .search-query {
		margin-top: 16px;
	}

	.header-search input.location,
	.search-location .location-holder,
	.header-search input.query {
		width: 100%;
		overflow: hidden;
		font-size: 16px;
	}

	.header-search .search-button {
		margin: 16px 0;
		font-size: 20px;
		width: 80%;
		border-radius: 4px;
		border: none
	}

	.location-holder .selected-location {
		background-size: 24px;
	}

	.search-location .search-location-results,
	.search-query .search-query-results {
		max-height: 286px;
	}

	.header-search .search-location,
	.header-search .search-query {
		border-radius: 4px;
	}
}

/*------------- Categories -----------*/

.header-content .header-categories {
	margin: 50px auto 100px;
	line-height: 20px;
	display: flex;
	justify-content: center;
	position: relative;
	top: 85px;
	z-index: 2;
}

.header-categories .header-category {
	display: flex;
	width: 144px;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	line-height: 20px;
	cursor: pointer;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 1px;
	color: rgba(0, 0, 0, 0.87);
	margin: 0 8px;
}

.header-category .category-logo {
	width: 110px;
	height: 110px;
	background-color: white;
	border-radius: 50%;
	box-shadow: 0 3px 8px 0 rgba(0, 0, 0, .24);
	padding: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
}

/*================== LOWEST-PRICE-MESSAGE ===========*/
.lowest-price-container {
	width: 100%;
	display: flex;
	justify-content: center;
}

.lowest-price-container .underline-container {
	width: fit-content;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 10px;
	background: #F6F6FB;
	font-family: Poppins, sans-serif;
}

.lowest-price-container .underline-container .lowest-price-message {
	font-size: 40px;
	line-height: 44px;
	font-weight: 600;
	color: #3716A8;
}

.lowest-price-container .underline-container .custom-underline {
	height: 2px;
	width: 100%;
	background: linear-gradient(90deg, #3816A800 0%, #3716A8 50%, #3716A800 100%);
}

@media (max-width: 1000px) {
	.lowest-price-container .underline-container .lowest-price-message {
		font-size: 32px;
		line-height: 48px;
	}

	.lowest-price-container .underline-container .custom-underline {
		height: 2px;
	}
}

@media (max-width: 700px) {
	.lowest-price-container .underline-container .lowest-price-message {
		font-size: 16px;
		line-height: 24px;
	}

	.lowest-price-container .underline-container .custom-underline {
		height: 1px;
	}
}

/*================== CONTENT ===========*/

.home-content {
	width: 100%;
	position: relative;
	background: #F6F6FB;
}

.home-content .content {
	width: 100%;
	white-space: nowrap;
	padding-top: 40px;
}

.arrow-holder .arrow-left,
.arrow-holder .arrow-right {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	cursor: pointer;
	background: #fff;
	padding: 10px;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .12);
	z-index: 1;
	border-radius: 50%;
}

.arrow-holder .arrow-left {
	left: -14px;
}

.arrow-holder .arrow-right {
	right: -14px;
}

.home-content .nye-content {
	position: absolute;
	width: 90%;
	height: 176px;
	background-color: #1c003d;
	border-radius: 8px;
	overflow: hidden;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transform: translate(-50%, -50%);
	text-align: center;
	padding-top: 32px;
	left: 50%;
	top: 34px;
	z-index: 1000;
}

.home-content .diwali-banner-holder {
	height: 380px;
	width: 80%;
	position: relative;
	display: block;
	margin: -20px auto auto;
}

.diwali-banner-holder .diwali-banner {
	height: 100%;
	width: 100%;
}

.diwali-banner-holder .banner-info {
	position: absolute;
	z-index: 1;
	top: 40%;
	right: 15%;
	width: 42%;
}

.banner-info .banner-cta {
	display: inline-block;
	color: #fff;
	padding: 16px 48px;
	background: #ef1c74;
	margin-top: 40px;
	border-radius: 4px;
	font-weight: 500;
}

.banner-info .info-heading {
	font-size: 24px;
	font-weight: 500;
	color: #fff;
	line-height: 28px
}

.nye-content .know-more::before {
	position: absolute;
	content: "";
	width: 40px;
	height: 100%;
	z-index: 10000;
	background: linear-gradient(
			to right,
			rgba(255, 255, 255, 0.13) 0%,
			rgba(255, 255, 255, 0.63) 40%,
			rgba(255, 255, 255, 0.63) 60%,
			rgba(255, 255, 255, 0.13) 100%
	);
	-webkit-animation: shimmereffect 2.5s infinite;
	animation: shimmereffect 2.5s infinite;
	animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	top: 1px;
}


@keyframes shimmereffect {
	0% {
		left: -40px;
	}
	100% {
		left: 100%;
	}
}

@-webkit-keyframes shimmereffect {
	0% {
		left: -40px;
	}
	100% {
		left: 100%;
	}
}

.nye-content .nye-header {
	width: 100%;
	height: 24px;
	font-family: Roboto, sans-serif;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 10px;
	color: #fff;
	margin-top: 0;
}


.nye-content .nye-subheader {
	width: 100%;
	height: 20px;
	font-family: Roboto sans-serif;
	font-size: 16px;
	line-height: 1.25;
	text-align: center;
	color: #fff;
	margin-bottom: 25px;
}

.nye-content .know-more {
	border-radius: 4px;
	background-color: #fff;
	overflow: hidden;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: .8px;
	color: #1c003d;
	border: none;
	padding: 12px 28px;
	position: relative;
}

@media (max-width: 800px) {
	.home-content .nye-content {
		width: 80%;
		height: 127px;
		padding-top: 16px;
		top: 2px;
		transform: translate(-50%, -25%);
	}

	.nye-content .nye-header {
		height: 15px;
		font-size: 16px;
	}

	.nye-content .nye-subheader {
		font-size: 12px;
	}

	.nye-content .know-more {
		font-size: 12px;
		padding: 8px 12px;
	}

	.home-content .diwali-banner-holder {
		width: 96%;
		height: auto;
		margin-top: -52px;
	}

	.banner-info .info-heading {
		font-size: 12px;
		font-weight: 500;
		color: #fff;
		line-height: 1.4;
	}

	.banner-info .banner-cta {
		display: inline-block;
		color: #fff;
		padding: 6px 18px;
		background: #ef1c74;
		margin-top: 8px;
		border-radius: 4px;
		font-weight: 500;
		font-size: 12px;
	}

	.diwali-banner-holder .banner-info {
		position: absolute;
		z-index: 1;
		top: 40%;
		right: 2%;
		width: 56%;
	}

	.diwali-banner-holder .diwali-banner {
		height: auto
	}
}

.content .scroll-holder {
	width: 100%;
	display: inline-block;
	overflow: hidden;
}

.content .content-holder {
	width: 100%;
	padding: 24px 0;
	overflow: hidden;
	clear: both;
}

.content .content-header-container {
	width: 1136px;
	margin: 0 auto;
	padding: 0 8px;
}

.content-header-container .content-header {
	font-size: 28px;
	line-height: 24px;
	text-align: left;
	padding-bottom: 8px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.content-header-container .content-subheader {
	font-size: 16px;
	line-height: 20px;
	text-align: left;
	color: rgba(0, 0, 0, 0.54);
}

.content-header-container .view-more {
	display: inline-block;
	float: right;
	color: #ef1c74;
	padding: 10px 16px;
	border-radius: 4px;
	font-weight: 500;
	background: #fff
}

.content-header-container .view-more:hover {
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
	background: rgba(255, 255, 255, 0.63);
}

@media (max-width: 800px) {
	.content .content-header {
		font-size: 16px;
		font-weight: bold;
		text-align: left;
		padding: 0;
	}

	.content .content-subheader {
		font-size: 12px;
		text-align: left;
		padding-bottom: 12px;
		white-space: initial;
	}

	.content .content-holder {
		padding-top: 0;
		padding-bottom: 4px;
	}

	.home-content .content {
		padding-bottom: 0;
	}

	.content .scroll-holder {
		width: 100%;
	}

	.content .content-header-container {
		width: 100%;
	}

	.content-header-container .view-more {
		font-size: 12px;
		margin-right: 0;
		background: transparent;
	}
}

/* Save the local Banner */
.home-content .save-the-local-banner {
	width: 1136px;
	display: block;
	margin: 64px auto 0;
}

.save-the-local-banner .banner {
	width: 100%;
	border-radius: 8px;
}

@media (max-width: 800px) {
	.home-content .save-the-local-banner {
		width: 96%;
		margin-top: 36px;
	}
}

/*--------- Collections ------------*/

.home-content .collections {
	background-color: #fff;
	height: auto;
	padding-top: 64px;
	overflow: hidden;
	position: relative;
}

.collections .content-holder {
	justify-content: center;
	width: 1136px;
	margin: 0 auto
}

.collections .arrow-holder {
	width: 1136px;
	position: relative;
	margin: 0 auto;
}

.collections .collection {
	width: 240px;
	height: 140px;
	border-radius: 8px;
	position: relative;
	display: inline-block;
	background-size: cover;
	background: url('https://lh3.googleusercontent.com/7Cq0-eLHZwKDsOw6LpA8wNaxntdkrQZeF17-UZEPBv5k-L64HDM_SaVPilIU0iNC5Rwk24ukb5OHQ8aN4ovchbWAuPdOyksAFhVbVDNX') no-repeat center;
	margin: 0 8px;
	cursor: pointer;

	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	transition: all .5s;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
	vertical-align: top;
}

.collections .collection:hover {
	box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.12);
	transform: scale(1.02)
}

.collection .collection-image {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 8px;
}

.collection .overlay-holder,
.collection .details-holder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 8px;
}

.collection .overlay-holder {
	background-color: rgba(0, 0, 0, 0.4);
}

.collection .details-holder {
	z-index: 1;
	display: inline-flex;
	justify-content: center;
	flex-direction: column;
}

.collection h3 {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	color: #ffffff;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.8);
}

.collection h5 {
	font-size: 14px;
	line-height: 1.43;
	text-align: center;
	color: #ffffff;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.8);
}

@media (max-width: 800px) {
	.collection h3 {
		font-size: 16px;
	}

	.collections .content-holder {
		width: auto;
	}

	.collections .arrow-holder {
		width: auto
	}

	.home-content .collections {
		padding-bottom: 0;
		padding-top: 36px;
	}

	.collections .collection {
		margin: 0 8px;
	}
}

/*------------------ Localities ---------*/

.localities {
	width: 100%;
}

.localities .content-holder {
	display: flex;
	justify-content: center;
}

.localities .locality {
	flex: 1;
	cursor: pointer;
	margin: 0 16px;
	width: 300px;
}

.locality .banner-holder {
	height: 180px;
}

.locality .banner {
	width: 100%;
	background: #e5e5e5;
	opacity: 0;
	border-radius: 4px;

	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	transition: all .5s;
}

.locality .banner-holder.loaded .banner {
	opacity: 1;
}

.banner-holder.loaded .banner:hover {
	transform: scale(1.1)
}

.locality:hover .banner {
	box-shadow: 0 4px 8px 0 rgba(62, 85, 97, 0.8);
}

.locality h3 {
	font-size: 20px;
	text-align: center;
	color: #3e5561;
	margin-top: 16px;
}

.locality h5 {
	font-size: 14px;
	line-height: 1.43;
	color: #637e8c;
	text-align: center;
}

@media (max-width: 800px) {
	.localities .content-holder {
		display: block;
		overflow: auto;
	}

	.localities .locality {
		display: inline-block;
		width: 280px;
		margin: 0 8px;
	}
}

/*------------- Blogs ---------*/

.home-content .blogs {
	width: 100%;
	text-align: center;
	position: relative;
	vertical-align: top;
	padding-top: 64px;
}

.home-content .extra-padding {
	padding-top: 90px;
}

.blogs .arrow-holder {
	width: 1136px;
	display: inline-block;
	position: relative;
	margin: 0 auto;
}

.blogs .blog {
	width: 350px;
	cursor: pointer;
	margin: 0 8px;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
	border-radius: 8px;
	display: inline-block;
	transition: .2s all;
	vertical-align: top;
}

.blogs .blog:hover {
	box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.12);
}

.blog .banner-holder {
	height: 180px;
	object-fit: fill;
	background: #e5e5e5;
	overflow: hidden;
	border-top-right-radius: 8px;
	border-top-left-radius: 8px;
}

.banner-holder .banner {
	height: 100%;
	opacity: 0;

	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	transition: all .5s;
}

.banner-holder.loaded .banner {
	opacity: 1;
}

.blog .blog-details {
	width: 100%;
	padding: 12px 16px;
	height: 60px;
	overflow: hidden;
	background: #fff;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

.blog-details h3 {
	width: 100%;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.33;
	color: rgba(0, 0, 0, 0.87);
	white-space: normal;
	display: block;
	height: 38px;
	overflow: hidden;
}

@media (max-width: 800px) {
	.blogs .arrow-holder {
		width: 100%;
	}

	.blogs .blog {
		width: 280px;
		margin: 0 8px;
	}

	.blog .blog-details {
		height: 52px;
	}
}

/*------------------ Deals ---------*/

.deals {
	width: 100%;
	text-align: center;
}

.deals .arrow-holder {
	width: 1136px;
	display: inline-block;
	position: relative;
	margin: 0 auto;
}

.deals .deal {
	width: 250px;
	cursor: pointer;
	margin: 0 8px;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
	border-radius: 8px;
	display: inline-block;
	vertical-align: top;
}

.deals .deal:hover {
	box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.12);
}

.deal .banner-holder {
	height: 158px;
	object-fit: fill;
	background: #e5e5e5;
	overflow: hidden;
	position: relative;
	border-top-right-radius: 8px;
	border-top-left-radius: 8px;
}

.banner-holder .banner {
	height: 100%;
	opacity: 0;

	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	transition: all .5s;
}

.banner-holder.loaded .banner {
	opacity: 1;
}

.deal .merchant-details {
	width: 100%;
	padding: 4px 6px 6px 4px;
	position: relative;
	background: white;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

.deal .merchant-details .merchant-logo {
	position: absolute;
	top: 0;
	left: 50%;

	height: 40px;
	width: 40px;

	border-radius: 4px;

	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 20;
}

.deal .merchant-details h3 {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.25;
	text-align: center;
	color: rgba(0, 0, 0, 0.87);
	margin-top: 28px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.deal .merchant-details h5 {
	font-size: 14px;
	line-height: 1.43;
	text-align: center;
	color: rgba(0, 0, 0, 0.87);
	margin-bottom: 8px;
}

.deal .merchant-details h6 {
	display: block;
	display: -webkit-box;
	height: 48px;
	width: 228px;
	font-size: 14px;
	line-height: 1.43;
	text-align: center;
	color: rgba(0, 0, 0, 0.54);
	padding: 4px;
	white-space: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin: 0 auto;
}

@media (max-width: 800px) {
	.deals .arrow-holder {
		width: 100%;
	}

	.deals .deal {
		margin: 0 8px;
	}
}

/*---------Highlights-------------------*/

.home-content .highlights {
	width: 100%;
	text-align: center;
}

.highlights .arrow-holder {
	width: 1136px;
	display: inline-block;
	position: relative;
	margin: 0 auto;
}

@media (max-width: 800px) {
	.highlights .arrow-holder {
		width: 100%;
	}
}

/*--------Popular-cuisines---------------*/

.home-content .popular-cuisines {
	overflow: hidden;
	width: 100%;
	text-align: center;
}

.popular-cuisines .arrow-holder {
	width: 1136px;
	display: inline-block;
	position: relative;
	margin: 0 auto;
	text-align: left;
}

.content-holder .cuisine-card {
	display: inline-block;
	margin: 0 8px;
	width: 200px;
	height: 242px;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
	vertical-align: top
}

.content-holder .cuisine-card:hover {
	box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.12);
}

.cuisine-card .cuisine-container {
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.cuisine-card .cuisine {
	height: 100%;
	border-radius: 8px;
}

.cuisine-card img {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	border: solid 2px #ffffff;
	transition: 0.5s all
}

.cuisine-card img:hover {
	transform: scale(1.1)
}

.cuisine-card h3 {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.33;
	color: #ffffff;
}

.cuisine-card h4 {
	font-size: 14px;
	line-height: 1.43;
	color: #ffffff;
}

@media (max-width: 800px) {
	.popular-cuisines .arrow-holder {
		width: 100%;
	}

	.content-holder .cuisine-card {
		margin: 0 8px;
	}
}

/*------------------ Vouchers ---------*/

.vouchers {
	width: 100%;
	text-align: center;
}

.vouchers .arrow-holder {
	width: 1136px;
	display: block;
	position: relative;
	margin: 0 auto;
	text-align: left;
}

.arrow-holder .slick-prev,
.arrow-holder .slick-next {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	cursor: pointer;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.24);
	padding: 10px;
	z-index: 1
}

.arrow-holder .slick-prev {
	left: -14px;
}

.arrow-holder .slick-next {
	right: -14px;
}

.vouchers .voucher {
	width: 250px;
	cursor: pointer;
	margin: 0 8px;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
	border-radius: 8px;
	display: inline-block;
	background: #fff;
	float: left;
	vertical-align: top;
	padding: 0
}

.vouchers .slick-slide {
	width: 268px;
}

.vouchers .voucher:hover {
	box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.12);
}

.vouchers .banner-holder {
	height: 158px;
	object-fit: fill;
	background: #e5e5e5;
	overflow: hidden;
	position: relative;
	border-top-right-radius: 8px;
	border-top-left-radius: 8px;
}

.banner-holder .banner {
	opacity: 0;
	width: 100%;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	transition: all .5s;
	display: block;
}

.banner-holder.loaded .banner {
	opacity: 1;
}

.banner-holder .voucher-banner {
	opacity: 1;
	width: 100%;
	height: 100%;
}

.voucher .voucher-merchant-details {
	width: 100%;
	padding: 12px 16px 12px 64px;
	position: relative;
}

.voucher-merchant-details.super-saver h5 {
	padding-left: 0;
}

.voucher .voucher-merchant-details .merchant-logo {
	position: absolute;
	top: 28px;
	left: 16px;
	height: 40px;
	width: 40px;
	border-radius: 2px;
	border: solid 1px #e5e5e5;
	z-index: 20;
}

.voucher-merchant-details.super-saver .merchant-logo {
	top: auto;
}

.voucher .voucher-merchant-details h3 {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.25;
	color: rgba(0, 0, 0, 0.87);
	overflow: hidden;
	text-overflow: ellipsis;
}

.voucher .voucher-merchant-details h5 {
	font-size: 14px;
	line-height: 1.43;
	color: rgba(0, 0, 0, 0.87);
	overflow: hidden;
	text-overflow: ellipsis;
	text-transform: capitalize;
}

.voucher .voucher-details {
	width: 100%;
	padding: 0 16px 12px;
	position: relative;
}

.voucher-details h3 {
	font-size: 14px;
	line-height: 1.43;
	color: rgba(0, 0, 0, 0.54);
}

.voucher-details h3 .voucher-price {
	color: rgba(0, 0, 0, 0.54);
	font-weight: bold;
}

.voucher-details h5 {
	font-size: 14px;
	line-height: 1.43;
	color: rgba(0, 0, 0, 0.54);
}

.voucher-details .voucher-off {
	position: absolute;
	right: 16px;
	top: 50%;
	border: none;
	border-radius: 2px;
	background-color: #00ACB7;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.43;
	color: #ffffff;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media (max-width: 800px) {
	.vouchers .arrow-holder {
		width: 100%;
	}

	.vouchers .voucher {
		margin: 0 8px;
	}

	.vouchers .voucher:first-child {
		margin-left: 8px;
	}

	.vouchers .slick-slide {
		width: 284px;
	}
}

/*----------- App Content ----------*/

.home-content .app-content {
	background-color: #338aed;
	width: 100%;
	height: 400px;
	text-align: center;
	padding: 124px;
	margin-top: 60px;
}

.app-content .content-wrapper {
	margin: 0 auto;
	width: 600px;
	padding-right: 200px;
	position: relative;
}

.content-wrapper .app-shot {
	position: absolute;
	right: -70px;
	top: -176px;
	height: 428px;
}

.content-wrapper h2 {
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 1px;
	color: #ffffff;
	margin-bottom: 16px;
}

.content-wrapper h3 {
	font-size: 16px;
	line-height: 1.25;
	text-align: center;
	color: #ffffff;
	margin-bottom: 20px;
}

.content-wrapper .app-links {
	margin: 16px 0;
}

.app-links img {
	margin: 0 8px;
}

@media (max-width: 800px) {
	.home-content .app-content {
		padding: 16px;
		height: 320px;
	}

	.app-content .content-wrapper {
		width: 100%;
		padding-right: 100px;
	}

	.content-wrapper h2 {
		font-size: 16px;
	}

	.content-wrapper .app-shot {
		height: 200px;
		top: 16px;
		right: 0;
	}

	.app-links img {
		width: 120px;
	}
}

/*------------- Brands Linking --------------*/
.brands-linking {
	background: #fff;
	width: 66%;
	margin: 0 auto;
	display: block;
	padding-bottom: 16px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -106px;
	box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.12);
	border-radius: 8px;
	z-index: 1
}

.brands-linking .content {
	width: 50%;
	display: inline-block;
	padding: 8px;
	text-align: center;
	float: left;
	margin-top: 20px;
	cursor: pointer;
}

.brands-linking .content:first-child {
	border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.content .content-heading {
	color: #ef1c74;
	padding-top: 16px;
	font-weight: bold;
	display: block;
}

.content .brands-logo {
	height: 40px;
	width: 40px;
	margin: 2px;
}

.content .content-description {
	white-space: normal;
	font-size: 12px;
	color: rgba(0, 0, 0, 0.54);
	line-height: 1.4;
	padding: 8px 32px;
}

.content .link-arrow {
	width: 40px;
}

@media (max-width: 800px) {
	.brands-linking {
		height: auto;
		bottom: -130px;
		padding-bottom: 0;
		width: 80%;
	}

	.brands-linking .content {
		width: 100%;
		margin-top: 8px;
		text-align: left;
		position: relative;
		padding: 8px 16px;
	}

	.content .content-heading {
		padding-top: 0;
	}

	.content .content-description {
		width: 80%;
		padding: 12px 0;
	}

	.content .link-arrow {
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%)
	}

	.brands-linking .content:first-child {
		border-right: none;
		border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	}
}

/* ----- Home Page Download Section ------*/

.home-content .download-section {
	font-family: Poppins, sans-serif;
	height: 130px;
	width: 100%;
	background-size: cover;
	position: relative;
	margin-top: 40px;
}

.download-section .download-mp {
	color: rgba(0, 0, 0, 0.87);
	text-align: center;
	padding-top: 40px;
	padding-bottom: 16px;
	font-size: 18px;
}

.download-mp span {
	font-weight: bold;
}

.download-section .download-description {
	font-size: 28px;
	text-align: center;
	font-weight: bold;
}

.download-section .description-detail {
	text-align: center;
	font-size: 18px;
	padding: 16px 0 0;
}

.download-section .category-holder {
	position: relative;
	display: block;
	margin: 40px auto;
	width: 50%;
	background-color: #fff;
	border-radius: 50px;
	text-align: center;
	border: 1px solid #ECEEF4;
}

.category-holder .category {
	display: inline-block;
	width: 18%;
	margin: 12px 0;
}

.category-holder .category:hover {
	font-weight: bold;
}

.category .category-image {
	width: 34px;
	height: 34px;
	transform: scale(1.5);
}

.category .category-name {
	padding-top: 4px;
	color: rgba(0, 0, 0, 0.54);
}

.download-section .download-app-links {
	text-align: center;
	margin-top: 28px;
}

.download-app-links .app-image {
	width: 120px;
	margin: 0 16px;
}

@media (max-width: 800px) {
	.home-content .download-section {
		width: 100%;
		height: 130px;
	}

	.home-content .stick-home-discover-strip {
		width: 100%;
		position: fixed;
		z-index: 50;
		box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
		background: white;
		top: 56px;
	}

	.download-section .category-holder {
		width: 92%;
		height: 72px;
		margin: 24px auto;
	}

	.download-section .download-mp {
		font-size: 16px;
		padding-top: 32px;
		padding-bottom: 10px;
	}

	.download-mp .link {
		color: #458eff;
	}

	.download-section .download-description {
		font-size: 24px;
	}

	.download-section .description-detail {
		font-size: 16px;
		padding: 10px 0;
	}

	.category-holder .category {
		margin: 14px 0;
	}

	.category .category-name {
		font-size: 12px;
	}

	.category .category-image {
		height: 24px;
	}

	.download-section .download-app-links {
		margin-top: 20px;
	}

	.download-app-links .app-image {
		width: 120px;
		margin: 0 8px;
		height: 34px;
	}
}

/* ---------- Download Link Provider ----------- */

.download-link-container .info-text {
	font-size: 16px;
	text-align: center;
}

.download-link-container .download-links {
	text-align: center;
	margin-top: 24px;
	position: relative;
}

.download-links .country-code {
	width: 50px;
	text-align: center;
	height: 40px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	font-weight: bold;
	border-right: none;
}

.download-links .mobile-number {
	width: 250px;
	padding-left: 12px;
	height: 40px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-left: none;
}

.download-links .mobile-number:focus {
	border: 1px solid #458eff;
}

.download-links .send-btn {
	width: 90px;
	height: 40px;
	border: none;
	background: #ef1c74;
	color: #fff;
	padding: 10px 12px;
	cursor: pointer;
	margin-left: 20px;
	border-radius: 4px;
}

.download-links .errorText {
	position: absolute;
	bottom: -16px;
	left: 38%;
	font-size: 12px;
	text-align: center;
	color: red;
}

@media (max-width: 800px) {
	.download-link-container .download-links {
		margin-top: 8px;
	}

	.download-links .errorText {
		left: 8%;
	}

	.download-links .country-code {
		width: 10%;
		padding-left: 0;
	}

	.download-links .mobile {
		width: 56%;
	}

	.download-links .send-btn {
		width: 18%;
	}
}

.site-footer {
	padding-top: 180px;
}

::-webkit-scrollbar {
	width: 0;
	background: transparent;
}

/* ------ Video Popup -------- */
.video-popup-overlay {
	display: none;
	position: fixed;
	z-index: 1000;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.8);
}

.video-popup-overlay .popup-close {
	position: absolute;
	top: 8px;
	right: 8px;
	cursor: pointer;
	background: #000;
	padding: 6px;
	border-radius: 50%;
}

.video-popup-overlay .video-popup {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 720px;
	width: 1080px;
	z-index: 1000000;
	border-radius: 4px;
	background: #000000;
}

@media (max-width: 800px) {
	.video-popup-overlay .video-popup {
		width: 100%;
		height: 450px;
	}
}

/* Wallet Balance  */
.home-login-popup .wallet-balance-holder {
	border-radius: 12px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wallet-balance-holder .wallet-balance-profile {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.wallet-balance-profile .wallet-balance-coin {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FFFFFF;
	border-radius: 12px;
	border: 1px solid #e8e8e8;
	padding: 7px 7px 7px 11px;
}

.wallet-balance-holder.pro .userProfilePic {
	height: 40px;
	border-radius: 8px;
}

.home-login-popup .wallet-balance-holder.pro {
	margin-top: 0;
	height: auto;
	background: none;
	border-radius: 0;
}

.home-login-popup .wallet-menu-balance-holder {
	display: flex;
	align-items: center;
	gap: 12px;
}

.wallet-balance-holder.pro .magic-pro {
	height: 40px;
}

.home-login-popup .tooltipContainer {
	position: relative;
	cursor: pointer;
}

.tooltipContainer .homeTooltipText {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	width: 210px;
	height: 40px;
	border-radius: 4px;
	border: 0.4px solid rgba(239, 28, 116, 0.3);
	background: linear-gradient(90deg, #2E108E, #EF1C74);
	color: white;
	line-height: 16px;
	font-size: 14px;
	top: 122%;
	left: -32%;
	animation: moveUpDown 5s linear 0s infinite;
	-webkit-animation-fill-mode: both;
	-webkit-animation-duration: 10s;
}

.tooltipContainer .homeTooltipText::after {
	content: "";
	position: absolute;
	bottom: 100%;
	left: 76%;
	border-width: 10px;
	border-style: solid;
	border-color: transparent transparent rgba(239, 28, 116, 0.8) transparent;
}

.homeTooltipText .magicCoin {
	height: 12px;
	width: 12px;
	margin-left: 2px;
	margin-right: 9px;
}

.homeTooltipText .closeIcon {
	height: 16px;
	width: 16px;
}

.wallet-balance-holder .user-profile-pic {
	height: 36px;
	width: 38px;
	border-radius: 8px;
	border: 1px solid #FBFCFD;
}

.user-profile-pic.default {
	background: #ffffff;
}

.wallet-balance-holder .points-info {
	display: inline-block;
	color: #333333;
	font-size: 16px;
	vertical-align: middle;
	font-weight: 600;
	line-height: 20px;
}

.wallet-balance-holder .coin-icon {
	width: 20px;
	height: 20px;
	vertical-align: middle;
	margin-left: 2px;
}

@media (max-width: 800px) {
	.tooltipContainer .homeTooltipText {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		width: 184px;
		height: 30px;
		border-radius: 2px;
		background: #ef1c71;
		color: #fff;
		line-height: 16px;
		font-size: 12px;
		left: -12%;
		animation: moveUpDown 5s linear 0s infinite;
		-webkit-animation-fill-mode: both;
		-webkit-animation-duration: 10s;
	}

	.homeTooltipText .closeIcon {
		margin-left: 2px;
	}

	.homeTooltipText .magicCoin {
		margin-right: 0;
	}

	.tooltipContainer .homeTooltipText::after {
		content: "";
		position: absolute;
		bottom: 100%;
		left: 60%;
		border-width: 6px;
		border-style: solid;
		border-color: transparent transparent #ef1c71 transparent;
	}

	.home-login-popup .wallet-balance-holder.pro {
		margin-right: 0;
	}

	.home-login-popup .wallet-balance-holder {
		margin-top: 0;
		margin-left: 0;
		border-radius: 20px 0 0 20px;
		display: inline-block;
		padding-bottom: 1px;
		padding-top: 1px;
	}

	.wallet-balance-holder .user-profile-pic {
		height: 24px;
		width: 24px;
		right: -16px;
		top: -6px;
	}

	.wallet-balance-profile .wallet-balance-coin {
		padding: 3px 7px 3px 11px;
		border-radius: 8px;
	}

	.wallet-balance-holder .points-info {
		font-size: 12px;
		line-height: 16px;
		font-weight: 600;
	}

	.wallet-balance-holder .coin-icon {
		width: 16px;
		height: 16px;
	}

	.sticky-header .wallet-balance-holder .user-profile-pic {
		height: 24px;
		width: 24px;
		right: 45%;
		transform: translateX(50%);
		top: -20px;
		border: none;
	}

	.sticky-header .wallet-balance-holder .points-info {
		font-size: 10px;
		line-height: 12px;
		margin-bottom: 2px;
		font-weight: 600;
	}

	.sticky-header .wallet-balance-holder .coin-icon {
		width: 10px;
		height: 10px;
		margin-bottom: 2px;
	}

	.sticky-header .wallet-balance-holder {
		height: 18px;
		background: linear-gradient(270deg, #ef1c74, #2e108e);
		margin-top: 24px;
		margin-right: 0;
		margin-left: 0;
		border-radius: 20px;
		display: inline-block;
		padding-right: 10px;
		padding-bottom: 1px;
		padding-top: 1px;
		border: 0.5px solid rgba(94, 11, 45, 0.8);
	}

	.sticky-header .login-cta {
		margin-top: 8px;
	}

}

.home-content .deal-of-the-day-banner {
	padding: 0 12px;
}

@media (min-width: 800px) {
	#link-provider {
		height: 80px;
	}

	.widgetHolder.recommendedWidget {
		width: 70%;
		margin: auto;
	}
}

@media (max-width: 800px) {
	#mobile-location-holder-react {
		height: 48px;
	}
}

.header-categories .discovery-container {
	max-width: 100%;
	padding: 16px;
}

.discovery-container .discovery-row {
	display: flex;
	gap: 16px;
	flex-wrap: nowrap;
	overflow-x: auto;
	padding: 10px;
	overflow-y: hidden;
}

.discovery-row .discovery-card {
	flex: 0 0 auto;
}

.discovery-card .discovery-image {
	width: 160px;
	height: 112px;
	object-fit: cover;
	border-radius: 20px;
}

.discovery-card .discovery-link {
	display: inline-block;
	transition: transform 0.3s ease;
	cursor: pointer;
}

.discovery-card .discovery-link:hover {
	transform: scale(1.10);
}

.discovery-card .discovery-link:active {
	transform: scale(0.95);
}

.discovery-container .more-items-wrapper {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.5s ease, opacity 0.5s ease;
}

.discovery-container .more-items-wrapper.open {
	max-height: 1000px;
	opacity: 1;
}

@media (max-width: 800px) {
	.discovery-container {
		background: #F6F6FB;
	}

	.discovery-container .discovery-row {
		flex-wrap: wrap;
		overflow-x: visible;
		gap: 16px;
		padding: 0 0 20px 0;
	}

	.discovery-row .discovery-card {
		flex: 0 0 calc(50% - 8px);
		box-sizing: border-box;
	}

	.discovery-card .discovery-image {
		width: 100%;
		height: auto;
		border-radius: 23px;
	}

	.view-more-mobile {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 4px;
		border-radius: 8px;
		padding: 4px 16px;
		background: #EBEBFF;
		color: #6561E8;
		font-weight: 600;
		font-size: 14px;
		border: none;
		cursor: pointer;
		width: 100%;
		height: 36px;
		line-height: 20px;
		margin-top: -16px;
		font-family: Poppins, sans-serif;
	}

	.view-more-mobile .view-more-arrow {
		width: 16px;
		height: 16px;
		font-size: 20px;
		font-weight: 600;
	}
}

@media (min-width: 801px) {
	.view-more-mobile {
		display: none;
	}
}