*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Columns */
.col {
  flex: 1 0 0;
}
.col-auto, .col-md-auto {
  flex: 0 0 auto;
  width: auto;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}

@media (min-width: 767px) {
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
}
.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

@media (min-width: 767px) {
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

@media (min-width: 767px) {
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
}
.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

@media (min-width: 767px) {
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
}
.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}

@media (min-width: 767px) {
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

@media (min-width: 767px) {
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}
.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}

@media (min-width: 767px) {
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
}
.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}

@media (min-width: 767px) {
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
}
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

@media (min-width: 767px) {
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
}
.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}

@media (min-width: 767px) {
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
}
.col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}

@media (min-width: 767px) {
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 767px) {
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
/* Containers */
.container {
  margin-right: auto !important;
  margin-left: auto !important;
  width: 100% !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
  /* Styles for screens larger than 1200px (e.g., larger desktops) */
  /* Styles for screens between 992px and 1199px (e.g., larger tablets and smaller desktops) */
  /* Styles for screens between 768px and 991px (e.g., small tablets) */
  /* Styles for screens smaller than 768px (e.g., mobile phones) */
}
@media screen and (max-width: 767px) {
  .container {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}
@media screen and (max-width: Mobile) {
  .container {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 100% !important;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px !important;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px !important;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px !important;
  }
}
.container, .container-width, .full-width .ubermenu-nav, .row {
  max-width: 1200px !important;
}

.page-wrapper {
  background: var(--cp-wrapper-color);
}
.page-wrapper.main {
  padding-top: 0;
  padding-bottom: 0;
}

.site-accordion {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100%;
  padding: 35px 45px;
  background-color: #fff;
  border-radius: 4px;
  outline: none;
  border: none;
  box-shadow: 0 2px 6px 4px rgba(51, 51, 51, 0.09);
  cursor: pointer;
  margin: 0 auto 25px;
  max-width: 930px;
  /* Styles for screens larger than 1200px (e.g., larger desktops) */
  /* Styles for screens between 992px and 1199px (e.g., larger tablets and smaller desktops) */
  /* Styles for screens between 768px and 991px (e.g., small tablets) */
  /* Styles for screens smaller than 768px (e.g., mobile phones) */
}
@media screen and (max-width: 767px) {
  .site-accordion {
    padding: 25px 20px;
  }
}
@media screen and (max-width: Mobile) {
  .site-accordion {
    padding: 25px 20px;
  }
}
.site-accordion.active .site-accordion-header .site-accordion-icon {
  transform: rotate(-180deg);
}
.site-accordion.active .site-accordion-body {
  opacity: 1;
  visibility: visible;
  max-height: initial;
  padding: 15px 25px 0;
  /* Styles for screens larger than 1200px (e.g., larger desktops) */
  /* Styles for screens between 992px and 1199px (e.g., larger tablets and smaller desktops) */
  /* Styles for screens between 768px and 991px (e.g., small tablets) */
  /* Styles for screens smaller than 768px (e.g., mobile phones) */
}
@media screen and (max-width: 767px) {
  .site-accordion.active .site-accordion-body {
    padding: 15px 0 0;
  }
}
@media screen and (max-width: Mobile) {
  .site-accordion.active .site-accordion-body {
    padding: 15px 0 0;
  }
}
.site-accordion .site-accordion-header {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  width: 100%;
}
.site-accordion .site-accordion-header .site-accordion-title h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 130%;
  color: var(--cp-heading-color);
  transition: all 0.3s linear;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .site-accordion .site-accordion-header .site-accordion-title h3 {
    font-size: 16px;
  }
}
.site-accordion .site-accordion-header .site-accordion-icon {
  transition: all 0.2s linear;
}
.site-accordion .site-accordion-body {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transform-origin: top;
  transition: opacity 0.2s linear, max-height 0.2s linear;
}
.site-accordion .site-accordion-body p {
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  color: var(--cp-description-color);
  transition: all 0.3s linear;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .site-accordion .site-accordion-body p {
    font-size: 14px;
  }
}

.group-slide-coupon-area {
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}
.group-slide-coupon-area .swiper-pagination {
  position: relative;
  left: unset !important;
  top: unset !important;
  bottom: unset !important;
  transform: translate(0, 0) !important;
  height: 12px;
  justify-content: center;
  margin: 25px auto 15px;
  display: none;
  /* Styles for screens larger than 1200px (e.g., larger desktops) */
  /* Styles for screens between 992px and 1199px (e.g., larger tablets and smaller desktops) */
  /* Styles for screens between 768px and 991px (e.g., small tablets) */
  /* Styles for screens smaller than 768px (e.g., mobile phones) */
}
@media screen and (max-width: 767px) {
  .group-slide-coupon-area .swiper-pagination {
    display: flex;
    width: 100% !important;
  }
}
@media screen and (max-width: Mobile) {
  .group-slide-coupon-area .swiper-pagination {
    display: flex;
    width: 100% !important;
  }
}
.group-slide-coupon-area .swiper-pagination .swiper-pagination-bullet {
  background-color: #eef3fb;
  border: 1px solid var(--cp-second-color);
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  height: 12px;
  margin: 0 5px;
  width: 12px;
  transform: scale(1);
}
.group-slide-coupon-area .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--cp-second-color);
}

.group-square-coupon-area {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 15px;
  position: relative;
  margin-bottom: 25px;
}

#tax-heading-area, #page-heading-area {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fff;
  border-bottom: 1px solid #bcc6d7;
  /* Styles for screens larger than 1200px (e.g., larger desktops) */
  /* Styles for screens between 992px and 1199px (e.g., larger tablets and smaller desktops) */
  /* Styles for screens between 768px and 991px (e.g., small tablets) */
  /* Styles for screens smaller than 768px (e.g., mobile phones) */
}
@media screen and (max-width: 767px) {
  #tax-heading-area, #page-heading-area {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: Mobile) {
  #tax-heading-area, #page-heading-area {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
#tax-heading-area .group-title-area, #page-heading-area .group-title-area {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
}
#tax-heading-area .group-title-area.column, #page-heading-area .group-title-area.column {
  flex-direction: column;
}
#tax-heading-area .group-title-area h1.title, #page-heading-area .group-title-area h1.title {
  font-size: 36px;
  font-weight: 700;
  line-height: 130%;
  color: var(--cp-heading-color);
  transition: all 0.3s linear;
  margin: 0;
}
@media screen and (max-width: 767px) {
  #tax-heading-area .group-title-area h1.title, #page-heading-area .group-title-area h1.title {
    font-size: 22px;
  }
}
#tax-heading-area .group-title-area .description-area p, #page-heading-area .group-title-area .description-area p {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: var(--cp-description-color);
  transition: all 0.3s linear;
  margin: 0;
}
@media screen and (max-width: 767px) {
  #tax-heading-area .group-title-area .description-area p, #page-heading-area .group-title-area .description-area p {
    font-size: 14px;
  }
}
#tax-heading-area .group-description-area, #page-heading-area .group-description-area {
  margin-top: 30px;
}
#tax-heading-area .group-description-area p, #page-heading-area .group-description-area p {
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  color: var(--cp-description-color);
  transition: all 0.3s linear;
}

.coupon-section {
  padding: 30px 0;
}
.coupon-section h1.coupon-section-title, .coupon-section h2.coupon-section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 130%;
  color: var(--cp-heading-color);
  transition: all 0.3s linear;
  text-align: center;
  margin-bottom: 40px;
  /* Styles for screens larger than 1200px (e.g., larger desktops) */
  /* Styles for screens between 992px and 1199px (e.g., larger tablets and smaller desktops) */
  /* Styles for screens between 768px and 991px (e.g., small tablets) */
  /* Styles for screens smaller than 768px (e.g., mobile phones) */
}
@media screen and (max-width: 767px) {
  .coupon-section h1.coupon-section-title, .coupon-section h2.coupon-section-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .coupon-section h1.coupon-section-title, .coupon-section h2.coupon-section-title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: Mobile) {
  .coupon-section h1.coupon-section-title, .coupon-section h2.coupon-section-title {
    margin-bottom: 20px;
  }
}

.site-section {
  padding: 30px 0;
}
.site-section h2.site-section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 130%;
  color: var(--cp-heading-color);
  transition: all 0.3s linear;
  text-align: center;
  margin-bottom: 40px;
  /* Styles for screens larger than 1200px (e.g., larger desktops) */
  /* Styles for screens between 992px and 1199px (e.g., larger tablets and smaller desktops) */
  /* Styles for screens between 768px and 991px (e.g., small tablets) */
  /* Styles for screens smaller than 768px (e.g., mobile phones) */
}
@media screen and (max-width: 767px) {
  .site-section h2.site-section-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .site-section h2.site-section-title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: Mobile) {
  .site-section h2.site-section-title {
    margin-bottom: 20px;
  }
}

#store-content-area:has(.store-content-area, .store-aside-area) {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
}
#store-content-area:has(.store-content-area, .store-aside-area) .store-content-area {
  min-width: 70%;
  flex: 1;
}
#store-content-area:has(.store-content-area, .store-aside-area) .store-content-area .store-heading {
  margin: 30px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  color: var(--cp-title-color);
  transition: all 0.3s linear;
}
#store-content-area:has(.store-content-area, .store-aside-area) .store-aside-area {
  width: 30%;
  gap: 1.25rem;
  display: flex;
  flex-direction: column;
}
#store-content-area:has(.store-content-area, .store-aside-area) .store-aside-area ol,
#store-content-area:has(.store-content-area, .store-aside-area) .store-aside-area ul {
  margin-top: 0;
  padding: 0 0 0 32px;
}
#store-content-area:has(.store-content-area, .store-aside-area) .store-aside-area .addon-item {
  color: var(--cp-title-color);
}
#store-content-area:has(.store-content-area, .store-aside-area) .store-aside-area .answer {
  font-weight: 400 !important;
}
#store-content-area:has(.store-content-area, .store-aside-area) .store-aside-area p {
  margin-bottom: 10px;
}
#store-content-area:has(.store-content-area, .store-aside-area) .card {
  display: block;
  width: 100%;
  padding: 16px;
  background-color: #fff;
  border-radius: 10px;
  border: none;
  box-shadow: 0 2px 6px 4px rgba(51, 51, 51, 0.09);
}
#store-content-area:has(.store-content-area, .store-aside-area) .card:empty {
  display: none;
}
#store-content-area:has(.store-content-area, .store-aside-area) .card ul, #store-content-area:has(.store-content-area, .store-aside-area) .card ol {
  margin-top: 0;
  padding: 0 0 0 32px;
}
#store-content-area:has(.store-content-area, .store-aside-area) .store-table-summary table {
  width: 100%;
  margin-top: 8px;
  /* .5rem */
  color: var(--cp-title-color);
  background-color: #fff;
  border-collapse: collapse;
  border-spacing: 0;
}
#store-content-area:has(.store-content-area, .store-aside-area) .store-table-summary table th {
  font-weight: 600;
  text-align: left;
  background-color: #f8f8f8;
  text-transform: capitalize;
}
#store-content-area:has(.store-content-area, .store-aside-area) .store-table-summary table td,
#store-content-area:has(.store-content-area, .store-aside-area) .store-table-summary table th {
  padding: 12px;
  /* .75rem */
  border: 1px solid #e4e4e4;
}

.section-trending-coupon {
  max-width: 930px;
  margin: 0 auto;
}

.box-coupon-normal {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: column;
  flex-wrap: nowrap;
  background: #FFFFFF;
  border: none;
  box-shadow: 0 2px 6px 4px rgba(51, 51, 51, 0.09);
  border-radius: 10px;
  margin-bottom: 20px;
}
.box-coupon-normal .cp-click {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  padding: 16px;
  /* Styles for screens larger than 1200px (e.g., larger desktops) */
  /* Styles for screens between 992px and 1199px (e.g., larger tablets and smaller desktops) */
  /* Styles for screens between 768px and 991px (e.g., small tablets) */
  /* Styles for screens smaller than 768px (e.g., mobile phones) */
}
.box-coupon-normal .cp-click:hover {
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .box-coupon-normal .cp-click {
    padding: 8px;
  }
}
@media screen and (max-width: Mobile) {
  .box-coupon-normal .cp-click {
    padding: 8px;
  }
}
.box-coupon-normal .box-left {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 125px;
  max-width: 150px;
  overflow: hidden;
  min-height: 140px;
  background-image: url(../../image/background-border.svg);
  border-radius: 8px;
}
.box-coupon-normal .box-left .offer-area {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex: 1;
}
.box-coupon-normal .box-left .offer-area .offer {
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  color: var(--cp-primary-color);
  transition: all 0.3s linear;
}
@media screen and (max-width: 992px) {
  .box-coupon-normal .box-left .offer-area .offer {
    font-size: 26px;
  }
}
.box-coupon-normal .box-left .offer-area .suffix {
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  color: var(--cp-primary-color);
  transition: all 0.3s linear;
}
.box-coupon-normal .box-center {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  width: 55%;
  padding: 0 24px;
}
.box-coupon-normal .box-center .info-area .store-details {
  align-items: center;
  display: flex;
  font-family: Poppins, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  gap: 0.25rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
.box-coupon-normal .box-center .info-area .store-details img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.box-coupon-normal .box-center .info-area .title {
  font-size: 22px;
  font-weight: 700;
  line-height: 115%;
  color: var(--cp-primary-color);
  transition: all 0.3s linear;
  letter-spacing: -0.5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .box-coupon-normal .box-center .info-area .title {
    font-size: 18px;
  }
}
.box-coupon-normal .box-center .info-area .description {
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  color: var(--cp-description-color);
  transition: all 0.3s linear;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px;
}
@media screen and (max-width: 992px) {
  .box-coupon-normal .box-center .info-area .description {
    font-size: 14px;
  }
}
.box-coupon-normal .box-center .info-area .description:empty {
  display: none;
}
.box-coupon-normal .box-center .info-area .group-type-area {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 5px;
}
.box-coupon-normal .box-center .info-area .group-type-area .type-area {
  margin-right: 4px;
}
.box-coupon-normal .box-center .info-area .group-type-area .type-area span {
  text-transform: uppercase;
}
.box-coupon-normal .box-right {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: flex-end;
  width: 30%;
}
.box-coupon-normal .box-right .coupon-area {
  position: relative;
  display: block;
  width: 216px;
  height: 50px;
  transition: padding 0.1s;
  /* Styles for screens larger than 1200px (e.g., larger desktops) */
  /* Styles for screens between 992px and 1199px (e.g., larger tablets and smaller desktops) */
  /* Styles for screens between 768px and 991px (e.g., small tablets) */
  /* Styles for screens smaller than 768px (e.g., mobile phones) */
  /* Styles for screens larger than 1200px (e.g., larger desktops) */
  /* Styles for screens between 992px and 1199px (e.g., larger tablets and smaller desktops) */
  /* Styles for screens between 768px and 991px (e.g., small tablets) */
  /* Styles for screens smaller than 768px (e.g., mobile phones) */
}
@media screen and (max-width: 1200px) {
  .box-coupon-normal .box-right .coupon-area {
    width: 195px;
  }
}
@media screen and (max-width: 991px) {
  .box-coupon-normal .box-right .coupon-area {
    height: 40px;
  }
}
@media screen and (max-width: Tablet) {
  .box-coupon-normal .box-right .coupon-area {
    height: 40px;
  }
}
.box-coupon-normal .box-right .coupon-area .cover-area {
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  color: #FFF;
  transition: all 0.3s linear;
  font-family: Poppins, sans-serif;
  background-color: var(--cp-primary-color);
  border: 2px solid transparent;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0.75rem 0.25rem;
  text-align: center;
  position: relative;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 216px;
  height: 50px;
  z-index: 2;
  transition: width 0.2s;
  /* Styles for screens larger than 1200px (e.g., larger desktops) */
  /* Styles for screens between 992px and 1199px (e.g., larger tablets and smaller desktops) */
  /* Styles for screens between 768px and 991px (e.g., small tablets) */
  /* Styles for screens smaller than 768px (e.g., mobile phones) */
  /* Styles for screens larger than 1200px (e.g., larger desktops) */
  /* Styles for screens between 992px and 1199px (e.g., larger tablets and smaller desktops) */
  /* Styles for screens between 768px and 991px (e.g., small tablets) */
  /* Styles for screens smaller than 768px (e.g., mobile phones) */
}
@media screen and (max-width: 1200px) {
  .box-coupon-normal .box-right .coupon-area .cover-area {
    width: 195px;
  }
}
@media screen and (max-width: 991px) {
  .box-coupon-normal .box-right .coupon-area .cover-area {
    height: 40px;
  }
}
@media screen and (max-width: Tablet) {
  .box-coupon-normal .box-right .coupon-area .cover-area {
    height: 40px;
  }
}
.box-coupon-normal .box-right .coupon-area .code-area {
  font-size: 26px;
  font-weight: 600;
  line-height: 130%;
  color: #000;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-right: 8px;
  overflow: hidden;
  white-space: nowrap;
  background-color: #edf2ff;
  border-radius: 4px;
  position: absolute;
  top: 0;
  z-index: 1;
  background-image: url(../../image/background-border.svg);
}
@media screen and (max-width: 992px) {
  .box-coupon-normal .box-right .coupon-area .code-area {
    font-size: 22px;
  }
}
.box-coupon-normal .box-right .coupon-area.have-code .cover-area {
  width: 185px;
  /* Styles for screens larger than 1200px (e.g., larger desktops) */
  /* Styles for screens between 992px and 1199px (e.g., larger tablets and smaller desktops) */
  /* Styles for screens between 768px and 991px (e.g., small tablets) */
  /* Styles for screens smaller than 768px (e.g., mobile phones) */
}
@media screen and (max-width: 1200px) {
  .box-coupon-normal .box-right .coupon-area.have-code .cover-area {
    width: 165px;
  }
}
.box-coupon-normal .box-right .coupon-area.have-code:hover .cover-area {
  width: 168px;
  /* Styles for screens larger than 1200px (e.g., larger desktops) */
  /* Styles for screens between 992px and 1199px (e.g., larger tablets and smaller desktops) */
  /* Styles for screens between 768px and 991px (e.g., small tablets) */
  /* Styles for screens smaller than 768px (e.g., mobile phones) */
}
@media screen and (max-width: 1200px) {
  .box-coupon-normal .box-right .coupon-area.have-code:hover .cover-area {
    width: 155px;
  }
}
.box-coupon-normal .box-right .coupon-area:hover .cover-area {
  background-color: var(--cp-hover-color);
  border-color: var(--cp-hover-color);
}
.box-coupon-normal .box-right .coupon-area.revealed .cover-area {
  display: none;
}
.box-coupon-normal .box-right .coupon-area.revealed .code-area {
  justify-content: center;
  padding: 0;
}
.box-coupon-normal .saved {
  background-color: #e6faf6;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  color: #167c62;
  display: block;
  font-family: Poppins, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.29;
  padding: 0.5rem 1rem;
}
.box-coupon-normal .saved span {
  font-size: 12px;
  font-weight: 700;
  line-height: 130%;
  color: #1bbc9b;
  transition: all 0.3s linear;
}
.box-coupon-normal.style-two .box-left {
  background-image: none;
}

.box-coupon-trending {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: row;
  flex-wrap: nowrap;
  background-color: #fff;
  border: 1px solid #e8eef7;
  border-radius: 4px;
  box-sizing: content-box;
  cursor: pointer;
  margin-bottom: 15px;
}
.box-coupon-trending a {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
}
.box-coupon-trending .box-left {
  min-width: 270px;
  background-color: #f9fafd;
  border-radius: 4px 0 0 4px;
  border-right: 1px solid #e8eef7;
  padding: 25px 15px 25px 25px;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 15px;
}
.box-coupon-trending .box-left .image-area {
  display: flex;
  height: 90px;
  min-width: 90px;
  width: 90px;
}
.box-coupon-trending .box-left .image-area img {
  border: 1px solid #f2f4f7;
  border-radius: 3px;
  display: block;
  height: 90px;
  min-width: 90px;
  width: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}
.box-coupon-trending .box-left .offer-area {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex: 1;
}
.box-coupon-trending .box-left .offer-area .offer {
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  color: var(--cp-primary-color);
  transition: all 0.3s linear;
}
@media screen and (max-width: 992px) {
  .box-coupon-trending .box-left .offer-area .offer {
    font-size: 26px;
  }
}
.box-coupon-trending .box-left .offer-area .offer:empty {
  display: none;
}
.box-coupon-trending .box-left .offer-area .suffix {
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  color: var(--cp-primary-color);
  transition: all 0.3s linear;
}
.box-coupon-trending .box-left .offer-area .suffix:empty {
  display: none;
}
.box-coupon-trending .box-left .offer-area .deal {
  font-size: 12px;
  font-weight: 700;
  line-height: 100%;
  color: var(--cp-second-color);
  transition: all 0.3s linear;
  margin-top: 15px;
}
.box-coupon-trending .box-left .offer-area .deal:empty {
  display: none;
}
.box-coupon-trending .box-center {
  flex-grow: 1;
  padding: 25px;
  overflow: hidden;
}
.box-coupon-trending .box-center .info-area .title {
  font-size: 22px;
  font-weight: 700;
  line-height: 130%;
  color: var(--cp-primary-color);
  transition: all 0.3s linear;
  letter-spacing: -0.5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .box-coupon-trending .box-center .info-area .title {
    font-size: 18px;
  }
}
.box-coupon-trending .box-center .info-area .description {
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  color: var(--cp-description-color);
  transition: all 0.3s linear;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px;
}
@media screen and (max-width: 992px) {
  .box-coupon-trending .box-center .info-area .description {
    font-size: 14px;
  }
}
.box-coupon-trending .box-center .info-area .merchant-mobile {
  display: none;
}
.box-coupon-trending .box-center .saved {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 2px;
  border: 1px solid #c6f6ed;
  padding: 5px 15px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #eafbf8;
}
.box-coupon-trending .box-center .saved span {
  font-size: 12px;
  font-weight: 700;
  line-height: 130%;
  color: #1bbc9b;
  transition: all 0.3s linear;
}
.box-coupon-trending .box-right {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  padding-right: 25px;
  min-width: 230px;
}
.box-coupon-trending .box-right .coupon-area {
  position: relative;
  display: block;
  width: 216px;
  height: 50px;
  transition: padding 0.1s;
  /* Styles for screens larger than 1200px (e.g., larger desktops) */
  /* Styles for screens between 992px and 1199px (e.g., larger tablets and smaller desktops) */
  /* Styles for screens between 768px and 991px (e.g., small tablets) */
  /* Styles for screens smaller than 768px (e.g., mobile phones) */
  /* Styles for screens larger than 1200px (e.g., larger desktops) */
  /* Styles for screens between 992px and 1199px (e.g., larger tablets and smaller desktops) */
  /* Styles for screens between 768px and 991px (e.g., small tablets) */
  /* Styles for screens smaller than 768px (e.g., mobile phones) */
}
@media screen and (max-width: 1200px) {
  .box-coupon-trending .box-right .coupon-area {
    width: 195px;
  }
}
@media screen and (max-width: 991px) {
  .box-coupon-trending .box-right .coupon-area {
    height: 40px;
  }
}
@media screen and (max-width: Tablet) {
  .box-coupon-trending .box-right .coupon-area {
    height: 40px;
  }
}
.box-coupon-trending .box-right .coupon-area .cover-area {
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  color: #FFF;
  transition: all 0.3s linear;
  font-family: Poppins, sans-serif;
  background-color: var(--cp-primary-color);
  border: 2px solid transparent;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0.75rem 0.25rem;
  text-align: center;
  position: relative;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 216px;
  height: 50px;
  z-index: 2;
  transition: width 0.2s;
  /* Styles for screens larger than 1200px (e.g., larger desktops) */
  /* Styles for screens between 992px and 1199px (e.g., larger tablets and smaller desktops) */
  /* Styles for screens between 768px and 991px (e.g., small tablets) */
  /* Styles for screens smaller than 768px (e.g., mobile phones) */
  /* Styles for screens larger than 1200px (e.g., larger desktops) */
  /* Styles for screens between 992px and 1199px (e.g., larger tablets and smaller desktops) */
  /* Styles for screens between 768px and 991px (e.g., small tablets) */
  /* Styles for screens smaller than 768px (e.g., mobile phones) */
}
@media screen and (max-width: 1200px) {
  .box-coupon-trending .box-right .coupon-area .cover-area {
    width: 195px;
  }
}
@media screen and (max-width: 991px) {
  .box-coupon-trending .box-right .coupon-area .cover-area {
    height: 40px;
  }
}
@media screen and (max-width: Tablet) {
  .box-coupon-trending .box-right .coupon-area .cover-area {
    height: 40px;
  }
}
.box-coupon-trending .box-right .coupon-area .code-area {
  font-size: 26px;
  font-weight: 600;
  line-height: 130%;
  color: #000;
  transition: all 0.3s linear;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-right: 8px;
  overflow: hidden;
  white-space: nowrap;
  background-color: #edf2ff;
  border-radius: 4px;
  position: absolute;
  top: 0;
  z-index: 1;
  background-image: url(../../image/background-border.svg);
}
@media screen and (max-width: 992px) {
  .box-coupon-trending .box-right .coupon-area .code-area {
    font-size: 22px;
  }
}
.box-coupon-trending .box-right .coupon-area.have-code .cover-area {
  width: 185px;
  /* Styles for screens larger than 1200px (e.g., larger desktops) */
  /* Styles for screens between 992px and 1199px (e.g., larger tablets and smaller desktops) */
  /* Styles for screens between 768px and 991px (e.g., small tablets) */
  /* Styles for screens smaller than 768px (e.g., mobile phones) */
}
@media screen and (max-width: 1200px) {
  .box-coupon-trending .box-right .coupon-area.have-code .cover-area {
    width: 165px;
  }
}
.box-coupon-trending .box-right .coupon-area.have-code:hover .cover-area {
  width: 168px;
  /* Styles for screens larger than 1200px (e.g., larger desktops) */
  /* Styles for screens between 992px and 1199px (e.g., larger tablets and smaller desktops) */
  /* Styles for screens between 768px and 991px (e.g., small tablets) */
  /* Styles for screens smaller than 768px (e.g., mobile phones) */
}
@media screen and (max-width: 1200px) {
  .box-coupon-trending .box-right .coupon-area.have-code:hover .cover-area {
    width: 155px;
  }
}
.box-coupon-trending .box-right .coupon-area:hover .cover-area {
  background-color: var(--cp-hover-color);
  border-color: var(--cp-hover-color);
}
.box-coupon-trending .box-right .merchant {
  margin: 0;
}
.box-coupon-trending .box-right .merchant .merchant-name {
  font-size: 12px;
  font-weight: 700;
  line-height: 130%;
  color: var(--cp-second-color);
  transition: all 0.3s linear;
  text-decoration: underline;
  text-align: right;
  letter-spacing: -0.3px;
}

.box-coupon-square {
  box-sizing: content-box;
  flex: 1 1 auto;
  max-width: 188px;
  min-width: 168px;
}
.box-coupon-square a {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: #fff;
  border-radius: 4px;
  height: 100%;
  outline: none;
  padding-top: 35px;
  position: relative;
  text-align: center;
  width: 100%;
  box-shadow: 0 2px 6px 4px rgba(51, 51, 51, 0.09);
}
.box-coupon-square .image-area {
  display: flex;
  height: 99px;
  min-width: 99px;
  width: 99px;
}
.box-coupon-square .image-area img {
  display: inline-block;
  height: 99px;
  margin: auto auto 5px;
  width: 99px;
  -o-object-fit: contain;
     object-fit: contain;
}
.box-coupon-square .merchant-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 120%;
  color: var(--cp-second-color);
  transition: all 0.3s linear;
  min-height: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.box-coupon-square .offer-area {
  background-color: var(--cp-primary-color);
  border-radius: 2px;
  margin: 10px auto 0;
  padding: 5px 0;
  width: 100%;
  min-height: 35px;
}
.box-coupon-square .offer-area .offer, .box-coupon-square .offer-area .suffix {
  font-size: 18px;
  font-weight: 700;
  line-height: 110%;
  color: #fff;
  transition: all 0.3s linear;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  letter-spacing: -0.3px;
}

.box-coupon-slide {
  box-sizing: content-box;
}
.box-coupon-slide a {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #e8eef7;
  height: 100%;
  outline: none;
  padding: 55px 25px 15px;
  position: relative;
  text-align: center;
  width: 100%;
  min-height: 380px;
}
.box-coupon-slide .image-area {
  display: flex;
  height: 180px;
  min-width: 99px;
  width: 180px;
}
.box-coupon-slide .image-area img {
  display: inline-block;
  height: 180px;
  margin: auto auto 5px;
  width: 180px;
  -o-object-fit: contain;
     object-fit: contain;
}
.box-coupon-slide .merchant-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
  color: var(--cp-second-color);
  transition: all 0.3s linear;
  letter-spacing: -0.3px;
  margin-top: 15px;
}
.box-coupon-slide .description {
  font-size: 22px;
  font-weight: 700;
  line-height: 130%;
  color: var(--cp-heading-color);
  transition: all 0.3s linear;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 5px;
  max-height: 55px;
}

#coupon-modal {
  display: none;
}
#coupon-modal.show {
  display: block;
}
#coupon-modal .modal-wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
#coupon-modal .modal-wrapper .close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background-color: #f8f8f8;
  border-radius: 50%;
  height: 38px;
  margin: 0;
  padding: 0;
  width: 38px;
}
#coupon-modal .modal-wrapper .close:hover .close-icon {
  background-color: #3258b3;
}
#coupon-modal .modal-wrapper .close .close-icon {
  background-color: #505050;
  height: 14px;
  margin: auto;
  -webkit-mask-image: url(../../icon/icon-close.svg);
  mask-image: url(../../icon/icon-close.svg);
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  width: 14px;
}
#coupon-modal .modal-wrapper .modal-overlay {
  background: rgba(51, 51, 51, 0.48);
  height: 100%;
  width: 100%;
}
#coupon-modal .modal-wrapper .modal-content-area {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: column;
  flex-wrap: nowrap;
  box-shadow: 0 2px 6px 4px rgba(51, 51, 51, 0.09);
  border-radius: 10px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 30px));
  z-index: 10000;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1.25rem 3rem;
  width: 41.25rem;
  max-width: 90%;
}
#coupon-modal .modal-wrapper .modal-content-area .image-area {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
#coupon-modal .modal-wrapper .modal-content-area .image-area img {
  border-radius: 10px;
  display: block;
  height: 4.5rem;
  width: 4.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
#coupon-modal .modal-wrapper .modal-content-area .title {
  font-size: 26px;
  font-weight: 600;
  line-height: 130%;
  color: var(--cp-title-color);
  transition: all 0.3s linear;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #coupon-modal .modal-wrapper .modal-content-area .title {
    font-size: 22px;
  }
}
#coupon-modal .modal-wrapper .modal-content-area .code-desc {
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
  color: var(--cp-title-color);
  transition: all 0.3s linear;
  text-align: center;
  cursor: pointer;
}
#coupon-modal .modal-wrapper .modal-content-area .code-desc a {
  color: var(--cp-primary-color);
  font-family: Open Sans, sans-serif;
}
#coupon-modal .modal-wrapper .modal-content-area .code-area {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  background-image: url(../../image/background-border.svg);
  border-radius: 8px;
  padding: 4px;
  width: 70%;
  min-width: -moz-fit-content;
  min-width: fit-content;
  max-width: 80%;
  margin: 10px auto 15px;
  background-color: #edf2ff;
}
#coupon-modal .modal-wrapper .modal-content-area .code-area input,
#coupon-modal .modal-wrapper .modal-content-area .code-area button {
  margin: 0;
}
#coupon-modal .modal-wrapper .modal-content-area .code-area #code {
  padding: 4px 4px 4px 16px;
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  min-width: -moz-fit-content;
  min-width: fit-content;
  font-size: 36px;
  font-weight: 700;
  line-height: 130%;
  color: #000;
  transition: all 0.3s linear;
  letter-spacing: 10px;
  /* Styles for screens larger than 1200px (e.g., larger desktops) */
  /* Styles for screens between 992px and 1199px (e.g., larger tablets and smaller desktops) */
  /* Styles for screens between 768px and 991px (e.g., small tablets) */
  /* Styles for screens smaller than 768px (e.g., mobile phones) */
  font-family: monospace;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  #coupon-modal .modal-wrapper .modal-content-area .code-area #code {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  #coupon-modal .modal-wrapper .modal-content-area .code-area #code {
    letter-spacing: 2px;
    min-width: unset;
  }
}
@media screen and (max-width: Mobile) {
  #coupon-modal .modal-wrapper .modal-content-area .code-area #code {
    letter-spacing: 2px;
    min-width: unset;
  }
}
#coupon-modal .modal-wrapper .modal-content-area .code-area #code:focus, #coupon-modal .modal-wrapper .modal-content-area .code-area #code:focus-visible, #coupon-modal .modal-wrapper .modal-content-area .code-area #code:focus-within {
  border: none;
  outline: none;
}
#coupon-modal .modal-wrapper .modal-content-area .code-area button {
  color: #fff;
  background-color: var(--cp-primary-color);
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  color: #fff;
  transition: all 0.3s linear;
  font-family: Poppins, sans-serif;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  padding: 17px 19px;
}
@media screen and (max-width: 767px) {
  #coupon-modal .modal-wrapper .modal-content-area .code-area button {
    font-size: 14px;
  }
}
#coupon-modal .modal-wrapper .modal-content-area .code-area button:hover {
  background: var(--cp-hover-color);
}
#coupon-modal .modal-wrapper .modal-content-area .redirect-button-area {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}
#coupon-modal .modal-wrapper .modal-content-area .redirect-button-area a {
  display: block;
  height: 3rem;
  padding: 0.75rem 1rem;
  color: #4355ab;
  background-color: #edf2ff;
  font-weight: 600;
  font-size: 1rem;
  font-family: Poppins, sans-serif;
  line-height: 1.5;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
#coupon-modal .modal-wrapper .modal-content-area .redirect-button-area a.link-no-code {
  background-color: var(--cp-primary-color);
  color: #FFF;
}
#coupon-modal .modal-wrapper .modal-content-area .redirect-button-area a:hover {
  color: #FFF;
  background-color: var(--cp-hover-color);
}
#coupon-modal .modal-wrapper .modal-content-area .no-code-desc {
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
  color: var(--cp-title-color);
  transition: all 0.3s linear;
  text-align: center;
  margin-top: 20px;
}
#coupon-modal .modal-wrapper .modal-content-area .line-area {
  width: 100%;
  height: 1px;
  background: #edf1f8;
  margin: 20px 0;
}
#coupon-modal .modal-wrapper .modal-content-area .offer-details {
  margin-bottom: 10px;
}
#coupon-modal .modal-wrapper .modal-content-area .offer-details .heading {
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
  color: var(--cp-description-color);
  transition: all 0.3s linear;
}
#coupon-modal .modal-wrapper .modal-content-area .offer-details .description .text {
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  color: var(--cp-description-color);
  transition: all 0.3s linear;
}
#coupon-modal .modal-wrapper .modal-content-area .expired {
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  color: var(--cp-description-color);
  transition: all 0.3s linear;
}
#coupon-modal .modal-wrapper .modal-content-area .expired .date {
  font-weight: 600;
}

.pagination-area {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 55px;
}
.pagination-area:empty {
  display: none;
}
.pagination-area .page-numbers {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  color: #667085;
  transition: all 0.3s linear;
  padding: 12px;
  border-radius: 20px;
  text-decoration: none;
  width: 40px;
  height: 40px;
}
.pagination-area .page-numbers.current {
  background: var(--cp-primary-color);
  color: #FFF;
}
.pagination-area .page-numbers.prev, .pagination-area .page-numbers.next {
  border-radius: 8px;
  border: 1px solid #D0D5DD;
  background: var(--White, #FFF);
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  width: 48px;
  height: 36px;
  padding: 8px 14px;
}
.pagination-area .page-numbers.prev {
  margin-right: 10px;
}
.pagination-area .page-numbers.next {
  margin-left: 10px;
}
.pagination-area .page-numbers img {
  width: 100%;
}

.trending-search-wrapper, .popular-article-wrapper {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 25px 45px;
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 6px, transparent 0, transparent 10px, rgba(0, 0, 0, 0.2) 0), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 6px, transparent 0, transparent 10px, rgba(0, 0, 0, 0.2) 0), repeating-linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 6px, transparent 0, transparent 10px, rgba(0, 0, 0, 0.2) 0), repeating-linear-gradient(270deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 6px, transparent 0, transparent 10px, rgba(0, 0, 0, 0.2) 0);
  background-position: 0 0, 0 0, 100% 0, 0 100%;
  background-repeat: no-repeat;
  background-size: 1px 100%, 100% 1px, 1px 100%, 100% 1px;
  border-radius: 5px;
}
.trending-search-wrapper .label, .popular-article-wrapper .label {
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
  color: var(--cp-heading-color);
  transition: all 0.3s linear;
}
.trending-search-wrapper .link, .popular-article-wrapper .link {
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
  color: var(--cp-second-color);
  transition: all 0.3s linear;
  text-decoration: underline;
}
.trending-search-wrapper .link:hover, .popular-article-wrapper .link:hover {
  color: var(--cp-primary-color);
}

.cp-search-form {
  position: relative;
  margin: 0;
}
.cp-search-form .input-wrapper {
  position: relative;
  min-width: 15rem;
}
.cp-search-form .input-wrapper .icon-search {
  display: flex;
  position: absolute;
  top: 50%;
  left: 1.25rem;
  height: 1rem;
  width: 1rem;
  transform: translateY(-50%);
}
.cp-search-form .input-wrapper input[type=search] {
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  height: 3rem;
  margin: 0;
}
.cp-search-form .input-wrapper .clear-btn {
  background-color: #f8f8f8;
  border-radius: 50%;
  color: #505050;
  position: absolute;
  right: 0.75rem;
  top: 50%;
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  padding: 0;
  margin: 0;
  transform: translateY(-50%);
  display: none;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.cp-search-form .input-wrapper .clear-btn.active {
  display: flex;
}
.cp-search-form .dropdown.search-suggestions {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 6px 4px rgba(51, 51, 51, 0.09);
  flex-direction: column;
  margin-top: 0.5rem;
  padding: 0.25rem;
  position: absolute;
  width: 100%;
  list-style-type: none;
  display: none;
  z-index: 999;
}
.cp-search-form .dropdown.search-suggestions:empty {
  display: none;
}
.cp-search-form .dropdown.search-suggestions.active {
  display: flex;
}
.cp-search-form .dropdown.search-suggestions .dropdown-item {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.33;
  color: var(--cp-title-color);
  transition: all 0.3s linear;
  padding: 0.5rem;
  text-transform: none;
  border-radius: 4px;
}
.cp-search-form .dropdown.search-suggestions .dropdown-item:hover {
  background: var(--cp-hover-color);
}
.cp-search-form .dropdown.search-suggestions .dropdown-item .site-logo {
  border-radius: 4px;
  height: 3rem;
  width: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.cp-search-form .dropdown.search-suggestions .dropdown-item .store {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  overflow: hidden;
}
.cp-search-form .dropdown.search-suggestions .dropdown-item .store .name, .cp-search-form .dropdown.search-suggestions .dropdown-item .store .domain {
  font-size: inherit;
  line-height: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cp-search-form .dropdown.search-suggestions .dropdown-item .store .name {
  color: var(--cp-primary-color);
}
.cp-search-form .dropdown.search-suggestions .dropdown-item .store .name em {
  color: var(--cp-title-color);
  font-style: normal;
}
.cp-search-form .dropdown.search-suggestions .dropdown-item .store .domain {
  color: var(--cp-description-color);
}
.cp-search-form .dropdown.search-suggestions .no-results {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem;
  text-align: center;
}

/* Styles for screens larger than 1200px (e.g., larger desktops) */
/* Styles for screens between 992px and 1199px (e.g., larger tablets and smaller desktops) */
/* Styles for screens between 768px and 991px (e.g., small tablets) */
@media screen and (max-width: 991px) {
  #store-content-area:has(.store-content-area, .store-aside-area) {
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    /* TWEENER - IE 10 */
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    /* NEW, Spec - Firefox, Chrome, Opera */
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 16px;
  }
  #store-content-area:has(.store-content-area, .store-aside-area) .store-content-area,
  #store-content-area:has(.store-content-area, .store-aside-area) .store-aside-area {
    width: 100%;
  }
}
/* Styles for screens smaller than 768px (e.g., mobile phones) */
@media screen and (max-width: Tablet) {
  #store-content-area:has(.store-content-area, .store-aside-area) {
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    /* TWEENER - IE 10 */
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    /* NEW, Spec - Firefox, Chrome, Opera */
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 16px;
  }
  #store-content-area:has(.store-content-area, .store-aside-area) .store-content-area,
  #store-content-area:has(.store-content-area, .store-aside-area) .store-aside-area {
    width: 100%;
  }
}
/* Styles for screens larger than 1200px (e.g., larger desktops) */
/* Styles for screens between 992px and 1199px (e.g., larger tablets and smaller desktops) */
/* Styles for screens between 768px and 991px (e.g., small tablets) */
/* Styles for screens smaller than 768px (e.g., mobile phones) */
@media screen and (max-width: 767px) {
  .box-coupon {
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    /* TWEENER - IE 10 */
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    /* NEW, Spec - Firefox, Chrome, Opera */
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    padding: 5px 15px 5px 5px;
  }
  .box-coupon .box-left {
    min-width: auto;
    padding: 0;
  }
  .box-coupon .box-left .offer-area {
    display: none;
  }
  .box-coupon .box-center {
    padding: 5px 0 0 10px;
  }
  .box-coupon .box-center .saved {
    display: none;
  }
  .box-coupon .box-center .info-area .description {
    display: none;
  }
  .box-coupon .box-center .info-area .merchant-mobile {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 110%;
    color: var(--cp-description-color);
    transition: all 0.3s linear;
  }
  .box-coupon .box-right {
    padding: 0;
    min-width: 25px;
  }
  .box-coupon .box-right .coupon-area, .box-coupon .box-right .merchant {
    display: none;
  }
  .box-coupon .box-right::after {
    content: "";
    width: 8px;
    height: 12px;
    background-image: url(../../icon/icon-arrow-right.svg);
    background-repeat: no-repeat;
    background-position: 50%;
  }
  .box-coupon-normal {
    padding: 0;
    flex-direction: column;
  }
  .box-coupon-normal .box-left {
    width: 88px;
    min-width: 88px;
    min-height: 110px;
  }
  .box-coupon-normal .box-left .offer-area {
    display: flex;
  }
  .box-coupon-normal .box-center {
    flex: 1;
    justify-content: flex-start;
  }
  .box-coupon-normal .box-center .info-area .store-details {
    margin-bottom: 5px;
  }
  .box-coupon-normal .box-right {
    width: 25px;
  }
  .box-coupon-normal .saved {
    width: 100%;
  }
  .box-coupon-square {
    padding: 0;
  }
  .box-coupon-slide {
    padding: 0;
    height: 265px !important;
    width: 236px !important;
  }
  .box-coupon-slide a {
    padding: 15px;
    min-height: 265px;
  }
  .box-coupon-slide .image-area {
    height: 100px;
    margin-top: 35px;
    width: 100px;
  }
  .box-coupon-slide .image-area img {
    height: 100px;
    width: 100px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #coupon-modal .modal-wrapper .modal-content-area {
    padding: 15px;
  }
  #coupon-modal .modal-wrapper .modal-content-area .code-area {
    width: 100%;
  }
  #coupon-modal .modal-wrapper .modal-content-area .code-area button {
    padding: 12px 16px;
  }
}
@media screen and (max-width: Mobile) {
  .box-coupon {
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    /* TWEENER - IE 10 */
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    /* NEW, Spec - Firefox, Chrome, Opera */
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    padding: 5px 15px 5px 5px;
  }
  .box-coupon .box-left {
    min-width: auto;
    padding: 0;
  }
  .box-coupon .box-left .offer-area {
    display: none;
  }
  .box-coupon .box-center {
    padding: 5px 0 0 10px;
  }
  .box-coupon .box-center .saved {
    display: none;
  }
  .box-coupon .box-center .info-area .description {
    display: none;
  }
  .box-coupon .box-center .info-area .merchant-mobile {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 110%;
    color: var(--cp-description-color);
    transition: all 0.3s linear;
  }
  .box-coupon .box-right {
    padding: 0;
    min-width: 25px;
  }
  .box-coupon .box-right .coupon-area, .box-coupon .box-right .merchant {
    display: none;
  }
  .box-coupon .box-right::after {
    content: "";
    width: 8px;
    height: 12px;
    background-image: url(../../icon/icon-arrow-right.svg);
    background-repeat: no-repeat;
    background-position: 50%;
  }
  .box-coupon-normal {
    padding: 0;
    flex-direction: column;
  }
  .box-coupon-normal .box-left {
    width: 88px;
    min-width: 88px;
    min-height: 110px;
  }
  .box-coupon-normal .box-left .offer-area {
    display: flex;
  }
  .box-coupon-normal .box-center {
    flex: 1;
    justify-content: flex-start;
  }
  .box-coupon-normal .box-center .info-area .store-details {
    margin-bottom: 5px;
  }
  .box-coupon-normal .box-right {
    width: 25px;
  }
  .box-coupon-normal .saved {
    width: 100%;
  }
  .box-coupon-square {
    padding: 0;
  }
  .box-coupon-slide {
    padding: 0;
    height: 265px !important;
    width: 236px !important;
  }
  .box-coupon-slide a {
    padding: 15px;
    min-height: 265px;
  }
  .box-coupon-slide .image-area {
    height: 100px;
    margin-top: 35px;
    width: 100px;
  }
  .box-coupon-slide .image-area img {
    height: 100px;
    width: 100px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #coupon-modal .modal-wrapper .modal-content-area {
    padding: 15px;
  }
  #coupon-modal .modal-wrapper .modal-content-area .code-area {
    width: 100%;
  }
  #coupon-modal .modal-wrapper .modal-content-area .code-area button {
    padding: 12px 16px;
  }
}

.wp-block-group h2 {
    color: #ffffffc7; /* Màu xanh cho tiêu đề Site Links */
    margin-bottom: 15px;
}
  
.site-links-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: Lato,Fallback,sans-serif;
}

.site-links-menu li {
    margin-bottom: 10px;
}

.site-links-menu a {
    color: #ffffffad; /* Màu xám nhạt cho các liên kết */
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-links-menu a:hover {
    color: #0073aa; /* Màu xanh khi hover */
}

/* Nếu bạn sử dụng Navigation block */
.wp-block-navigation a {
    color: #a0a5aa;
}

.wp-block-navigation a:hover {
    color: #0073aa;
}

.img-logo-footer {
    
}
/*# sourceMappingURL=maps/master.css.map */
