* {
	box-sizing: border-box;
}
:root {
 --primaryColor: #6F33AF;
 --primaryBlack: #000000;
 --whiteColor: #FFFFFF;
 --purpleColor: #562382;
 --lightGray: #DCDCDC;
 --secondaryPurple: #793DC9;
 --defaultColor:rgba(14, 14, 14, 1);
}
a {
	text-decoration: none;
}
ul, ol {
	margin: 0;
	padding: 0;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
}
p {
	margin: 0;
}
.clear {
	clear: both;
}
body {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	background: var(--whiteColor);
}
.container {
	width: 90%;
	margin: 0 auto;
}
@media only screen and (max-width:1025px){
   .container { width: 96%;}
}
.container::after {
	content: "";
	display: table;
	clear: both;
}

header {
	background: #fff;
	display: flex;
	align-content: space-between;
	align-items: center;
	padding: 12px 6%;
}
header .col-md-3 {
	width: 250px;
}
header .col-md-2 {
	width: 150px;
}
header .col-md-3 img {
	max-width: 100%;
}
header .col-md-7 {
	width: calc(100% - 400px);
}

.search-box {
	width: 90%;
	background: #fafafa; border:1px solid #ccc;
	border-radius: 5px;
	position: relative;
	margin: 0 5%;
}
.search-box::after {
	content: ' ';
	display: block;
	clear: both;
}
.search-box input {
	font-size: 16px;
	width: calc(94% - 30px);
	float: left;
	padding: 12px 2%;
	border: 0;
	background: none;
	outline: none;
}
.search-box i {
	color:#DE2A1B;
	line-height: 22px;
	font-size: 22px;
	width: 30px;
	height: 30px;
	position: absolute;
	top: 10px;
	right: 2px;
}
#divResult{
 z-index:5000; background:#fff; position:absolute; width:100%; top:41px; margin-left:0px;
}
@media only screen and (max-width:600px){
    header { padding: 12px 0%; flex-wrap: wrap;}
    header .col-md-7 {
        display: block;
        width: 100%;
    }
    .search-box {width: 96%; margin: 0 2%;}
}
.display_box{padding:4px;border-top:solid 1px #eee;display:block;font-size:12px;height:auto; color:#666; border-radius:3px;}
.display_box:hover{ background:#f1f1f1; color:#333; cursor:pointer;}
.display_box .searchimgfunc{float:left;margin-right:6px;
border:1px solid #fff;padding:2px; border-radius:3px;}
.display_box .name{float:left;font-size:17px;padding:10px; color:#666;}
.hot-link {
	padding: 10px 0;
	display: block;
	color: #DE2A1B;
	font-weight: 500;
	border: 1px solid #DE2A1B;
	text-align: center;
	border-radius: 5px;
}
nav {
	background-color: #fafafa; border-top:1px solid #eee;
	-moz-box-shadow: 0 1px 2px rgba(48,48,48,.1);
	-ms-box-shadow: 0 1px 2px rgba(48,48,48,.1);
	-webkit-box-shadow: 0 1px 2px rgba(48,48,48,.1);
	box-shadow: 0 1px 2px rgba(48,48,48,.1);
	position: relative;
	z-index: 999;
	display: flex;
	justify-content: space-between;
	align-content: center;
	padding: 0 6%;
}
nav ul li {
	display: inline-block;
	margin-right: 30px;
}
nav ul li a {
	font-size: 14px;
	font-weight: 700;
	color: #666;
	display: block;
	line-height: 30px;
	padding: 7px 0;
}
nav ul li a:hover {
	color: #303030;
}
nav ol li {
	display: inline-block;
	margin-left: 30px;
}
nav ol li a {
	font-size: 14px;
	font-weight: 500;
	color: #666;
	display: block;
	line-height: 30px;
	padding: 7px 0;
}
@media only screen and (max-width:1025px){
    nav {padding: 0 2%;}
}
.mobile-nav {
	display: none
}
@media only screen and (max-width: 600px) {
    header .col-md-2 { display:none;} 
    nav {
        display: none;
        position: absolute;
        z-index: 1001;
        right: 0;
        top: 85px;
        width: 300px;
        flex-wrap: wrap;
        height: 100vh;
        align-content: flex-start;
    }
    .mobile-nav{ display:block;
        position: absolute;
        top: 25px;
        right: 10px;
        font-size: 28px;}
        nav ul li {
        	display: block;
        	margin-right: 0px;
        }
        nav ol li {
        	display:block;
        	margin-left: 0px;
        }
}

.bg-yellow {
	background: #b9aaee;
}
.bg-red {
	background: #29166F;
}
.slider-section {
	display: flex;
	justify-content: space-between;
	align-content: center;
	margin-top: 30px;
}
.slider-section img {
	max-width: 100%;
	border-radius: 5px;
}
.slider-section .col-sm-6 {
	width: 100%;
	min-height: 350px;
}
.slider-section .col-sm-6 ul {}
.slider-section .col-sm-3 {
	width: 24%;
	position: relative;
}
.percentage-curve {
	position: absolute;
	top: 20px;
	right: 0;
	background: var(--orange);
	color: #fff;
	padding: 10px 20px;
	font-weight: 700;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.percentage-title {
	font-size: 17px;
	display: block;
	width: 100%;
	color: #333;
	font-weight: 700;
	margin-top: 20px;
}
.slider-section .col-sm-6 .slide {
	position: relative;
}
.percentage-title-2 {
	position: absolute;
	bottom: 10px;
	left: 20px;
	background: rgba(0,0,0,0.8);
	color: #fff;
	padding: 10px;
	border-radius: 25px;
}
.slide {
	position: relative;
}
.slider-section .col-sm-3 .percentage-title {
	bottom: 80px;
}
.slide-logo {
	text-align: center;
}
.slide-logo a {
	text-align: center;
	display: block;
}
.slider-store-box {
	padding: 20px;
}
.slider-store-box b {
	display: block;
}
.coupon-title {
	font-size: 14px;
	color: #666;
	margin: 10px 0 5px 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.no-of-coupons {
	color: #E42E34;
	margin-top: 5px;
	font-size: 14px;
}
.heading-with-link {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}
.heading-with-link a {
	font-size: 18px;
	color: #E42E34;
	font-weight: 400;
	text-decoration: underline;
}
.main-home {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 50px;
}
.home-coupon {
	width: calc(25% - 20px);
	border: 1px solid #ddd;
	border-radius: 2px;
	padding: 20px;
	display: flex;
	justify-content: normal;
	align-items: start;
	flex-direction: column;
}
.home-coupon .store-logo {
	text-align: center;
	margin: 20px auto;
}
.home-coupon .store-logo img {
	max-width: 100%;
}
.hom-coupon-detail {
	width: 100%;
}
.home-coupon .percentage-value {
	font-weight: 800;
	font-size: 17px;
	color: #E42E34;
	margin-bottom: 10px;
	text-transform: capitalize;
	white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-coupon .store-name {
	color: #000;
	font-size: 15px;
	font-weight: 600;
}
.home-coupon .store-name a {
	color: #000;
}
.home-coupon .coupon-title {
	font-size: 14px;
	color: #666;
	width: 100%;
	height: 70px;
	margin-top: 10px;
	overflow: hidden;
}

@media screen and (max-width: 600px) {
.heading-with-link a { display:none;}
.home-coupon {
	width: calc(100% - 0px);
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 10px;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-direction: row;
}
.home-coupon .store-logo {
	text-align: center;
	margin: 0px 0;
	width: 100px;
}
.hom-coupon-detail {
	width: calc(96% - 120px);
}
.home-coupon .coupon-title {
	height: auto;
	margin-bottom: 5px;
}
}
.home-coupon .verified-code img {
	float: left;
	margin-right: 5px;
}
.home-coupon .verified-code {
	font-size: 13px;
}
.home-coupon .cta-button-cat {
	margin-top: 20px;
	text-align: center;
}
.home-coupon .cta-button-cat a {
	background: #E42E34;
	color: #fff;
	display: inline-block;
	cursor: pointer;
	padding: 10px 0;
	width: 100%;
	border-radius: 2px;
}
.get-unlimited-coupons {
	background: #29166F;
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-top: 150px;
	height: 250px;
	padding: 0 10%;
}
.guc-content {
	width: 50%;
	color: #fff;
}
.guc-img {
	width: 50%;
}
.guc-title {
	font-size: 44px;
	font-weight: 800;
}
.guc-txt {
	font-weight: 300;
	margin-top: 10px;
}
.guc-btn span {
	display: block;
	text-align: center;
	width: 230px;
	background: #fff;
	color: #29166F;
	cursor: pointer;
	font-weight: 800;
	padding: 15px 20px;
	margin-top: 15px;
	border-radius: 25px;
}
@media only screen and (max-width: 600px) {
    .get-unlimited-coupons {
    	background: #29166F;
    	position: relative;
    	display: flex;
    	justify-content: space-around;
    	align-items: center;
    	margin-top: 50px;
    	height:auto;
    	padding: 20px 2%;
    	flex-wrap: wrap;
    }
    .guc-title {
    	font-size:30px; text-align: center;
    	font-weight: 800;
    }
    .guc-content {width: 100%;} .guc-img {width: 100%;} .guc-img img{ max-width:100%;}
    .guc-btn span { margin-right:auto; margin-left:auto;}
    
}
.st-fe-12 {
}
.fe-store {
	display: block;
	width: 25%;
	padding: 5px 1%;
	border: 1px solid #fff;
	float: left;
	background: #fce8e9;
}
.fe-store-logo {
	width: 100px; height:100px; display:flex; justify-content:center; align-items:center;
	float: right; border: 1px solid #eee;
	border-radius: 100%; background:#fff; overflow:hidden;
}
.fe-store-logo img {
	max-width: 100%;
	
}
.fe-store-detail {
	width: calc(100% - 120px);
	float: left;
	color: #333;
	margin-top: 20px;
}
.fe-store-detail span {
	display: block;
	color: #E42E34;
	font-size: 14px;
	margin-top: 5px;
	font-weight: 400;
}
@media only screen and (max-width: 600px) {
    .st-fe-12{ display:flex; justify-content:space-between; align-items:stretch; flex-wrap:wrap;}
    .fe-store {width:98%; padding: 5px 1%;}
}
.products {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
	margin-top: 10px;
}
.product {
	width: 21.7%;
	border: 2px solid #eee;
	padding: 20px 1% 10px 1%;
	margin-bottom: 20px;
}
.product-title {
	font-size: 16px;
	  display: -webkit-box;
  -webkit-line-clamp: 2;    
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-img {
	margin: 20px 0 10px 0;
	text-align: center;
}
.product-img img {
	max-width: 100%;
}
.offer-sticker {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.percentage-off {
	width: 60px;
	height: 60px;
	background: #29166F;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.freeshipping img {
	max-width: 120px;
}
.price-tag {
	margin-top: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.price-tag .newprice {
	font-size: 28px;
	color: #ED1E24;
	font-weight: 700;
}
.product-link-btn {
	margin-top: 20px;
}
.get-product {
	background: #E42E34;
	color: #fff;
	text-align: center;
	font-size: 18px;
	padding: 8px 0;
	cursor: pointer;
	border-radius: 2px;
}
footer {
	background: #FAFAFA;
	margin-top: 70px;
	border-top: 1px solid #eee;
}
.copyright {
	background: #E42E34;
	color: #fff;
	text-align: center;
	padding: 15px 0;
}
.footer-flex {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	padding: 50px 0;
}
.col-md-5fn {
	width: 30%;
}
.footer-widget {
	width: 65%;
}
@media screen and (max-width: 600px) {
    .footer-flex {flex-wrap: wrap-reverse;}
    .col-md-5fn {
    	width:100%;
    }
    .footer-widget {
    	width:100%;
    }
}
.col-md-5fn .simple-heading {
	font-size: 20px;
	font-weight: 400;
	color: #333;
	text-align: center;
	margin-bottom: 20px;
}
.col-md-5fn form input {
	background-color: #fff;
	color: #000;
	float: left;
	width: 45%;
	font-size: 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 12px 1.5%;
	margin-right: 1%;
}
 .col-md-5fn form input:placeholder {
color: #000;
}
.col-md-5fn form input[type="button"] {
	padding: 12px 00px;
	width: 90%;
	color: #ffffff;
	cursor: pointer;
	background-color: #E42E34;
	border: none;
	font-weight: 600;
	text-transform: uppercase;
	font-family: Manrope, sans-serif;
}
.col-md-5fn p {
	margin: 15px 0px;
	font-size: 14px;
	color: #666;
}
.footer-widget {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
.footer-heading {
	margin: 0px 0px 15px;
	font-size: 18px;
	color: #E42E34;
}
.footer-links li {
	list-style: none;
	float: left;
	line-height: 22px;
	width: 100%;
	margin: 0px 0px 12px;
}
.footer-links li a {
	color: #666;
	font-size: 14px;
}
.footer-widget .widget {
	float: right;
	width: 33%;
	padding: 0px 0px 0px 0;
	margin: 0px 0px 0;
}
@media screen and (max-width: 600px) {
    .footer-widget { flex-wrap:wrap;}
    .footer-widget .widget { width:50%;}
}
.about-content {
	padding: 50px 0;
	color: #666;
	line-height: 28px;
}
.about-content h2 {
	margin: 10px 0;
	color: #333;
}
.about-content h3 {
	margin: 10px 0;
	color: #333;
}
.categories h1 {
	font-weight: 800;
	margin-top: 50px;
	font-size: 28px;
	text-align: center;
	margin-bottom: 10px;
}
.categories h2 {
	font-weight: 800;
	margin-bottom: 30px;
	text-align: center;
}
.categories-page {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}
@media only screen and (max-width: 600px) {
    .categories h1 {margin-top:10px;}
    .categories-page { grid-template-columns: repeat(2, 1fr); gap:10px;}
    
}
.category-box-5 {
	border: 1px solid #ddd;
	border-radius: 3px;
	padding: 5px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
}
.category-img-5 img {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	border: 2px solid #eee;
}
.category-name-5 {
	text-align: left;
}
.category-name-5 a {
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	color: #666;
}
.cate-list-page {
	margin-top: 50px;
}
.flex-store {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0;
}
.store-logo-b {
	width: 120px;
}
.store-logo img {
	max-width: 100%;
	border: 1px solid #eee;
	border-radius: 5px;
}
.store-content {
	width: calc(100% - 200px);
}
.store-content h1 {
	font-size: 28px;
}
.sub-content p {
	color: #666;
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
}
@media screen and (max-width: 600px) {
    .flex-store {align-items: start; border-top:1px solid #ddd}
    .store-content {
    	width: calc(100% - 140px);
    }
    .store-content h1 {
    	font-size: 28px; margin: 0;
    }
}
a.visit-btn {
	padding: 5px 0;
	border-radius: 25px;
	width: 120px;
	background: #fff;
	color: #E42E34;
	border: 1px solid #E42E34;
	text-align: center;
	display: block;
	margin-top: 10px;
}
a.visit-btn:hover {
	background: #333;
	border: 1px solid #333;
	color: #fff;
}
.divider {
	border-bottom: 1px solid #eee;
}
.stars-rat {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 5px;
}
.stars-rat .fa {
	color: #ffa500;
	font-size: 20px;
}
.rat-val {
	color: #666;
	margin-left: 10px;
}
.flex-mds {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-direction: row-reverse;
}
.col-md-4 {
	width: 25%;
}
.col-md-8 {
	width: 72%;
}
@media screen and (max-width: 600px) {
    .flex-mds {flex-wrap: wrap;}
    .col-md-4 {
    	width:100%;
    }
    .col-md-8 {
    	width:100%;
    }
}
.coupon-card {
	border: 1px solid #eee;
	margin-top: 20px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 10px;
}
.card-value {
	width: 120px;
	float: left;
	font-size: 28px;
	line-height: 28px;
	color: #E42E34;
	font-weight: bold;
	text-align: center;
}
.card-value span {
	display: block;
	margin-bottom: 3px;
}
.card-value span.offer {
	background: #333;
	font-size: 14px;
	border-radius: 3px;
	width: 70px;
	margin: 0 auto;
	color: #fff;
}
.card-button {
	width: 170px;
	float: right;
	background: #f1f1f1;
	border-radius: 3px;
}
.card-button a {
	display: block;
	text-align: center;
	background: #E42E34;
	color: #fff;
	padding: 10px 0;
	border-radius: 3px;
	font-size:14px;
}
.card-button a.codebtn {
	clip-path: polygon(0% 0, 90% 0%, 85% 100%, 0 100%);
}
.card-button a.codebtn:hover {
	clip-path: polygon(0% 0, 87% 0%, 82% 100%, 0 100%);
}
.card-detail {
	width: calc(97% - 290px);
	float: left;
}
.card-title {
	font-size: 22px;
	font-weight: 800;
}
.coupon-detail {
	line-height: 22px;
	font-size: 15px;
	color: #666;
}
.verifying-box {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #666;
	margin: 5px 0;
	font-size: 14px;
}
.verifying-box i {
	height: 15px;
	width: 15px;
	font-size: 10px;
	color: #fff;
	border-radius: 50px;
	background: #E42E34;
	display: inline-block;
	text-align: center;
	line-height: 16px;
	margin-right: 5px;
}
@media screen and (max-width: 600px) {
    .coupon-card {flex-wrap: wrap;}
    .card-detail {
        width: calc(97% - 120px);
        float: left;
    }
    .card-button {
        width: calc(100% - 130px); margin-left:130px;
    }
}
h2.verified-coupon {
	margin-top: 20px;
	color: #333;
}
.sidebox {
	border: 1px solid #eee;
	border-radius: 3px;
	margin-top: 25px;
}
.sidebox .h2 {
	font-size: 18px;
	color: #333;
	font-weight: 800;
	border-bottom: 1px solid #eee;
	padding: 10px;
}
.store-box-offer {
	text-align: left;
	padding: 15px 10px 10px 10px;
}
.store-box-offer .row-value {
	margin-bottom: 15px;
	color: #666;
	font-size: 14px;
}
.store-box-offer .row-value span {
	display: inline-block;
	float: right;
}
.store-box-offer i {
	font-style: normal;
	margin-right: 10px;
	font-size: 17px;
	display: inline-block;
	float: left;
}
.sidebox ul {
	padding: 10px;
}
.sidebox ul li {
	display: block;
}
.sidebox ul li a {
	display: flex;
	gap: 10px;
	justify-content: flex-start;
	align-items: center;
	color: #666;
	font-size: 14px;
	padding: 8px 0;
}
.sidebox ul li a i {
	color: #E42E34;
}
.other-content{ color:#666; line-height:26px; font-size:14px;}
.other-content h1{ text-align:center; margin-top:50px; color:#000; margin-bottom:50px; font-size:33px;}
.col-75form{ width:65%; padding:20px 20px; margin-top:30px; margin-left:auto; margin-right:auto;}

   .forminputfield {
	padding:0px 0; width:44%; margin-right:5%; float:left;
	margin-bottom: 20px;
}
.forminputfield label, .forminputfield2 label {
	display: block;
	font-size: 15px;
	padding-bottom: 8px;
	font-weight: 700;
}
.forminputfield input {
	width: 100%;
	overflow-x: hidden;
	outline: none;
	font-size: 16px;
	border: 1px solid #ccc;
	padding:15px 8px; border-radius:1px;
	background: #fff;
}
.forminputfield2 textarea {
	width: 93%;
	overflow-x: hidden;
	outline: none; border-radius:1px;
	font-size: 16px;
	border: 1px solid #ccc;
	padding:10px 8px;
	background: #fff;
}
.submitbtn {
	background:#E42E34;
	border:0; font-weight: 700;
	color: #fff; text-transform:uppercase;
	padding: 15px 50px; border-radius:3px; margin-top:20px; cursor:pointer;
}
.submitbtn:hover{ background:#333;}
@media screen and (max-width: 600px) {
     .col-75form{ width:100%; padding:20px 0px; margin-top:30px; margin-left:auto; margin-right:auto;}

   .forminputfield {
	padding:0px 0; width:44%; margin-right:5%; float:left;
	margin-bottom: 20px;
}
}
.page-title{margin-top:50px; text-align:center;}
    .page-title span{ display:block; font-size:17px; color:#E42E34; margin-bottom:5px;}
	.content-page{color:#666; line-height:26px; font-size:14px;}
	.eventpage{ margin-top:50px; margin-bottom:50px;}
    .event-image{ width:100px; height:100px; background:#E42E34; border-radius:100%; overflow:hidden; float:left;}
    .event-image img{ max-width:100%;}
    .event-detail{ width:calc(100% - 130px); float:right;}
    .event-detail h1{ font-size:28px; font-weight:800; margin-bottom:10px;}
    .event-detail p{ line-height:22px; font-size:14px; color:#707070;}