@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik+Moonrocks&display=swap');

:root {
    --default-color: #f7f7f7;
    --primary-color: #F08080;
    --light-color: #CD5C5C;
    --text-color: #000000;
}

html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background: #fff;
    color: #000000;
    scroll-behavior: smooth;
}

.default-color{
    color: var(--default-color)!important;
}

.primary-color{
    color: var(--primary-color)!important;
}

.text-color{
    color: var(--text-color)!important;
}

.light-color{
    color: var(--light-color)!important;
}

h1,h2,h3,h4,h5,h6,p,figure{
    margin: 0;
}

a:hover{
    text-decoration: none;
}

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

/* header css starts here */

header .navbar {
    z-index: 9;
    box-shadow: 0 0 9px #ddd;
}

.navbar-menu-list .navbar-nav {
    gap: 50px;
}

.navbar-menu-list .navbar-nav li a {
    padding: 0 !important;
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s;
}

.navbar-menu-list .navbar-nav li a:hover{
    color: var(--primary-color);
}

.logo .navbar-brand {
    max-height: 100%;
    margin: 0;
    padding: 0;
}

.logo .navbar-brand figure {
    max-width: 250px;
}

header .navbar-toggler {
    border: none;
    padding: 0;
}

header .navbar-toggler:focus{
    box-shadow: none;
}

header .navbar-toggler i {
    font-size: 30px;
    color: #000;
}

.mobile-logo-toggle {
    padding: 20px;
}

.mobile-logo {
    max-width: 200px;
}

.mobile-logo-toggle .navbar-toggler i {
    color: #fff;
    font-size: 20px;
}

/* header .navbar-toggler.collapsed .icon-bar {
    background-color: #000;
}

header .navbar-toggler .icon-bar {
    width: 22px;
    height: 3px;
    background-color: #000;
    display: block;
    margin: 5px auto;
    transition: all 0.2s;
}

header .navbar-toggler:not(.collapsed) .icon-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 5px);
}

header .navbar-toggler:not(.collapsed) .icon-bar:nth-child(2) {
    opacity: 0;
}

header .navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
} */
  

/* top banner css */

.slider-banner-item figure {
    width: 100%;
    height: 375px;
    border: 8px solid #615EFC;
}

.slider-banner-item figure img {
    width: 100%;
    height: 100%;
}

.top-banner-slider .owl-nav button {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto !important;
    width: 40px;
    height: 40px;
    background: var(--light-color) !important;
    color: var(--default-color) !important;
}

.top-banner-slider .owl-nav button.owl-prev {
    left: 8px;
}

.top-banner-slider .owl-nav button.owl-next {
    right: 8px;
}

/* offer category css starts here */

.total-offers-section {
    margin-top: 70px;
}

.total-offers-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.total-offers-wrap {
    background: var(--primary-color);
    text-align: center;
    color: var(--default-color);
    width: 190px;
    border-radius: 8px;
}

.total-icons-wrap {
    width: 75px;
    height: 75px;
    margin: auto;
    background: #fff;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 0 9px #ddd;
    position: relative;
    top: -20px;
}

.total-icons-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.total-offers-wrap-text {
    position: relative;
    padding-bottom: 10px;
}

.total-store-heading {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 400;
}

.total-store-number {
    font-size: 16px;
    font-weight: 700;
}

.section-padding{
    padding: 50px 0;
}

.section-heading {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* top stores css starts here */

.top-store-container {
    display: flex;
    gap: 20px;
}

.top-store-left {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.top-store-item {
    box-shadow: 0 0 9px #c3c3c3;
    display: block;
    border-radius: 8px;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    height: max-content;
}

.top-store-item figure {
    width: 100%;
    height: 85px;
}

.top-store-item figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.coupon-deals {
    color: var(--text-color);
    font-weight: 600;
    margin: 10px 0;
}

.offer-btn {
    background: var(--primary-color);
    color: var(--default-color);
    font-size: 16px;
    border: 1px solid var(--primary-color);
    transition: all 0.3s;
    padding: 8px 20px;
    display: inline-block;
}

.offer-btn:hover {
    background: 0;
    color: var(--primary-color);
}

.offer-btn:hover {
    background: 0;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.popular-stores {
    width: 280px;
    background: var(--primary-color);
    padding: 20px 15px 10px;
    color: var(--default-color);
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.popular-stores .section-heading {
    font-weight: 400;
    font-size: 25px;
}

.popular-stores figure {
    border-radius: 30px;
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 20px;
}

.popular-stores figure img {
    width: 75%;
    height: 100%;
    object-fit: contain;
}

.pop-store-heading {
    font-size: 20px;
}

.popular-stores .coupon-deals {
    background: var(--text-color);
    color: var(--default-color);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 0;
}

.full-width-store {
    margin-bottom: 50px;
}

.full-width-store-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* tab category css starts here */

.categoryNavTabs {
    border: 0;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.categoryNavTabs .nav-link {
    border: 0;
    box-shadow: 0 0 9px #adadad;
    border-radius: 5px;
    font-size: 16px;
    color: var(--text-color);
    padding: 10px 25px;
}

.categoryNavTabs .nav-link.active {
    background: var(--primary-color);
    color: var(--default-color);
}

.coupon-details-row {
    box-shadow: 0 0 9px #ddd;
    border-radius: 8px;
    padding: 20px 20px;
}

.coupon-details-logo {
    width: 250px;
}

.coupon-details-logo figure {
    width: 250px;
    height: 150px;
    box-shadow: 0 0 9px #ddd;
    border-radius: 8px;
    padding: 15px;
}

.coupon-details-logo figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.coupon-details-right-side {
    flex: 1;
    margin-left: 20px;
}

.coupon-details-center {
    margin: 0 40px;
    flex: 1;
}

.coupon-details-heading {
    font-size: 25px;
    line-height: 1.4;
    color: var(--text-color);
    margin-bottom: 15px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.column-para {
    font-size: 16px;
    text-align: center;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.training-video-row {
    gap: 15px;
}

.payout-box {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
}

.payout-box span {
    font-size: 20px;
    font-weight: 600;
}

.payout-box i {
    margin: 0 4px;
}

.coupon-details-row .offer-btn {
    max-width: 220px;
}

.expire-date {
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
}

/* footer starts css here */

footer {
    padding-top: 30px;
    box-shadow: 0 0 9px #ddd;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 15px;
}

.section-para {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 10px;
}

footer .section-para {
    padding-right: 30px;
}

.footer-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-menu li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 16px;
    line-height: 2;
    transition: all 0.3s;
}

.footer-menu li a:hover {
    color: var(--primary-color);
}

.footer-heading {
    font-size: 30px;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 30px;
}

.social-media {
    display: flex;
    gap: 8px;
}

.social-media a {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 0 9px #ddd;
    border-radius: 5px;
    color: var(--default-color);
    font-size: 16px;
    background: var(--primary-color);
    transition: all 0.3s;
}

.social-media a:hover {
    background: 0;
    color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 0 9px var(--primary-color);
}

.copyright {
    text-align: center;
    padding: 12px 0;
    border-top: 1px solid #ddd;
    margin-top: 15px;
    color: var(--text-color);
    font-size: 12px;
}

#loading-div-background{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
}

#loading-div{
    width: 300px;
    height: 150px;
    background-color: #fff;
    border: 5px solid #1468b3;
    text-align: center;
    color: #202020;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -150px;
    margin-top: -100px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

/* about us css */

.top-banner-container {
    position: relative;
    z-index: 0;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-banner-container:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--text-color);
    top: 0;
    left: 0;
    opacity: 0.7;
    z-index: -1;
}

.top-banner-container .section-heading {
    margin: 0;
    font-size: 45px;
    color: var(--default-color);
}

.about-us-img{
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.about-us-img img {
    width: 100%;
}

/* contact us */

.custom-btn {
    background: var(--primary-color);
    padding: 10px 25px;
    color: var(--default-color);
    font-size: 18px;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    transition: all 0.3s;
    font-weight: 400;
}

.custom-btn:hover {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.contact-form .custom-btn {
    min-width: 180px;
}

.contact-us-container {
    box-shadow: 0 0 9px #ddd;
    padding: 30px;
    border-radius: 8px;
}

.contact-form .form-control {
    box-shadow: 0 0 9px #ddd;
    padding: 10px 20px;
    border: 0;
    font-size: 15px;
    color: var(--text-color);
    border-radius: 5px;
}

.section-subheading {
    font-size: 30px;
    line-height: 1.5;
    margin: 30px 0 15px;
    font-weight: 600;
}

.privacy-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    list-style: upper-roman;
    padding-left: 8px;
    text-align: justify;
}

.privacy-policy a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s;
}

.privacy-policy a:hover {
    text-decoration: underline;
}

/* pop up form */

.partner-modal-container .btn-close {
    position: absolute;
    right: 0;
    top: 0;
    background: var(--primary-color);
    opacity: 1;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    color: var(--default-color);
}

.partner-modal-container .section-heading {
    text-align: center;
    width: 100%;
    margin: 0;
}

.partner-modal-form {
    padding: 15px 20px;
}

.partner-modal-form .form-column {
    margin-bottom: 20px;
}

.partner-modal-form .form-control {
    border: 0;
    box-shadow: 0 0 9px #b4b4b4;
    padding: 10px 20px;
}

.no-data {
    box-shadow: 0 0 9px #ddd;
    padding: 15px;
    border-radius: 8px;
}

/* all category page css starts here */

.all-category-box {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.category-item {
    display: block;
    box-shadow: 0 0 9px #ddd;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    color: var(--title-color);
    transition: all 0.3s;
}

.category-item:hover {
    box-shadow: 0 0 9px #a0a0a0;
    color: var(--primary-color);
}

.category-img {
    width: 90px;
    height: 90px;
    margin: auto;
    background: #fdfdfd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 9px #ddd;
    overflow: hidden;
}

.category-img img {
    width: 50px;
    object-fit: contain;
    height: 100%;
    transition: all 0.3s;
}

.category-item:hover img {
    transform: scale(1.2);
}

.category-heading {
    font-size: 18px;
    margin-top: 10px;
    font-weight: 600;
    transition: all 0.1s;
}

.all-category-details-box {
    box-shadow: 0 0 9px #ddd;
    padding: 10px;
    border-radius: 8px;
    margin-top: 50px;
}

.all-cad-left {
    width: 200px;
    min-width: 200px;
    text-align: center;
}

.category-tabs-section .section-heading {
    margin-bottom: 30px;
}
.demoid {
margin-bottom: 20px;
padding: 5px;
text-align: center;
}

.my-report-search-bar .form-control {
    font-size: 13px;
    box-shadow: 0 0 9px #ddd;
    border: 0;
    padding: 10px 12px;
}

.transaction-tag {
    font-size: 16px;
    margin-top: 15px;
}

.main-dashboard {
    margin-top: 20px;
}

.my-report-tables {
    overflow-y: auto;
}








/* mobile responsive css starts here */

@media (max-width:1199px) {
    .coupon-details-row {
        padding: 20px 10px;
    }
    .coupon-details-logo, .coupon-details-logo figure {
        width: 200px;
    }
    .coupon-details-logo figure{
        padding: 10px;
    }
    .coupon-details-center {
        margin: 0;
    }
    .coupon-details-row .offer-btn {
        max-width: max-content;
        padding: 10px 15px;
    }
    .coupon-details-right {
        text-align: center;
    }
    .all-category-box {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }
}

@media (max-width:991px){
    #navbarMenu {
        position: absolute;
        top: 0;
        left: -100%;
        background: var(--light-color);
        width: 80%;
        height: 100vh;
        padding: 0;
        transition: all 0.3s;
    }
    #navbarMenu.collapse.show {
        left: 0;
    }
    .navbar-menu-list .navbar-nav {
        gap: 0;
    }
    .navbar-menu-list .navbar-nav li a {
        padding: 10px 20px !important;
        color: var(--default-color);
    }
    .navbar-menu-list .navbar-nav li a.active{
        color: var(--default-color);
    }
    /* header .navbar-toggler {
        border: 0;
        font-size: 30px;
        padding: 0;
        color: var(--text-color);
    }
    header .navbar-toggler:focus {
        border: none;
        box-shadow: none;
    } */
    .coupon-details-row {
        flex-wrap: wrap;
        padding: 10px;
    }
    .coupon-details-center {
        margin: 0;
    }
    .coupon-details-heading {
        font-size: 20px;
        margin-bottom: 0;
    }
    .coupon-details-right {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
        order: -1;
    }
    .coupon-details-row .offer-btn {
        padding: 8px 20px;
        font-size: 15px;
    }
    .coupon-details-right .offer-btn {
        min-width: 200px;
    }
    .footer-heading {
        font-size: 25px;
        margin-bottom: 10px;
        margin-top: 20px;
    }
    .about-us-content {
        margin-top: 20px;
    }
    .all-category-box {
        grid-template-columns: repeat(4, 1fr);
    }
    .my-report-search-btn {
        display: flex;
        gap: 5px;
    }
}



@media (max-width:767px) {
    .training-video-row {
        gap: 10px;
        width: 100%;
        justify-content: space-between !important;
        margin-top: 10px;
    }
    .coupon-details-logo, .coupon-details-logo figure {
        width: 140px;
    }
    .coupon-details-right .offer-btn {
        min-width: 140px;
    }
    .offer-btn {
        font-size: 14px;
    }
    .slider-banner-item figure {
        width: 100%;
        height: auto;
        border: 4px solid #615EFC;
    }
    .slider-banner-item figure img {
        max-height: 340px;
    }
    .top-banner-container {
        height: 180px;
    }
    .top-banner-container .section-heading {
        font-size: 35px;
    }
    .section-subheading {
        font-size: 25px;
        margin: 20px 0 10px;
    }
    .section-para {
        font-size: 15px;
    }
    .section-padding {
        padding: 30px 0;
    }
    footer .section-para {
        padding-right: 0;
    }
    .all-category-box {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width:576px){
    .top-banner-slider .owl-nav button {
        width: 28px;
        height: 28px;
    }
    .top-banner-slider .owl-nav button.owl-prev {
        left: 4px;
    }
    .top-banner-slider .owl-nav button.owl-next {
        right: 4px;
    }
    .top-banner-slider .owl-nav button i {
        font-size: 13px;
    }
    .section-heading {
        font-size: 25px;
    }
    .logo .navbar-brand {
        font-size: 40px;
    }
    .categoryNavTabs {
        gap: 5px;
        margin-bottom: 20px;
    }
    .categoryNavTabs .nav-link {
        font-size: 14px;
        padding: 6px 10px;
    }
    .coupon-details-logo, .coupon-details-logo figure {
        width: 100px;
        height: 90px;
    }
    .coupon-details-center {
        margin-left: 0;
    }
    .payout-box {
        font-size: 14px;
    }
    .payout-box span {
        font-size: 16px;
    }
    .expire-date {
        font-size: 12px;
        margin-bottom: 0;
    }
    .training-video-row {
        gap: 5px;
    }
    .coupon-details-row .offer-btn {
        padding: 6px 12px;
    }
    .coupon-details-right {
        margin-top: 5px;
    }
    .coupon-details-right .offer-btn {
        min-width: max-content;
        font-size: 16px;
    }
    .column-para {
        font-size: 14px;
        margin-bottom: 0;
        margin-top: 5px;
    }
    .all-category-box {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    .category-item {
        padding: 5px;
    }
    .category-img {
        width: 60px;
        height: 60px;
    }
    .category-img img {
        width: 35px;
    }
    .category-heading {
        font-size: 12px;
        margin-top: 5px;
    }
    .my-report-search-btn {
        justify-content: center;
    }
}


@media (max-width:450px){
    .training-video-row .offer-btn {
        padding: 4px 10px;
        font-size: 14px;
    }
    .payout-box {
        font-size: 12px;
        text-align: center;
    }
    .payout-box span {
        font-size: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}