@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap");
body {
  font-family: "Montserrat", sans-serif;
  color: #000;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bg-primary {
  background-color: #f66f62 !important;
}

.container {
  max-width: calc(100% - 100px);
}

.topCategoriesSlider .swiper-wrapper, .topCategoriesSlider .owl-carousel, .bestCreditCard .swiper-wrapper, .bestCreditCard .owl-carousel, .delas .swiper-wrapper, .delas .owl-carousel {
  justify-content: center;
}

.btn {
  font-size: 14px;
  font-weight: 500;
}
.btn-primary {
  background-color: #f66f62;
  border-color: #f66f62 !important;
  padding: 6px 10px;
}
.btn-primary:hover {
  background-color: #f66f62;
  opacity: 0.9;
}
.btn-outline-primary {
  background-color: transparent;
  border-color: #f66f62 !important;
  color: #f66f62 !important;
}
.btn-outline-primary:hover {
  background-color: #f66f62;
  color: #fff !important;
  opacity: 0.9;
}
.btn-link {
  color: #f66f62;
  text-decoration: none;
  padding: 0;
}
.btn-link:hover, .btn-link:focus {
  color: #f66f62;
}

.couponButton {
  background-color: transparent;
  border: none;
  box-shadow: none;
  position: relative;
  max-width: 140px;
  height: 36px;
  width: 100%;
  overflow: hidden;
  font-size: 14px;
}
.couponButton .couponText,
.couponButton .couponCode {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border-radius: 4px;
}
.couponButton .couponCode {
  border: 1px dashed rgba(131, 130, 130, 0.4);
  background-color: #f0f0f0;
  color: #000;
  justify-content: flex-end;
}
.couponButton .couponText {
  background-color: #f66f62;
  z-index: 2;
  width: 90%;
}
.couponButton.showCouponCode .couponText {
  display: none;
}
.couponButton.showCouponCode .couponCode {
  justify-content: center;
}

.showContent {
  position: relative;
}
.showContent::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078";
  padding-left: 2px;
}
.showContent.show::after {
  content: "\f077";
}

.headerTop {
  padding: 4px 0;
  border-bottom: 1px solid rgba(131, 130, 130, 0.1);
  background-color: #333;
}
.headerTop .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.headerTop .container .social-icons {
  display: flex;
  gap: 15px;
}
.headerTop .container .social-icon {
  color: #fff;
  font-size: 16px;
  transition: color 0.3s ease;
}
.headerTop .container .social-icon:hover {
  color: #007bff;
}
.headerTop .container .logoCenter a {
  display: inline-block;
  width: auto;
  height: 60px;
}
.headerTop .container .logoCenter a img {
  width: auto;
  height: 100%;
}
.headerTop .container .topRight {
  text-align: right;
}
.headerTop .container .topRight .btn {
  padding: 2px 12px;
  font-size: 12px;
}

/* navbar */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0px;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: none;
  font-weight: 500;
}
.dropdown .btn svg {
  width: 20px;
  height: 20px;
}
.dropdown .btn i {
  font-size: 20px;
}
.dropdown .btn .menu-title {
  font-size: 12px;
}
.dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0;
}
.dropdown .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown .dropdown-menu .mobile-header {
  padding: 10px 20px;
}
.dropdown .dropdown-menu .close-menu {
  display: none;
}
.dropdown .dropdown-menu .dropdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  color: #000;
  font-size: 14px;
  transition: all 0.2s ease;
  position: relative;
}
.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: rgba(29, 38, 125, 0.05);
  color: #1d267d;
}
.dropdown .dropdown-menu .dropdown-item.has-children:hover::after {
  transform: translateX(3px);
}
.dropdown .dropdown-menu .dropdown-item.back-button {
  color: #838282;
  font-size: 13px;
  border-bottom: 1px solid rgba(131, 130, 130, 0.1);
  margin-bottom: 4px;
}
.dropdown .dropdown-menu .dropdown-item.back-button i {
  margin-right: 8px;
}
.dropdown .dropdown-menu .dropdown-item.back-button:hover {
  background-color: rgba(131, 130, 130, 0.05);
  color: #000;
}
.dropdown .dropdown-submenu {
  position: relative;
}
.dropdown .dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
  border-radius: 0 10px 10px 10px;
  transform: translateX(-10px);
}
.dropdown .dropdown-submenu:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.table-wrapper {
  width: 100%;
  overflow: auto;
  margin-bottom: 20px;
  border: 1px solid #ddd;
}
.table-wrapper tr, .table-wrapper td {
  white-space: nowrap;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 12px;
  text-align: left;
  border: 1px solid #ddd;
}

th {
  background-color: #f2f2f2;
  font-weight: bold;
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Custom scrollbar styling */
.table-wrapper::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
  background: #555;
}

@media screen and (max-width: 991.98px) {
  .dropdown .dropdown-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    transform: translateX(-100%);
    background-color: #fff;
  }
  .dropdown .dropdown-menu.show {
    transform: translateX(0);
  }
  .dropdown .dropdown-menu .dropdown-item {
    padding: 12px 16px;
    font-size: 15px;
  }
  .dropdown .dropdown-submenu > .dropdown-menu {
    transform: translateX(100%);
  }
  .dropdown .dropdown-submenu > .dropdown-menu.show {
    transform: translateX(0);
  }
  .navbar .container .topRight a svg {
    color: #838282;
  }
}
@media (min-width: 767px) {
  .mobile-back {
    display: none !important;
  }
}
.navbar {
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 9;
  padding: 0;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.03);
}
.navbar .navbar-brand {
  width: auto;
  height: 60px;
}
.navbar .navbar-brand img {
  height: 100%;
  width: auto;
}
.navbar .navbar-nav {
  align-items: center;
}
.navbar .navbar-nav li a {
  font-size: 14px;
}
.navbar .navbar-nav > li > a {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 500;
  padding: 20px 15px !important;
}
.navbar .navbar-nav > li > a i {
  font-size: 10px;
}
.navbar .navbar-nav > li > a:hover, .navbar .navbar-nav > li > a:focus, .navbar .navbar-nav > li > a:active:focus, .navbar .navbar-nav > li > a:active {
  color: #f66f62;
  opacity: 1;
}
.navbar .navbar-nav > li > a.active, .navbar .navbar-nav > li > a.show {
  color: #f66f62;
  opacity: 1;
}
.navbar .navbar-nav > li .dropdown-menu {
  top: calc(100% - 3px);
  padding: 0;
  border-color: transparent;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  overflow: hidden;
  box-shadow: 0 10px 10px 0px rgba(0, 0, 0, 0.08);
}
.navbar .navbar-nav > li .dropdown-menu li a {
  color: #000;
  padding: 8px 10px;
  transition: border 0.3s ease-in-out;
  font-weight: 500;
}
.navbar .navbar-nav > li .dropdown-menu li a:focus {
  background-color: #f8f9fa;
}
.navbar .topRight {
  display: none;
}

.navbar-toggler {
  padding: 0;
  width: 30px;
  height: 30px;
  border: none;
  background-color: transparent;
  box-shadow: none !important;
}
.navbar-toggler .LineIcon {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #f66f62;
  position: relative;
}
.navbar-toggler .LineIcon::before, .navbar-toggler .LineIcon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f66f62;
  transform: translateY(-8px);
  transition: transform 0.3s ease-in-out;
}
.navbar-toggler .LineIcon::after {
  transform: translateY(8px);
}
.navbar-toggler[aria-expanded=true] .LineIcon {
  background-color: transparent;
}
.navbar-toggler[aria-expanded=true] .LineIcon::before {
  transform: rotate(45deg);
}
.navbar-toggler[aria-expanded=true] .LineIcon::after {
  transform: rotate(-45deg);
}

.bannerAndAds {
  display: flex;
  gap: 10px;
}
.bannerAndAds .rightSideBanner {
  height: 280px;
  width: 25%;
}
.bannerAndAds .rightSideBanner a {
  width: 100%;
  height: 100%;
  display: block;
}
.bannerAndAds .rightSideBanner img {
  height: 100%;
  width: 100%;
}

.bannerSlider {
  margin: 0px;
  position: relative;
  margin-bottom: 0px;
  width: 75%;
}
.bannerSlider .owl-carousel {
  width: 100%;
  height: 100%;
}
.bannerSlider .owl-carousel .item {
  background-color: transparent;
}
.bannerSlider .owl-carousel .item a {
  display: block;
  width: 100%;
  height: 280px;
}
.bannerSlider .owl-carousel .item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bannerSlider .owl-dots {
  position: absolute;
  bottom: -25px;
  width: 100%;
  text-align: center;
  z-index: 1;
}
.bannerSlider .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #D6D6D6;
  display: block;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.bannerSlider .owl-dots .owl-dot.active span {
  background-color: #f66f62;
}
.bannerSlider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  margin-top: 0;
}
.bannerSlider .owl-nav button {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: #fff !important;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  z-index: 9999;
  color: #f66f62 !important;
  font-size: 20px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.bannerSlider .owl-nav button:hover {
  background-color: #f66f62 !important;
  color: #fff !important;
}
.bannerSlider .owl-nav button.owl-prev {
  left: 10px;
}
.bannerSlider .owl-nav button.owl-next {
  right: 10px;
}

.sectionTitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  color: #d61010;
}

.mainTitle {
  text-align: center;
}
.mainTitle h1 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.mainTitle h1::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #f66f62;
}

.owl-nav button {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  z-index: 9999;
  background-color: #fff !important;
  color: #f66f62 !important;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
}

.owl-nav button.owl-next {
  right: 0;
  left: auto;
}

.topCategoriesWrapper {
  background-color: #f4f8ff;
  padding: 40px 0;
}
.topCategoriesWrapper .owl-carousel {
  position: relative;
}
.topCategoriesWrapper .owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  margin-top: 0;
  pointer-events: none;
}
.topCategoriesWrapper .owl-carousel .owl-nav button {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: #fff !important;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  z-index: 9999;
  color: #f66f62 !important;
  font-size: 20px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: auto;
}
.topCategoriesWrapper .owl-carousel .owl-nav button:hover {
  background-color: #f66f62 !important;
  color: #fff !important;
}
.topCategoriesWrapper .owl-carousel .owl-nav button.owl-prev {
  left: -20px;
}
.topCategoriesWrapper .owl-carousel .owl-nav button.owl-next {
  right: -20px;
}
.topCategoriesWrapper .owl-carousel .item {
  padding: 15px;
  text-align: center;
}
.topCategoriesWrapper .owl-carousel .item a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.topCategoriesWrapper .owl-carousel .item .CategoriesImage {
  display: block;
  /* background-color: #fff;
  width: 120px;
  height: 40px; */
  margin: 10px auto;
  border-radius: 100%;
  /* border: 1px dashed rgba(0, 0, 0, 0.2); */
  /* padding: 15px; */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.topCategoriesWrapper .owl-carousel .item .CategoriesImage img {
  height: 50%;
  width: 100%;
  transition: 0.3s ease-in-out;
  transform: scale(1);
}
.topCategoriesWrapper .owl-carousel .item h2 {
  color: #000;
  font-size: 14px;
  margin-top: 20px;
  font-weight: 500;
}

.cashBackAction {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.cashBackAction h2 {
  margin-bottom: 0;
}
.cashBackAction a {
  font-size: 14px;
  font-weight: 600;
  color: #f66f62;
}

.cashBackDeal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.cashBackDeal li {
  text-align: center;
  /* Optional: Center the image */
  margin-bottom: 10px;
}
.cashBackDeal li a {
  padding: 22px 20px 40px;
  border: 1px solid rgba(131, 130, 130, 0.2);
  display: block;
  border-radius: 4px;
  position: relative;
  transition: 0.3s ease-in;
}
.cashBackDeal li a .caption {
  position: absolute;
  left: 15%;
  text-align: center;
  font-weight: 600;
  width: 70%;
  bottom: -10px;
  border: 1px solid rgba(131, 130, 130, 0.2);
  background-color: #fff;
  color: #000;
  font-size: 14px;
  padding: 6px 10px;
  transition: 0.3s ease-in;
}
.cashBackDeal li a:hover {
  border-color: #1d267d;
}
.cashBackDeal li a:hover .caption {
  border-color: #1d267d;
}
.cashBackDeal li img {
  width: 100%;
  height: 100%;
}

.topSellingProducts {
  background-color: #f4f8ff;
  padding: 40px 0;
}

.topProductsCard {
  background-color: #fff;
  border-radius: 6px;
  width: 100%;
  text-align: center;
  margin: 10px 0;
  transition: 0.3s ease-in;
}
.topProductsCard:hover {
  box-shadow: 0 0 10px 6px rgba(0, 0, 0, 0.08);
}
.topProductsCard .priceCompared {
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 14px;
  color: #f66f62;
  font-weight: 600;
}
.topProductsCard .productImage {
  padding: 15px;
  width: auto;
  height: 180px;
  text-align: center;
}
.topProductsCard .productImage img {
  width: auto;
  height: 100%;
  transition: all 0.5 ease-in-out;
  margin: auto;
}
.topProductsCard .productInfo {
  padding: 0 10px;
}
.topProductsCard .productInfo .brandName {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.topProductsCard .productInfo .brandName span {
  margin-right: 4px;
  font-weight: 400;
}
.topProductsCard .productInfo h2 {
  font-size: 16px;
  text-align: center;
  margin: 10px;
  font-weight: 500;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.4;
  height: auto;
  max-height: 50px;
}
.topProductsCard .productInfo .productPrice {
  text-align: center;
}
.topProductsCard .productInfo .productPrice .retailPrice {
  font-size: 12px;
  text-decoration: line-through;
  color: #838282;
  margin-right: 5px;
}
.topProductsCard .productInfo .productPrice .sellerPrice {
  font-size: 16px;
  font-weight: 600;
}
.topProductsCard .productInfo .productPrice .discount {
  font-size: 14px;
  color: #f66f62;
}
.topProductsCard .productInfo .productStatus {
  background-color: rgba(131, 130, 130, 0.1);
  border: 1px solid rgba(131, 130, 130, 0.2);
  color: #000;
  font-size: 14px;
  padding: 4px;
  font-weight: 500;
  margin: 10px 0px;
  text-align: center;
}
.topProductsCard .productInfo .productStatus.positive {
  border-color: #f66f62;
  background-color: rgba(246, 111, 98, 0.1);
  color: #f66f62;
}
.topProductsCard .productInfo .productStatus.nagative {
  border-color: #ff4562;
  background-color: rgba(255, 69, 98, 0.1);
  color: #ff4562;
}
.topProductsCard .productInfo .finalPrice {
  font-size: 14px;
  padding-bottom: 10px;
  color: #1d267d;
  font-weight: 600;
  text-align: center;
}

.todayTopDeals {
  margin: 50px 0;
}
.todayTopDeals .todayDeal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.todayTopDeals .todayDeal li {
  flex: 1 0 10%;
  background-color: #fff;
  padding: 15px 10px;
  border-radius: 10px;
  position: relative;
  text-align: center;
  border: 1px solid rgba(131, 130, 130, 0.4);
}
.todayTopDeals .todayDeal li:hover {
  border-color: #f66f62;
}
.todayTopDeals .todayDeal li .offer {
  background-color: #1d267d;
  padding: 4px 6px;
  font-size: 10px;
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 5px;
}
.todayTopDeals .todayDeal li img {
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 40px auto 20px;
  display: block;
  aspect-ratio: 3/1;
}
.todayTopDeals .todayDeal li button {
  font-size: 12px;
}

.allTypeDeals {
  margin: 50px 0;
}
.allTypeDeals .item .productWrap {
  width: 100%;
  text-align: center;
  padding: 10px;
  border: 1px solid rgba(131, 130, 130, 0.2);
  border-radius: 8px;
}
.allTypeDeals .item .productWrap .productImage {
  margin: auto;
  overflow: hidden;
}
.allTypeDeals .item .productWrap .productImage img {
  height: 200px;
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.5s ease-in;
}
.allTypeDeals .item .productWrap .productImage:hover img {
  transform: scale(1.3) rotate(5deg);
}
.allTypeDeals .item .platform {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 5px 8px;
  font-size: 12px;
  background-color: #000;
  color: #fff;
  border-radius: 4px;
}
.allTypeDeals .item h2 {
  height: 50px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  padding-top: 10px;
  text-transform: capitalize;
}
.allTypeDeals .item .price {
  display: flex;
  align-items: center;
  justify-content: center;
}
.allTypeDeals .item .price .retularPrice {
  font-size: 14px;
  margin-right: 8px;
  vertical-align: middle;
  color: #878787;
  text-decoration: line-through;
}
.allTypeDeals .item .price .retularPrice i {
  font-size: 12px;
}
.allTypeDeals .item .price .salePrice {
  font-size: 18px;
  font-weight: 500;
}
.allTypeDeals .item .price .salePrice i {
  font-size: 14px;
}
.allTypeDeals .item button {
  width: 80%;
  margin: 20px 0 10px;
}

.webInfo {
  background-color: #f4f8ff;
  padding: 50px 10px;
}
.webInfo .wpb_wrapper {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 6px;
}
.webInfo .wpb_wrapper img {
  margin-right: 10px;
  height: 80px;
}
.webInfo .wpb_wrapper h3 {
  font-size: 18px;
  font-weight: 500;
}
.webInfo .wpb_wrapper p {
  color: #838282;
}

.deals-section {
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  background-color: #f4f8ff;
}
.deals-section .container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}
.deals-section .section-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  text-align: center;
  color: #d61010;
}
.deals-section .section-title::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #f66f62;
}
.deals-section .section-subtitle {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-bottom: 40px;
}
.deals-section .coupon-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
}
.deals-section .coupon-cards .coupon-card {
  flex: 1;
  min-width: 300px;
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}
.deals-section .coupon-cards .coupon-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #f66f62, #1d267d);
}
.deals-section .coupon-cards .coupon-card:nth-child(2)::before {
  background: linear-gradient(90deg, #1d267d, #fd79a8);
}
.deals-section .coupon-cards .coupon-card:nth-child(3)::before {
  background: linear-gradient(90deg, #fd79a8, #f66f62);
}
.deals-section .coupon-cards .coupon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.deals-section .coupon-cards .coupon-card:hover .shine {
  left: 100%;
}
.deals-section .coupon-cards .coupon-card .card-icon {
  width: 50px;
  height: 50px;
  padding: 10px;
  background: #f66f62;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}
.deals-section .coupon-cards .coupon-card .card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: invert(100%);
}
.deals-section .coupon-cards .coupon-card:nth-child(2) .card-icon {
  background: #1d267d;
}
.deals-section .coupon-cards .coupon-card:nth-child(3) .card-icon {
  background: #fd79a8;
}
.deals-section .coupon-cards .coupon-card h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #000;
  font-weight: 600;
  font-size: 16px;
}
.deals-section .coupon-cards .coupon-card p {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.deals-section .coupon-cards .coupon-card .reveal-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #f66f62, #1d267d);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 20px auto 0;
}
.deals-section .coupon-cards .coupon-card .reveal-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.deals-section .coupon-cards .coupon-card .reveal-btn i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.deals-section .coupon-cards .coupon-card:nth-child(2) .reveal-btn {
  background: linear-gradient(90deg, #1d267d, #fd79a8);
}
.deals-section .coupon-cards .coupon-card:nth-child(3) .reveal-btn {
  background: linear-gradient(90deg, #fd79a8, #f66f62);
}
.deals-section .coupon-cards .coupon-card .coupon-code {
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px dashed #ccc;
  display: none;
  overflow: hidden;
  transition: all 0.3s ease;
}
.deals-section .coupon-cards .coupon-card .coupon-code.active {
  opacity: 1;
  height: auto;
  padding: 8px;
  margin-top: 15px;
  display: flex;
}
.deals-section .coupon-cards .coupon-card .coupon-code span {
  font-weight: bold;
  color: #f66f62;
  font-size: 14px;
}
.deals-section .coupon-cards .coupon-card .copy-btn {
  padding: 6px 12px;
  background: #000;
  color: white;
  border: none;
  font-size: 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.deals-section .coupon-cards .coupon-card .copy-btn:hover {
  background: #f66f62;
}
.deals-section .coupon-cards .coupon-card .copy-btn.copied {
  background: #00b894;
}
.deals-section .coupon-cards .coupon-card .shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  transition: all 0.5s ease;
}
.deals-section .floating-coupons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.deals-section .floating-coupons .floating-coupon {
  position: absolute;
  background: white;
  border: 2px dashed #f66f62;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: bold;
  color: #f66f62;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0.7;
  animation: float-up 15s linear infinite;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1200px);
  }
}
@keyframes float-up {
  0% {
    transform: translateY(100vh) rotate(0deg);
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
  }
}
@media (max-width: 768px) {
  .deals-section .section-title {
    font-size: 2.2rem;
  }
  .deals-section .section-subtitle {
    font-size: 1rem;
  }
}

.blogSection {
  margin: 50px 0;
}

.blogItem {
  position: relative;
  border: none;
  box-shadow: 0 5px 2px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
.blogItem .date {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #333;
  color: #fff;
  padding: 4px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}
.blogItem .card-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}
.blogItem .card-title a {
  color: #000;
}
.blogItem .card-title a:hover {
  color: #f66f62;
}
.blogItem .card-text {
  font-size: 14px;
  color: #838282;
  margin-bottom: 10px;
}

.infoSection {
  margin-bottom: 50px;
}
.infoSection strong {
  font-weight: 500;
}
.infoSection h1 {
  font-size: 18px;
  font-weight: 700;
}
.infoSection h2 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 30px;
  color: #d61010;
  font-weight: 600;
}
.infoSection h3 {
  font-size: 14px;
  text-align: center;
  margin-bottom: 30px;
}
.infoSection p {
  font-size: 14px;
}
.infoSection .infoContent h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}
.infoSection .infoContent p {
  font-size: 12px;
}

.loginWrapper {
  margin: 50px auto;
}

.loginCard {
  max-width: 400px;
  width: 100%;
  margin: auto;
}
.loginCard h2 {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
}
.loginCard form {
  background-color: #f5f5f5;
  padding: 20px;
}
.loginCard .formGroup {
  margin-bottom: 20px;
}

.innerTitleSection {
  background-color: #333333;
  position: relative;
  padding: 20px 0;
}
.innerTitleSection .container {
  display: flex;
  align-items: center;
}
.innerTitleSection .storeImage {
  /* width: 300px;
  height: 200px;
  background-color: #fff; */
  border-radius: 10px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.innerTitleSection .storeImage img {
  height: 50%;
  max-width: -moz-max-content;
  max-width: max-content;
}
.innerTitleSection .offerWrapper {
  width: 100%;
  color: #fff;
}
.innerTitleSection .offerWrapper h4 {
  font-weight: 600;
  font-size: 20px;
}
.innerTitleSection .cashback-banner {
  font-weight: 600;
  margin-bottom: 10px;
}
.innerTitleSection .description {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 14px;
}
.innerTitleSection .activate-button {
  font-size: 12px;
  padding: 10px 25px;
}
.innerTitleSection .features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  margin-top: 15px;
}
.innerTitleSection .feature {
  display: flex;
  align-items: center;
  font-size: 13px;
}
.innerTitleSection .feature .icon {
  margin-right: 6px;
  font-weight: bold;
  font-size: 14px;
}
.innerTitleSection .storeDescription {
  display: none;
}

.pageTitle {
  margin-left: 20px;
}
.pageTitle h1 {
  color: #000;
  font-size: 24px;
  font-weight: 600;
}
.pageTitle p {
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 5px !important;
  line-height: 1.7;
}

.couponSection {
  margin: 50px 0;
}
.couponSection .filterIcon {
  display: none;
  text-align: right;
  cursor: pointer;
}
.couponSection .closeFilter {
  display: none;
}
.couponSection.filterWrapper::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99;
}
.couponSection .closeFilter {
  position: sticky;
  top: -10px;
  z-index: 99;
  background-color: #fff;
  padding: 10px;
  padding-top: 15px;
  border-radius: 5px;
  border-bottom: 1px solid #dfdfdf;
  border-radius: 0;
  text-align: right;
}

.adsBanner {
  position: sticky;
  top: 80px;
}
.adsBanner img {
  width: 100%;
}

.offer-card {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.04);
  overflow: hidden;
  margin-bottom: 30px;
}

.offer-card-main {
  padding: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.offer-card-main .offer-details {
  flex: 1;
  width: 100%;
  margin-right: 15px;
}
.offer-card-main .offer-details .Verified {
  margin-bottom: 10px;
  font-size: 12px;
  color: #1fa552;
  font-weight: 400;
}
.offer-card-main .offer-details .Verified i {
  color: #1fa552;
  font-size: 14px;
}
.offer-card-main .offer-details h2 {
  font-size: 16px;
  color: #000;
  line-height: 1.5;
  font-weight: 600;
  word-break: break-all;
}
.offer-card-main .offer-details p {
  margin-bottom: 0;
  font-size: 13px;
}
.offer-card-main button {
  white-space: nowrap;
}
.offer-card-main button.couponButton {
  position: relative;
  bottom: 7px;
}
.offer-card-main button.btnPassData {
  max-width: 140px;
  width: 100%;
}

.offer-card-bottom button {
  font-size: 13px;
  padding: 0px !important;
}
.offer-card-bottom .bottomContent {
  margin-top: 6px;
}
.offer-card-bottom .bottomContent p {
  margin-bottom: 6px;
}
.offer-card-bottom .bottomContent ul {
  margin-left: 18px;
}
.offer-card-bottom .bottomContent ul li {
  list-style-type: disc;
  font-size: 12px;
  padding: 2px 0;
  font-weight: 500;
}

footer {
  margin-top: auto;
  padding: 20px;
  text-align: center;
  background-color: #333;
}
footer .companyLogo {
  margin: 30px 0;
}
footer .socialMedia {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .socialMedia li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  margin-inline: 10px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
footer .socialMedia li a i {
  font-size: 14px;
}
footer .socialMedia li a.facebook:hover {
  background-color: #3b5998;
}
footer .socialMedia li a.twitter:hover {
  background-color: #55acee;
}
footer .socialMedia li a.linkedin:hover {
  background-color: #007bb5;
}
footer .socialMedia li a.pinterest:hover {
  background-color: #cb2027;
}
footer .fotterMenu {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  margin-top: 10px;
}
footer .fotterMenu li a {
  color: #fff;
  opacity: 0.7;
  padding-inline: 10px;
  font-size: 14px;
  border-right: 1px solid #fff;
}
footer .fotterMenu li a:hover {
  color: #fff;
  opacity: 1;
}
footer .fotterMenu li:last-child a {
  border: none;
}

.exclusive_wrapper {
  margin: 50px 0;
}

.exclusive_item {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}
.exclusive_item .exclusive_image {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.exclusive_item .exclusive_image img {
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.exclusive_item .exclusive_content {
  padding: 15px;
  flex: 1;
}
.exclusive_item .exclusive_content .platform h2 {
  font-size: 12px;
  color: #838282;
}
.exclusive_item .exclusive_content p {
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  font-weight: 500;
  margin: 4px 0 15px;
}
.exclusive_item .exclusive_content button {
  max-width: 100%;
  width: 100%;
  display: block;
  margin: auto;
}

.aboutPage {
  background-color: #dbdbdb;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  padding: 30px 20px;
}
.aboutPage div {
  flex: auto;
  text-align: left;
  padding-left: 15px;
}
.aboutPage img {
  height: 30px;
  background-blend-mode: color;
}
.aboutPage h2 {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  margin-bottom: 5px;
}
.aboutPage p {
  color: #838282;
  font-size: 14px;
  margin-bottom: 0;
}

.contactSection {
  margin: 50px 0;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
}

.btnSubmit {
  width: 150px;
  padding: 10px 0;
  text-transform: capitalize;
  font-size: 16px;
}

.privacySection {
  margin: 50px 0;
}

.privacyWrap h1 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.privacyWrap p {
  font-size: 14px;
}

.modal .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 99;
}
.modal .modal-body {
  padding: 0px;
}
.modal .modal-body .titleNew {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.couponWrapper {
  padding: 40px 20px;
  text-align: center;
}
.couponWrapper p {
  color: #838282;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 14px;
}
.couponWrapper p a {
  color: #f66f62;
}

.offerCode {
  display: flex;
  align-items: center;
  justify-content: center;
}
.offerCode .couponInfo {
  border: 1px dashed #f66f62;
  padding: 0px 30px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  width: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.offerCode .couponInfo h2 {
  color: #f66f62;
  font-weight: 600;
  margin: 0;
  font-size: 18px;
}
.offerCode .couponInfo .spinner {
  position: absolute;
  left: 0;
  right: 0;
  top: 2px;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}
.offerCode .couponInfo .spinner i {
  font-size: 24px;
  color: #f66f62;
}
.offerCode button {
  border-radius: 0;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0 20px;
  margin-left: -1px;
}

.redeemPage {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.redeemPage .redeemWrap {
  max-width: 600px;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
  text-align: center;
}
.redeemPage .redeemWrap p {
  color: #838282;
  font-size: 14px;
  margin-bottom: 5px;
}
.redeemPage .redeemWrap .dealActivated {
  border: 1px dashed #f66f62;
  max-width: 350px;
  font-size: 14px;
  padding: 10px 5px;
  border-radius: 4px;
  margin: 20px auto;
  color: #838282;
}
.redeemPage .redeemWrap .dealActivated span {
  font-weight: 500;
  color: #f66f62;
}
.redeemPage .redeemWrap h4 {
  color: #f66f62;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 15px;
}
.redeemPage .redeemWrap .redirectingProcess {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.redeemPage .redeemWrap .redirectingProcess img {
  height: 30px;
}

/**
 * ==============================================
 * Dot Flashing
 * ==============================================
 */
.categorySection {
  margin: 50px 0;
}

.categoryWrap {
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #dfdfdf;
  padding: 15px;
  margin-bottom: 20px;
}
.categoryWrap a {
  display: block;
  text-align: center;
}
.categoryWrap a img {
  height: 25px;
}
.categoryWrap a h2 {
  margin: 15px 0 0;
  font-size: 18px;
  color: #000;
  font-weight: 600;
}

@media screen and (max-width: 991.98px) {
  .offer-card-main {
    flex-direction: column;
    justify-content: center;
  }
  .offer-card-main .offer-details {
    margin-right: 0;
  }
  .offer-card-main button.couponButton {
    margin: 20px auto 0;
  }
  .headerTop {
    display: none;
  }
  .navbar .container {
    flex-direction: row-reverse;
  }
  .navbar .container .allCategory {
    display: none;
  }
  .navbar .container .topRight {
    display: block;
    margin-right: 10px;
  }
  .navbar .container .topRight a {
    padding-left: 15px;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.8);
  }
  .navbar .container .topRight a span {
    display: none;
  }
  .navbar .container .innerButton {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .navbar .container .dropdown .dropdown-menu .dropdown-item {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
  }
  .todayTopDeals .todayDeal li {
    flex: 1 1 47%;
  }
  .webInfo .wpb_wrapper {
    flex-wrap: wrap;
    text-align: center;
  }
  .webInfo .wpb_wrapper img {
    margin: auto;
    margin-bottom: 15px;
  }
  .webInfo .wpb_wrapper h3 {
    font-weight: 700;
  }
  .webInfo .wpb_wrapper p {
    font-size: 12px;
  }
  .innerTitleSection .container {
    align-items: flex-start;
  }
  .innerTitleSection .container .storeImage {
    width: 150px;
    height: 70px;
  }
  .innerTitleSection .container .storeImage img {
    margin: 0 !important;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .innerTitleSection .container .offerWrapper h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .innerTitleSection .container .offerWrapper .cashback-banner {
    font-size: 14px;
    font-weight: 500;
  }
  .innerTitleSection .container .offerWrapper .description,
  .innerTitleSection .container .offerWrapper .activate-button,
  .innerTitleSection .container .offerWrapper .features {
    display: none;
  }
  .innerTitleSection .storeDescription {
    display: block;
    margin-top: 20px;
  }
  .innerTitleSection .storeDescription .description p {
    margin-bottom: 0;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
  }
  .innerTitleSection .storeDescription .description.showMore p {
    display: inline;
    margin-bottom: 0;
  }
  .innerTitleSection .storeDescription .activate-button {
    padding: 6px;
    font-size: 12px;
  }
  .innerTitleSection .storeDescription .feature {
    color: #fff;
    font-size: 12px;
    flex: 1 0 auto;
  }
}
#popup {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  top: 0;
}
#popup .popupWrap {
  max-width: 350px;
  max-height: 350px;
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 50%;
  z-index: 999;
  word-wrap: break-word;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 10px;
}
#popup.showingModal::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 99;
}
#popup img {
  width: auto;
  height: 90px;
  margin-bottom: 20px;
}
#popup p {
  color: #838282;
  font-size: 14px;
  line-height: 1.8;
}
#popup p a {
  color: #f66f62;
}
#popup button {
  color: #f66f62;
  background: transparent;
  border: none;
  font-weight: 600;
}

.cashbackSection {
  padding: 40px 0 70px;
  text-align: center;
}
.cashbackSection .container {
  max-width: 1400px;
  width: 90%;
  position: relative;
}
.cashbackSection h2 {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  color: #d61010;
}
.cashbackSection h2::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #1d267d;
}
.cashbackSection .steps-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 50px;
}
.cashbackSection .steps-container::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #f66f62, #1d267d, #fd79a8);
  z-index: 1;
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}
.cashbackSection .step {
  width: 28%;
  background: white;
  border-radius: 15px;
  padding: 20px 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}
.cashbackSection .step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.cashbackSection .step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
}
.cashbackSection .step:nth-child(1)::before {
  background: #f66f62;
}
.cashbackSection .step:nth-child(2)::before {
  background: #1d267d;
}
.cashbackSection .step:nth-child(3)::before {
  background: #fd79a8;
}
.cashbackSection .step-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.cashbackSection .step:nth-child(1) .step-icon {
  background: #f66f62;
}
.cashbackSection .step:nth-child(2) .step-icon {
  background: #1d267d;
}
.cashbackSection .step:nth-child(3) .step-icon {
  background: #fd79a8;
}
.cashbackSection .step h2 {
  /*margin-bottom: 10px;*/
  font-size: 15px;
  color: #000;
  font-weight: 600;
}
.cashbackSection .step p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 0;
  margin-top: 15px;
}
.cashbackSection .highlight {
  font-weight: 600;
  color: #f66f62;
}
.cashbackSection .shape {
  position: absolute;
  opacity: 0.1;
  border-radius: 50%;
}
.cashbackSection .circle {
  background: #f66f62;
}
.cashbackSection .pulse {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.15;
  }
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
}
@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10vw, -10vh) rotate(90deg);
  }
  50% {
    transform: translate(20vw, 0) rotate(180deg);
  }
  75% {
    transform: translate(10vw, 10vh) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}
@keyframes ripple {
  0% {
    transform: scale(0.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 768px) {
  .cashbackSection .steps-container {
    flex-direction: column;
    align-items: center;
  }
  .cashbackSection .step {
    width: 90%;
    margin-bottom: 40px;
  }
  .cashbackSection .steps-container::before {
    height: 100%;
    width: 5px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }
}

.bestCreditWrapper {
  margin-bottom: 50px;
  margin-top: 50px;
}
.bestCreditWrapper .bestCreditCard .creditCard {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid rgba(131, 130, 130, 0.1);
  padding: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bestCreditWrapper .bestCreditCard .creditCard img {
  width: auto;
  height: 50px;
  margin: auto;
}

.cashbackRates {
  background-color: #f4f8ff;
  border-radius: 8px;
  padding: 10px;
  position: relative;
}
.cashbackRates h3 {
  font-size: 14px;
  font-weight: 700;
}
.cashbackRates ul {
  max-height: 250px;
  overflow: auto;
}
.cashbackRates ul li {
  margin-bottom: 10px;
  background-color: #fff;
  padding: 10px;
  border-radius: 6px;
}
.cashbackRates ul li .badge {
  padding: 6px 18px;
  margin-bottom: 10px;
}
.cashbackRates ul li p {
  font-size: 14px;
  line-height: 1.6;
}
.cashbackRates.showAll ul {
  height: auto;
  padding-bottom: 30px;
}
.cashbackRates .viewMore {
  position: absolute;
  bottom: 4px;
  left: 4px;
  right: 4px;
  background-color: #fff;
}

.noticeTNC {
  margin-top: 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.noticeTNC h2 {
  font-size: 14px;
  background-color: #f66f62;
  padding: 10px;
  text-align: center;
  font-weight: 600;
  color: #fff;
}
.noticeTNC ul li {
  padding: 8px 6px;
  color: #333;
  line-height: 1.5;
  font-size: 14px;
}
.noticeTNC ul li span {
  margin-left: -10px;
}
.noticeTNC ul li span i {
  font-size: 12px;
}
.noticeTNC ul li:not(:last-child) {
  border-bottom: 1px dashed #ddd;
}
.noticeTNC.noticePoint li {
  padding-left: 30px;
}
.noticeTNC.noticePoint li span {
  position: relative;
  left: -10px;
}
.noticeTNC.noticePoint li span svg {
  width: 12px;
  height: 12px;
}

.tabsWrap {
  position: relative;
  margin-top: 30px;
  background-color: #f4f8ff;
  padding: 15px;
  border-radius: 8px;
}
.tabsWrap .nav .nav-item .nav-link {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.8);
  padding: 6px 10px;
}
.tabsWrap .nav .nav-item .nav-link i {
  margin-right: 5px;
}
.tabsWrap .nav .nav-item .nav-link.active {
  background-color: #f66f62;
  color: #fff;
}
.tabsWrap .itsEasy h2 {
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
  padding-bottom: 15px;
}
.tabsWrap .itsEasy ul li {
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.7);
}
.tabsWrap .itsEasy ul li span {
  font-weight: 600;
  color: #000;
}

.couponRow {
  display: grid;
  grid-template-columns: 0.7fr 2.6fr 0.7fr;
  gap: 20px;
  padding: 20px 0;
}

.couponPoints {
  grid-column: 1;
  width: 100%;
}

.couponListWrap {
  grid-column: 2;
  width: 100%;
}

.couponAds {
  grid-column: 3;
  width: 100%;
}

/* Large devices (desktops, less than 1400px) */
@media (max-width: 1399px) {
  .couponRow {
    grid-template-columns: 1fr 2fr 1fr;
  }
}
/* Medium devices (tablets, less than 1200px) */
@media (max-width: 1199px) {
  .couponRow {
    grid-template-columns: 1fr 2fr;
    gap: 15px;
  }
  .couponAds {
    grid-column: 1/span 2;
    order: 3;
  }
  .couponAds .adsBanner img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
  }
}
/* Small devices (landscape phones, less than 992px) */
@media (max-width: 991px) {
  .couponRow {
    grid-template-columns: 1fr 2fr;
    gap: 10px;
  }
}
@media screen and (min-width: 1999px) {
  .bannerSlider .swiper .swiper-slide a {
    height: 400px;
  }
}
@media screen and (max-width: 1199px) {
  .navbar .navbar-nav > li > a {
    padding: 10px 8px !important;
  }
  .cashbackSection .step h2 {
    font-size: 16px;
  }
  .todayTopDeals .todayDeal li img {
    height: 25px;
  }
  .todayTopDeals .todayDeal li h2 {
    font-size: 14px;
  }
  .couponSection .row .col-xl-3 {
    order: 2;
  }
  .couponSection .row .col-xl-7 {
    order: 1;
  }
  .couponSection .row .col-xl-2 {
    order: 3;
  }
  .adsBanner {
    margin-top: 20px;
    text-align: center;
  }
  .adsBanner .adsBannerImage {
    margin: auto;
  }
  .sectionTitle {
    font-size: 18px;
  }
  .cashbackSection h1 {
    font-size: 18px;
  }
  .deals-section .section-title {
    font-size: 18px;
  }
  .infoSection h2 {
    font-size: 18px;
  }
  .bannerSlider .owl-carousel .item a {
    height: 200px;
  }
  .bannerAndAds .rightSideBanner {
    height: 200px;
  }
}
@media screen and (max-width: 991.98px) {
  .container {
    max-width: calc(100% - 10px);
  }
  .headerTop .container .topRight {
    text-align: center;
  }
  .navbar .navbar-nav {
    align-items: flex-start;
  }
  .navbar .navbar-nav .nav-item {
    width: 100%;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 14px;
    flex: 1;
    justify-content: space-between;
    display: flex;
  }
  .navbar .navbar-nav .nav-item .dropdown-menu.show {
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: none;
  }
  .dropdown .dropdown-menu .mobile-header {
    position: relative;
  }
  .dropdown .dropdown-menu .mobile-header .close-menu {
    display: block;
    position: absolute;
    right: 10px;
    top: 5px;
    border: none;
    background-color: transparent;
    font-size: 18px;
    color: #000;
  }
  div#navbarTogglerDemo03 {
    overflow-y: scroll;
    height: 280px;
  }
  .features {
    justify-content: center;
  }
  .bannerAndAds .rightSideBanner {
    height: auto;
  }
  .bannerSlider .owl-carousel .item a {
    height: auto;
  }
}
@media screen and (max-width: 767.98px) {
  .bestCreditWrapper {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .couponSection .filterIcon {
    display: block;
  }
  .couponSection .closeFilter {
    display: block;
    margin-bottom: 15px;
  }
  .couponRow {
    grid-template-columns: 1fr;
  }
  .couponPoints {
    position: fixed;
    top: 0;
    left: -300px;
    max-width: 300px;
    width: 100%;
    z-index: 99;
    background-color: #fff;
    padding: 10px;
    border-right: 1px solid #dfdfdf;
    transition: all 0.3s ease;
    overflow-y: scroll;
    height: 100vh;
  }
  .couponPoints.show {
    left: 0;
  }
  .couponListWrap {
    order: 1;
  }
  .couponAds {
    order: 3;
  }
  .couponPoints,
  .couponListWrap,
  .couponAds {
    grid-column: 1;
    width: 100%;
  }
  .couponAds .adsBanner img {
    max-width: 100%;
  }
}
@media screen and (max-width: 575.98px) {
  .todayTopDeals .todayDeal {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  .allCategory .btn {
    padding: 2px 10px;
    font-size: 12px;
  }
  .allCategory .btn svg {
    display: none;
  }
  footer .fotterMenu {
    flex-wrap: wrap;
  }
  .companyLogo img {
    height: 30px !important;
  }
  .sectionTitle {
    font-size: 16px;
  }
  .infoSection h2 {
    font-size: 16px;
  }
  .cashBackAction a {
    font-size: 12px;
  }
  .cashbackSection h1 {
    font-size: 16px;
  }
  .deals-section .section-title {
    font-size: 16px;
  }
  .deals-section .coupon-cards {
    flex-direction: column;
  }
  .deals-section .coupon-cards .coupon-card {
    min-width: auto;
  }
}
@media screen and (max-width: 480px) {
  .topCategoriesWrapper .item a .CategoriesImage {
    height: 80px;
    width: 80px;
  }
  .topCategoriesWrapper .item a .CategoriesImage img {
    height: 30px;
  }
  .topCategoriesWrapper .item a .CategoriesImage .h2 {
    font-size: 12px;
  }
  .bestCreditWrapper .bestCreditCard .creditCard img {
    height: 20px;
    width: auto;
  }
  .innerTitleSection .container .offerWrapper h4 {
    font-size: 14px;
  }
}
/*# sourceMappingURL=app.css.map */