﻿@font-face {
    font-family: 'Open Sans';
    src: url('/assets/fonts/open-sans/OpenSans-Light.woff2') format('woff2'), url('/assets/fonts/open-sans/OpenSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/assets/fonts/open-sans/OpenSans-Italic.woff2') format('woff2'), url('/assets/fonts/open-sans/OpenSans-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/assets/fonts/open-sans/OpenSans-ExtraBold.woff2') format('woff2'), url('/assets/fonts/open-sans/OpenSans-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/assets/fonts/open-sans/OpenSans-Regular.woff2') format('woff2'), url('/assets/fonts/open-sans/OpenSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/assets/fonts/open-sans/OpenSans-Medium.woff2') format('woff2'), url('/assets/fonts/open-sans/OpenSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/assets/fonts/open-sans/OpenSans-SemiBold.woff2') format('woff2'), url('/assets/fonts/open-sans/OpenSans-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/assets/fonts/open-sans/OpenSans-Bold.woff2') format('woff2'), url('/assets/fonts/open-sans/OpenSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    padding: 0px;
    margin: 0px;
    font-family: 'Open Sans';
    background: #F6F3EE;
}

.body_section {
    padding: 14px 80px 0px;
}

* {
    font-size: 16px;
    font-family: 'Open Sans';
    color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
label {
    margin: 0px;
    padding: 0px;
}

a {
    text-decoration: none;
    cursor: pointer;
}

    a:hover {
        text-decoration: none;
    }

btn: focus,
button:focus:not(:focus-visible) {
    outline: 0px;
    box-shadow: none;
}

/*header css starts*/
.smiles-header .main-menu ul {
    padding: 0px;
    list-style-type: none;
    margin: 0px;
}

.smiles-header .main-menu .has-submenu {
    float: left;
    text-align: center;
    position: relative;
}

    .smiles-header .main-menu .has-submenu a {
        color: #0B1215;
        padding: 0px 20px;
        font-size: 16px
    }

    .smiles-header .main-menu .has-submenu.active a,
    .smiles-header .main-menu .has-submenu:hover a {
        color: #f36c21;
        text-decoration: none;
        font-weight: bold;
    }
        .smiles-header .main-menu .has-submenu:hover a{
            color: #000
        }

        li.has-submenu a.link-menu {
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }

    li.has-submenu a.link-menu::after {
        content: '';
        position: absolute;
        inset-inline: 0;
        bottom: -12px;
        margin: 0 auto;
        width: 70px;
        height: 4px;
        background: #2c7767;
        border-radius: 5px 5px 0 0;
        opacity: 0;
        transform: translateY(-10px);
        /*transition: transform 0.4s ease, opacity 0.4s ease;*/
        transition: transform 0.5s cubic-bezier(0.25, 1.3, 0.5, 1), opacity 0.4s ease;
    }

li.has-submenu:hover a.link-menu::after
/*li.has-submenu.active a.link-menu::after*/ {
    opacity: 1;
    transform: translateY(0);
}

.smiles-header .logo {
    width: 100%;
}

.smiles-header button.btn {
    font-weight: 600;
    padding: 7px 15px;
    line-height: 1;
    font-size: 16px;
    border-radius: 8px;
    outline: 0px;
    box-shadow: none;
}

    .smiles-header button.btn:focus {
        outline: 0px;
        box-shadow: none;
    }

.smiles-header button.btn-sign {
    background: transparent;
    border: 2px solid #fd994e;
    transition: all 0.3s ease;
}

    .smiles-header button.btn-sign:hover {
        /*background: #f36c21;
        border: 1px solid transparent;
        color: #fff;*/
        background: #ffebcc;
        border: 2px solid #fd994e;
        color: #fd994e;
    }

.smiles-header button.btn-join {
    background: #f36c21;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    color: #fff;
}

    .smiles-header button.btn-join img {
        width: 13px;
        transition: all 0.3s ease;
    }

    .smiles-header button.btn-join:hover {
        background: #D85208;
        border: 2px solid #D85208;
        color: #fff;
    }

        .smiles-header button.btn-join:hover img {
            filter: invert(0)
        }

.text-right {
    text-align: right;
}

.signin-joinnow button {
    margin-left: 10px;
}

.smiles-header .main-menu ul {
    margin-left: -30px;
}

/*.has-submenu a:after {
    content: '';
    width: 100px;
    height: 4px;
    border-radius: 4px 4px 0px 0px;
    background: #006767;
    display: block;
}*/
/*header css ends*/
/* Login Panel Container starts css */
.login-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0px;
}

    .login-container .box {
        width: 100%;
        height: 100%;
        background: #006666;
        border-radius: 0 0px 0px 0;
        display: flex;
        overflow: hidden;
    }

    .login-container .left-panel {
        width: 40%;
        background: transparent;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .login-container .left-panel img {
            width: 33%;
            z-index: 1;
            position: absolute;
            margin-left: 123px;
        }

    .login-container .right-panel {
        width: 60%;
        padding: 45px 130px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        border-radius: 30px 0px 0px 30px;
        background: #fff;
        height: calc(-115px + 100vh);
    }

    .login-container .welcome {
        font-size: 14px;
        color: #008a7a;
    }

    .login-container .title {
        font-size: 36px;
        color: #005b56;
        font-weight: bold;
        margin: 5px 0 20px;
    }

    .login-container .phone-box {
        background: #f6f3ee;
        padding: 0px 10px;
        border-radius: 6px;
        display: flex;
        align-items: center;
    }

        .login-container .phone-box span {
            font-weight: normal;
            margin-right: 10px;
            color: #008a7a;
            font-size: 12px;
            margin-left: 5px;
        }

    .login-container .form-group {
        margin-bottom: 10px;
    }

        .login-container .form-group input, .signup_container .form-group select {
            border: none;
            background: none;
            outline: none;
            font-size: 16px;
            padding: 7px 0px;
            flex: 1;
            background: #f6f3ee;
            outline: 0px;
        }

            .login-container .form-group input:focus {
                background: #f6f3ee;
                outline: 0px;
                box-shadow: none;
            }

    .login-container .btn-submit {
        background: #f36c21;
        color: #fff;
        padding: 12px 28px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        margin-top: 12px;
        font-size: 14px;
        font-weight: bold;
    }

        .login-container .btn-submit:hover {
            background: transparent;
            border: 2px solid #f36c21;
            color: #f36c21;
        }

    .login-container button.btn-submit {
        padding: 7px 30px;
        background: #f36c21;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        color: #fff;
    }

        .login-container button.btn-submit img {
            width: 13px;
            transition: all 0.3s ease;
        }

        .login-container button.btn-submit:hover {
            /*  background: transparent;
            border: 2px solid #f36c21;
            color: #0B1215;*/
            background: #D85208;
            border: 2px solid #D85208;
            color: #fff;
        }

            .login-container button.btn-submit:hover img {
                filter: invert(0)
            }

    .login-container .signupfree {
        color: #0B1215;
        font-size: 12px;
        margin-top: 15px
    }

        .login-container .signupfree a {
            color: #f36c21;
            font-size: 12px;
        }

    .login-container form {
        min-height: 200px;
    }

    .login-container .form-group input {
        padding: 10px 15px;
    }

/*login otp page css starts*/
.otp-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    width: 100%;
}

.otp-label {
    font-size: 13px;
    color: #808080;
    margin-bottom: 6px;
}

.otp-inputs {
    display: flex;
    gap: 20px;
}

    .otp-inputs input {
        width: 50px;
        height: 42px;
        border: none;
        outline: none;
        font-size: 18px;
        text-align: center;
        border-radius: 8px;
        background: #f2f1ee;
    }

        .otp-inputs input:focus {
            border: 2px solid #f36c21;
            background: #fff;
        }

.resend-link {
    margin-top: 6px;
    font-size: 12px;
    color: #f36c21;
    text-decoration: none;
    cursor: pointer;
    align-self: flex-end;
}

    .resend-link:hover {
        color: #0B1215;
    }

.form-group .control-label {
    color: #0B1215;
    font-size: 14px;
}

.phone-box input.form-control {
    padding-left: 0px;
}

/* Login Panel Container ends css */


/*sign sup page*/
.signup_container .left-section_signup {
    width: 40%;
    background: transparent;
    padding: 25px;
    /*display: flex;
    justify-content: center;
    align-items: center;*/
}

    .signup_container .left-section_signup h2 {
        color: #fff;
        font-weight: 700;
        font-size: 40px;
    }

    .signup_container .left-section_signup p {
        color: #fff;
        font-size: 12px;
    }

    .signup_container .left-section_signup img {
        width: 340px;
        position: absolute;
    }

.signup_container .right-panel {
    width: 60%;
    padding: 20px 100px;
}

.signup_container.login-container .title {
    font-size: 32px;
    color: #005b56;
    font-weight: bold;
    margin: 5px 0 10px;
}

.signup_container .right-panel .title {
    line-height: 1;
    margin-bottom: 10px
}

.signup_container .form-group .control-label {
    color: #0B1215;
    font-size: 12px;
}

.signup_container.login-container .form-group input, 
.signup_container.login-container .form-group select {
    padding: 7px 15px;
    font-size: 12px;
    line-height: 1;
}
.signup_container .form-group select {
    min-height: 30px !important;
    height: auto !important;
    appearance: auto !important
}
.signup_container .form-group select option {
    font-size: 12px;
}

.login-container.signup_container .form-group {
    margin-bottom: 7px;
}

.signup_container span.color-red {
    color: red;
    font-size: 10px;
}

.signup_container .phone-box input.form-control {
    padding-left: 0px !important;
}

.signup_container .color-blue,
.signup_container .color-blue i {
    color: blue;
}

    .signup_container .color-blue i {
        margin-right: 5px;
    }

    .signup_container .color-blue:hover i,
    .signup_container .color-blue:hover {
        color: #0B1215;
    }

.signup_container form {
    min-height: 290px;
    display: flow;
    align-items: center;
    width: 100%;
}

.signup_otp {
    height: 287px;
    justify-content: center;
    width: 100%;
}

/*signup css ends*/
/*home page css starts*/
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 60px;
    border-radius: 20px;
    /*background: #ffffff;*/
    position: relative;
    overflow: hidden;
    height: 600px;
    margin-top: 20px;
}

.hero-content {
    width: 60%;
    z-index: 2;
}

    .hero-content h1 {
        font-size: 50px;
        font-weight: 700;
        line-height: 1.2;
        color: #fff;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 20px;
        color: #e8e8e8;
        margin-bottom: 15px;
    }

.hero-buttons .btn {
    display: inline-block;
    padding: 12px 22px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    margin-right: 12px;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn.primary {
    background: #f36c21;
    color: #fff;
}

    .btn.primary:hover {
        background: #d75b18;
    }

.btn.secondary {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
}

    .btn.secondary:hover {
        background: rgba(255, 255, 255, 0.2);
    }

.hero-image {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: url(../images/home-hero.jpeg);
    /*filter: blur(5px);
    transform: scale(1);*/
    background-size: cover;
    background-position-y: 70%;
}

.hero-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0f7c7b 50%, #e94837 100%);
    opacity: 0.5;
    z-index: 0;
}

.hero-content,
.hero-buttons {
    position: relative;
    z-index: 10;
}

    .hero-buttons button.btn {
        font-weight: 600;
        padding: 9px 15px;
        line-height: 1.2;
        font-size: 18px;
        border-radius: 8px;
        outline: 0px;
        box-shadow: none;
    }

        .hero-buttons button.btn:focus {
            outline: 0px;
            box-shadow: none;
        }

    .hero-buttons button.btn-signin {
        background: transparent;
        border: 2px solid #f36c21;
        transition: all 0.3s ease;
        color: #fff;
    }

        .hero-buttons button.btn-signin:hover {
            /*   background: #f36c21;
            border: 2px solid transparent;
            color: #fff;*/
            background: #ffebcc;
            border: 2px solid #fd994e;
            color: #fd994e;
        }

    .hero-buttons button.btn-submit,
    .spinwheel_text .btn-submit {
        background: #f36c21;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        color: #fff;
    }

        .hero-buttons button.btn-submit img,
        .spinwheel_text .btn-submit img {
            width: 13px;
            transition: all 0.3s ease;
        }

        .hero-buttons button.btn-submit:hover,
        .spinwheel_text .btn-submit:hover {
            background: #D85208;
            border: 2px solid #D85208;
            color: #fff;
        }

.spinwheel_text .btn-submit {
    width: 100%;
}

/*.hero-buttons button.btn-submit:hover img {
    filter: invert(1)
}*/
.howit_works {
    padding: 60px 0px;
    text-align: center
}

.howit_text h2,
.howit_text p {
    color: #006767;
}

.howit_text h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.howit_text p {
    font-size: 14px;
    font-weight: normal;
}

.home-card-wrapper {
    display: flex;
    justify-content: space-between;
    /*gap: 40px;*/
    padding: 30px 50px 0px;
}

    .home-card-wrapper a{
        width: 28%;
    }
    .soft-card {
        width: 100%;
        height: auto;
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.12), 0px -2px 6px rgba(255, 255, 255, 0.8);
        padding: 20px 10px
    }

/*slick carousel css*/
.benefits-section {
    background: #0E7A7A;
    padding: 50px 20px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
}

    .benefits-section h2 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 35px;
    }

.benefit-item {
    text-align: center;
    padding: 20px 50px;
}

.icon-circle {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .icon-circle img {
        width: 50px;
    }

.benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 14px;
    color: #e8f4f4;
}

/* Slick Custom Styles */
.slick-dots li button:before {
    font-size: 10px;
    opacity: .4;
    color: #fff;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #fff;
}

.slick-arrow {
    background: #fff !important;
    border-radius: 50%;
    width: 32px;
    height: 32px;
}

.slick-prev:before,
.slick-next:before {
    color: #0E7A7A;
}

.benefits_joining {
    background: #006767;
    border-radius: 10px;
    padding: 30px 60px;
}

    .benefits_joining h2 {
        text-align: center;
        color: #fff;
        font-weight: 700;
        margin-bottom: 30px;
    }

    .benefits_joining .slider h3 {
        color: #fff;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .benefits_joining .slider p {
        font-size: 14px;
    }

/* Hide default numbers on dots */
.slick-dots li button:before {
    font-size: 0;
}

/* inactive dot */
.slick-dots li {
    width: 10px;
    height: 10px;
}

    .slick-dots li button {
        width: 10px;
        height: 10px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 50%;
        padding: 0;
    }

    /* active dot pill */
    .slick-dots li.slick-active {
        width: 28px;
        /* pill length */
    }

        .slick-dots li.slick-active button {
            width: 28px;
            height: 10px;
            background: #C8F0EC;
            /* match your glow mint color */
            border-radius: 20px;
        }

.custom-arrow {
    width: 40px;
    height: 40px;
    background: #fff !important;
    border-radius: 50%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #0E7A7A;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

    /* Hover effect */
    .custom-arrow:hover {
        transform: scale(1.05);
        box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
    }

/* Remove default slick styles */
.slick-prev:before,
.slick-next:before {
    content: "";
}

.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: 0;
    background: transparent;
}

.slick-prev {
    left: -15px !important;
    top: 50% !important;
}

    .slick-prev i,
    .slick-next i {
        color: #006767
    }

.slick-disabled {
    opacity: 0;
}

.tiers-wrapper {
    display: flex;
    gap: 35px;
    padding: 40px 0px 0px;
    background: #f8f5ef;
    align-items: flex-start;
    justify-content: center;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Base Card */
.tier-card {
    width: 60px;
    height: 220px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    flex-shrink: 0;
    padding: 10px;
    margin: 0px 20px;
}

    /* Expanded Style */
    .tier-card:hover:not(.active) {
        width: 330px;
        padding: 25px;
        display: flex;
        align-items: end;
        transition: all .7s ease;
    }

    .tier-card.active {
        width: 330px;
        padding: 25px;
        display: flex;
        align-items: end
    }

    /* Active Card always expanded */
    .tier-card.active {
        width: 330px;
        padding: 25px;
        cursor: default;
    }


/* Label when collapsed */
.tier-label {
    writing-mode: vertical-rl;
    font-size: 24px;
    font-weight: 700;
    color: #00696b;
    padding: 5px 5px;
    display: block;
    transform: rotate(180deg);
    height: 220px;
    text-align: center;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: -15px;
    margin-left: -5px;
}

    .tier-label img {
        width: 30px;
    }

/* Hide label when expanded */
.tier-card:hover .tier-label,
.tier-card.active .tier-label {
    display: none;
}

/* Detailed info – hidden until hover */
.tier-info {
    opacity: 0;
    transform: translateY(15px);
    transition: .35s ease;
    text-align: left;
}

/* Show on hover / active */
.tier-card:hover .tier-info,
.tier-card.active .tier-info {
    opacity: 1;
    transform: translateY(0);
}

.coin-icon {
    width: 26px;
    margin-bottom: 5px;
}

.card-first .coin-icon {
    width: 36px;
}

.title {
    font-weight: 600;
    margin: 4px 0;
}

.visit-box {
    background: white;
    padding: 8px 8px;
    border-radius: 8px;
    display: grid;
    margin: 0px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    width: auto;
    text-align: center;
    margin-right: 10px;
    min-width: 60px;
}

.visit-count {
    font-size: 32px;
    font-weight: bold;
    color: #006767;
    line-height: 1;
}

    .visit-count label {
        color: #006767;
    }

.visit-text {
    font-size: 14px;
    color: #006767;
}

.rate {
    margin-top: 5px;
}

/* Card Colors */
.silver {
    background-image: url('../images/silver1.jpg');
    border: 1px solid #e2a600;
    background-position: 70% 77%;
    /*background: linear-gradient(#ebebeb,#d9d9d9);*/
}

.gold {
    /*background: linear-gradient(#ffe7a7,#dcbc62);*/
    background-image: url('../images/gold1.jpg');
    /*background: linear-gradient(180deg, #FFE9A8 0%, #E6C77A 100%);*/
    border: 1px solid #cb9603;
    background-position: 60% 20%;
}

.platinum {
    /*background: linear-gradient(#e0e0e0,#bdbcbc);*/
    background-image: url('../images/platinum1.jpg');
    border: 1px solid #e2a600;
    background-position: 60% 77%;
}

.bronze {
    /*background: linear-gradient(#d9c3a2,#f5eee5);*/
    background-image: url('../images/bronze.jpg');
    background-position: center;
    border: 1px solid #816345;
    background-size: cover;
}

.card-first {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .card-first img {
        margin-right: 5px;
    }

    .card-first h3 {
        color: #006767;
        font-weight: 700;
        font-size: 23px;
    }

.card-second {
    display: flex;
    align-items: center;
}

    .card-second .title {
        font-size: 18px;
        font-weight: 600;
        margin: 0px 0 20px;
        line-height: 1;
    }

    .card-second .desc{
        font-size: 12px;
        margin: 5px 0 0px;
        line-height: 1.3;
    }
        .card-second .desc b {
            font-size: 12px;
        }

        .soft-card img {
            height: 90px;
        }

.soft-card h3,
.soft-card p {
    color: #006767;
}

.soft-card h3 {
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
}

.soft-card p {
    font-weight: 400;
    font-size: 14px;
}

.tier-info {
    opacity: 1;
}

.card-second {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.card-first {
    writing-mode: vertical-rl;
    font-size: 24px;
    font-weight: 700;
    color: rgb(0, 105, 107);
    padding: 5px;
    transform: rotate(180deg);
    height: 215px;
    text-align: center;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: -22px;
    margin-left: -5px;
}

.tier-card:hover .card-first,
.tier-card.active .card-first {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    height: auto;
}


/* Trigger animation on hover */
.tier-card:hover .card-first,
.tier-card.active .card-first {
    animation: rollIn 0.8s ease-out forwards;
}

/* Keyframes for rolling effect */
@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translateX(-20px) rotate(-20deg);
    }
    /* 60% {
        opacity: 1;
        transform: translateX(10px) rotate(20deg);
    }*/

    100% {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

.tier-card:hover .card-second,
.tier-card.active .card-second {
    opacity: 1;
    transition-delay: 0.12s
}

.tier-card:not(:hover) .card-second,
.tier-card.active .card-second {
    transition-delay: 0s;
}

/*home section css ends*/
/*footer section css starts*/
.footer_section {
    background: #006767;
    padding: 20px 40px;
}

.footer_logo {
    /*background: #F6F3EE;
    padding: 60px 20px;
    border-radius: 20px;
    display: inline;*/
}

    .footer_logo img {
        width: 36%;
        background: #F6F3EE;
        padding: 65px 20px;
        border-radius: 20px;
    }

.get-intouch {
    text-align: center;
}

    .get-intouch p b {
        color: #fff;
        font-size: 14px;
    }

    .get-intouch p,
    .get-intouch span,
    .get-intouch p,
    .get-intouch p a,
    .get-intouch label,
    .get-intouch label a {
        color: #fff;
        font-size: 12px;
    }
        .get-intouch p a:hover, .get-intouch label a:hover{
            text-decoration: underline;
        }

        footer .get-intouch p {
            margin: 10px 0px;
        }

    footer .get-intouch p b {
        color: #fff;
        font-size: 12px;
        margin-right: 5px;
    }

.text-left {
    text-align: left;
}

.footer_links li a {
    color: #fff;
    font-size: 12px;
    margin: 10px 0px;
    display: flow;
    text-decoration: none;
}

    .footer_links li a:hover {
        color: #f36c21;
    }

.footer_links ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    color: #fff;
}

.footer_links p b {
    color: #fff;
    font-size: 12px;
}

.footer_links {
    text-align: right;
    margin-right: 40px;
}

/*footer css ends*/


/*faq css starts*/
.faq_section {
    padding: 30px 0px;
}

    .faq_section .accordion-item {
        background-color: transparent;
        border: 0px solid rgba(0, 0, 0, .125);
    }

    .faq_section button.accordion-button {
        background: transparent;
        border: 0px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 0px;
        border-bottom: 1px solid #0B121580;
        border-radius: 0px;
        box-shadow: none !important;
    }

    .faq_section .accordion-button::after {
        display: none;
    }

    .faq_section .accordion_arrow i {
        color: #f36c21;
        transition: transform 0.9s ease;
    }

    .faq_section .accordion_title {
        color: #006767;
        font-weight: 700;
    }

    .faq_section .accordion-collapse.collapse.show {
        border-bottom: 1px solid #0B121580;
    }

    .faq_section .accordion-body {
        padding: 0px 0px 15px;
        font-size: 12px;
        color: #006767;
    }

        .faq_section .accordion-body p,
        .faq_section .accordion-body p a,
        .faq_section a {
            font-size: 12px;
        }

        .faq_section .accordion-body ul {
            list-style-type: decimal;
            padding: 0px;
            margin: 0px;
            padding-left: 10px;
        }

            .faq_section .accordion-body ul li {
                font-size: 12px;
            }

    .faq_section a{
        color: #f36c21;
    }
    .hero-faq {
        background-image: url('../images/faq.jpeg');
        background-size: cover;
        background-position: center 53%;
        height: 330px;
        transform: rotate(180deg);
        padding: 70px 50px;
        margin-top: 30px;
    }

.faq-content {
    transform: rotate(180deg);
    color: #fff;
}

    .faq-content h1 {
        color: #fff;
        font-size: 44px;
        font-weight: 700;
    }

[aria-expanded="true"] i.fas.fa-angle-down {
    transform: rotate(180deg);
    transition: transform 0.9s ease;
}
[aria-expanded="true"].accordion-button {
    border-bottom: 0px !important;
}
.faq_section [aria-expanded="true"].accordion-button {
    padding: 15px 0px 13px;
}
    /*faq css ends*/
    /*Terms & Conditions css starts*/
    .hero-tc {
    background-image: url('../images/tc011.png');
    background-size: cover;
    background-position: bottom;
    height: 330px;
    padding: 60px 50px;
    margin-top: 30px;
    display: flex;
    align-items: end;
}

.tc-content {
    color: #fff;
}

    .tc-content h1 {
        color: #fff;
        font-size: 44px;
        font-weight: 700;
    }

.terms_condition {
    margin-top: 40px;
    margin-bottom: 50px;
}

    .terms_condition p {
        color: #006767;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .terms_condition h4 {
        font-size: 18px;
        font-weight: bold;
        color: #006767;
        margin-bottom: 10px;
        margin-top: 10px;
        display: inline-block;
    }

    .terms_condition ul {
        padding-left: 20px;
    }

        .terms_condition ul li,
        .terms_condition ul li b {
            color: #006767;
            font-size: 14px;
        }

.terms_reward {
    display: grid;
    margin-top: 20px;
    margin-bottom: 10px;
}

.visit_points {
    border: 1px solid #006767;
    border-radius: 10px;
}

    .visit_points p {
        border-bottom: 1px solid #0B1215;
        padding: 5px 20px;
        font-weight: 700;
        margin: 0px;
    }

    .visit_points ul {
        padding: 15px 20px;
        margin: 0px;
        padding-left: 30px;
    }

        .visit_points ul li span {
            font-size: 12px;
            color: #006767;
            display: contents;
        }
.terms_condition .visit_points ul li, 
.terms_condition .visit_points ul li b {
    font-size: 12px;
}
.terms_reward {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    list-style-type: disc;
    padding-left: 0px;
    column-gap: 10px;
    row-gap: 0px;
}

.visit_points ul li span b {
    font-size: 12px;
}

.reward_text {
    margin-bottom: 30px;
}

    .reward_text p b {
        font-size: 12px;
        color: #006767;
        font-weight: 700;
    }

.visit_points ul li span span {
    display: flex;
}

.terms_condition ul li ul {
    list-style-type: none;
}

/*terms and condition css ends*/


/*help page css starts*/
.help_container .left-section_signup {
    text-align: center;
}

    .help_container .left-section_signup img {
        width: 300px;
        position: relative;
    }

.help_container {
    padding: 15px 0px 35px 0px;
}

.help_getin {
    margin-top: 30px;
}

    .help_getin h2 {
        font-size: 26px;
        margin: 0px;
        color: #006767;
        font-weight: 100;
        line-height: 1;
    }

.signup_container.login-container.help_container .form-group input {
    padding: 10px 15px;
}

.help_container .form-group textarea {
    border: none;
    outline: none;
    font-size: 12px;
    padding: 7px 10px;
    flex: 1;
    background: #f6f3ee;
    outline: 0px;
}

    .help_container .form-group textarea:focus {
        outline: 0px;
        box-shadow: none;
    }

.help_container .right-panel {
    height: calc(-150px + 100vh);
    padding: 40px 100px;
}

.login-container.signup_container.help_container .form-group {
    margin-bottom: 10px;
}

.signup_container form {
    min-height: auto;
}

/*Help page css ends*/

/*header user page css starts*/
.user_profile {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 0px;
    position: relative;
    cursor: pointer;
    float: right;
}

.user_img {
    display: flex;
    align-items: center;
    transition: transform 0.4s ease;
}

.user_name {
    display: none;
  /*  max-width: 0;
    overflow: hidden;
    white-space: nowrap;*/
    transform: translateY(-5px);
    transition: all 0.4s ease;
    color: #2c7767;
    font-weight: 500;
    font-size: 14px;
    margin-left: 5px;
}
.user_profile .user_img img {
    width: 30px;
    height: 30px;
    border-radius: 50px;
    background: #dedede;
    margin-right: 5px;
}
.user_profile .down_arrow img {
    filter: invert(0.7);
    width: 15px;
    transform: rotate(90deg);
    transition: all 0.4s ease;
}
span.segment.orange {
    background: #f36c21 !important;
}



@media screen and (min-width: 768px) {

    .user_profile:hover .user_img {
        transform: translateX(-10px);
    }
    .user_profile:hover .down_arrow img {
        transform: rotate(-90deg);
        transition: all 0.4s ease;
    }   
    .user_profile:hover {
        background: #f6f3ee;
        box-shadow: 0px 0px 10px #d1c9bb;
        border-radius: 5px;
        padding: 8px;
        display: inline-flex;
        padding-left: 20px;
    }
        .user_profile:hover .user_img img {
            border: 2px solid #fff;
        }
        /* On hover — show the username */
        .user_profile:hover .user_name {
            display: block;
            min-width: 87px;
            transform: translateY(0);
        }
}
.signout {
    display: none;
}

.user_signout {
    position: relative;
    text-align: right;
}

/*.user_signout:hover .signout {
    display: block;
    position: absolute;
    right: 10px;
    z-index: 1;
    border: 1px solid #e7e7e7;
    padding: 5px 10px;
    list-style: none;
    min-width: 100px;
    text-align: left;
    font-size: 12px;
    margin-top: 0px;
    -webkit-transition: all .2s ease;
    border-radius: 5px;
    transition: all .2s ease;
    background-color: #ffffff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.06), 0 1px 0 0 rgba(0, 0, 0, 0.02);
}*/
.user_profile:hover .signout {
    display: block;
    position: absolute;
    right: 0px;
    top: 47px;
    z-index: 1;
    border: 1px solid #d6cdbe;
    padding: 0px 0px;
    list-style: none;
    min-width: 170px;
    min-width: -webkit-fill-available;
    text-align: left;
    font-size: 12px;
    margin-top: 0px;
    -webkit-transition: all .2s ease;
    border-radius: 5px;
    transition: all .2s ease;
    background-color: #f6f3ee;
    box-shadow: 0px 0px 10px #d1c9bb;
    border-radius: 7px;
}
.user_profile.active .signout {
    display: block;
    position: absolute;
    right: 0px;
    top: 47px;
    z-index: 1;
    border: 1px solid #d6cdbe;
    padding: 0px 0px;
    list-style: none;
    min-width: 166px;
    text-align: left;
    font-size: 12px;
    margin-top: 0px;
    -webkit-transition: all .2s ease;
    border-radius: 5px;
    transition: all .2s ease;
    background-color: #f6f3ee;
    box-shadow: 0px 0px 10px #d1c9bb;
    border-radius: 7px;
}

.user_signout .signout a span {
    font-size: 12px;
    margin-left: 5px;
    color: #006767;
}

.user_signout .signout a:hover span {
    color: #f36c21;
}

.user_signout .signout a {
    display: flex;
    align-items: center;
    padding: 7px 10px;
    border-bottom: 1px solid #b2b2b2;
    text-decoration: none;
}

    .user_signout .signout a:nth-last-child(1) {
        border: 0px;
    }

/*header user css ends*/
/*tabs page css starts*/
.profile_tab_titles {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0px 20px;
}

    .profile_tab_titles .welcome_user h1 {
        font-size: 34px;
        font-weight: 700;
        color: #006767;
        line-height: 1;
    }

    .profile_tab_titles .memberType p {
        color: #006767;
        font-size: 12px;
        font-weight: 700;
    }

        .profile_tab_titles .memberType p span {
            color: #f36c21;
            font-weight: normal;
            font-size: 12px;
            margin-left: 5px;
        }

.tabs_profile {
    display: flex;
}

.tabs_list {
    width: 24%;
    float: left;
    background: #fff;
    padding: 25px 0px;
    border-radius: 10px;
    min-height: 700px;
}

.tabs_right {
    width: 76%;
    float: left;
}

.tab-content > .active {
    display: block;
    opacity: 1;
}

.tabs_list ul {
    display: block;
    border: 0px;
}

    .tabs_list ul li a {
        width: 100%;
        display: block;
        padding: 10px 15px;
        color: #006767;
        font-size: 14px;
        font-weight: 400;
        border-bottom: 0.1px solid rgba(11, 18, 21, 0.2);
        transition: all 0.3s ease-in-out;
    }
    .tabs_list ul li:nth-child(1) a{
        border-top: 0.1px solid rgba(11, 18, 21, 0.2);
    }

        .tabs_list ul li a.active
       /* , .tabs_list ul li a:hover*/ {
            background: rgba(0, 103, 103, 0.2);
            font-weight: 700;
            border-right: 5px solid #f36c21;
            text-decoration: none;
        }
        .tabs_list ul li a:hover {
            font-weight: 700;
            text-decoration: none;
        }

.gift_image img {
    border-radius: 10px;
    margin-top: 30px;
}

.bronze_tier {
    width: 30%;
    margin-right: 10px;
}

.bronze_tier_tier-card {
    width: 100%;
    padding: 25px 20px;
    border-radius: 12px;
    /* background: linear-gradient(135deg, #fff1e7, #d8c5b5);*/
    background-image: url('../images/bronze1-new.jpg');
    border: 1px solid #816345;
    background-color: rgba(255, 255, 255, 0.4);
    background-blend-mode: overlay;
    background-position: center;
    background-size: cover;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    display: grid;
}

    .bronze_tier_tier-card h3 {
        color: #006767;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
    }

.bronze_tier_visit-box {
    width: 50px;
    height: 60px;
    background: #ffffff;
    border-radius: 8px;
    text-align: center;
    padding: 10px;
    /* margin-bottom: 15px;*/
    margin-right: 10px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    display: grid;
}

.bronze_tier_visit-number {
    display: block;
    color: #006767;
    font-size: 26px;
    font-weight: 700;
    line-height: 26px;
}

.bronze_tier_visit-text {
    color: #006767;
    font-size: 10px;
    letter-spacing: 1px;
    line-height: 1;
}

.bronze_tier_tier-card p {
    margin: 6px 0;
    font-size: 14px;
    color: #2d2d2d;
}

.bronze_tier_valid {
    color: #444;
}

.bronze_tier_visit-count label {
    color: #006767;
    font-weight: normal;
}

.bronze_tier_visit-count {
    font-size: 36px;
    font-weight: bold;
    color: #006767;
    line-height: 0.8;
    display: flex;
    align-items: baseline;
    position: relative;
    left: -5px;
    margin-bottom: 3px;
}

.right_reward_text p,
.right_reward_text p b {
    font-size: 12px;
}

.right_reward_text p {
    margin: 0px;
}

    .right_reward_text p.earned_point {
        margin-bottom: 20px;
    }

.tab_section {
    padding: 0px 15px;
    padding-right: 0px;
}

    .tab_section .levels-box {
        border: 1px solid #006767;
        border-radius: 10px;
        padding: 22px 20px;
    }

    .tab_section .levels-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }

        .tab_section .levels-header .title {
            font-weight: 700;
            color: #f36c21;
            font-size: 14px;
        }

    .tab_section .levels-list {
        list-style: none;
        display: flex;
        gap: 20px;
        padding: 0;
        margin: 0;
    }

        .tab_section .levels-list li {
            font-size: 12px;
            color: #006767;
            display: flex;
            align-items: center;
        }


    .tab_section .icon i {
        width: 25px;
        height: 25px;
        background: #fff;
        border: 1px solid #000;
        border-radius: 50px;
        padding: 5px;
        font-size: 12px;
        text-align: center;
        line-height: 12px;
        margin-right: 8px;
    }

    .tab_section .visits-labels {
        display: flex;
        justify-content: space-between;
        font-size: 11px;
        color: #c36d3c;
        margin-bottom: 5px;
    }

    .tab_section .progress-row {
        display: flex;
        gap: 5px;
        margin-bottom: 10px;
    }


    .tab_section .info {
        font-size: 13px;
        color: #222;
        margin-top: 5px;
    }

    .tab_section .visit-progress-wrapper {
        width: 100%;
    }

    .tab_section .visit-progress {
        display: flex;
        gap: 10px;
    }

        .tab_section .visit-progress .segment {
            flex: 1;
            height: 10px;
            background: #d2d2d2;
        }

            .tab_section .visit-progress .segment:first-child {
                border-radius: 20px 0 0 20px;
            }

            .tab_section .visit-progress .segment:last-child {
                border-radius: 0 20px 20px 0;
            }

            .tab_section .visit-progress .segment.completed {
                background: #008071;
            }

            .tab_section .visit-progress .segment.active {
                background: #f36c21;
            }

.right_level {
    width: 70%;
}

.visits-labels span, .visits-labels span b{
    font-size: 11px;
    color: #f36c21;
    line-height: 1;
}

    .visits-labels span:nth-child(1), 
    .visits-labels span:nth-child(1) b {
        color: #0B1215;
    }

.earn-info {
    margin-top: 15px;
}
.earn-info, .earn-info b {
    font-size: 13px;
    color: #006767;
}

.earned_tab p,
.usable_points p {
    font-weight: 700;
    color: #006767;
    font-size: 12px;
    margin-bottom: 20px;
}

.earned_tab h1,
.usable_points h1 {
    font-weight: 700;
    color: #006767;
    margin: 0px;
    line-height: 1;
    font-size: 36px;
}

.first_lefttab {
    width: 30%;
    margin-right: 10px;
    border: 1px solid #006767;
    border-radius: 10px;
    padding: 25px 20px;
    margin-top: 20px;
}

.second_righttab {
    width: 70%;
    border: 1px solid #006767;
    border-radius: 10px;
    padding: 25px 20px;
    margin-top: 20px;
}

.usable_points {
    border-right: 2px dashed #006767;
    width: 30%;
}

.usablepoints_date {
    padding-left: 20px;
}

    .usablepoints_date p,
    .usablepoints_date p b, .usablepoints_date p a {
        color: #006767;
        font-size: 12px;
    }

    .usablepoints_date p {
        margin-bottom: 10px;
    }

        .usablepoints_date p:nth-last-child(1) a {
            margin: 0px;
            color: #f36c21;
        }

.tryfor_luck {
    background: #fff;
    border-radius: 10px;
    padding: 10px 20px;
    margin-top: 20px;
}

.spinwheel_text h2 {
    color: #006767;
    font-size: 22px;
    font-weight: 700;
}

.spinwheel_text p {
    color: #006767;
    font-weight: normal;
    margin: 30px 0px;
    font-size: 14px;
}

    .spinwheel_text p b {
        font-weight: 700;
        font-size: 14px;
        color: #006767;
    }

.email_details {
    margin-bottom: 20px;
}

    .email_details input {
        background: #e6e6e6;
        font-size: 14px;
        padding: 7px 20px;
        font-weight: 100;
        border-radius: 10px;
    }

.spinwheel_text .btn-submit {
    border-radius: 10px;
    font-weight: 700;
}

.spinwheel_text {
    /*width: 80%;*/
    margin-left: 5%;
}

/*second table css starts*/
.tier-table-container {
    background: #f7f6ed;
    border: 1px solid #d5d3b8;
    border-radius: 12px;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.transactions-title {
    color: #f36c21;
    font-weight: 700;
    font-size: 18px;
    margin: 0px;
    padding: 10px 15px 5px;
}

.tier-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff8ef;
}

.transactions-table-container {
    width: 100%;
    border: 1px solid #006767;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
}

    .transactions-table-container .transactions-table thead th {
        font-size: 12px;
        font-weight: 700;
        color: #006767;
        padding: 3px 10px 10px;
        line-height: 1;
    }

    .transactions-table-container .transactions-table thead tr th:nth-child(1) {
        padding-left: 15px;
    }

    .transactions-table-container .transactions-table tbody td {
        padding: 7px 10px;
        font-size: 11px;
        font-weight: 500;
        color: #006767;
        line-height: 1.2;
    }

    .transactions-table-container .transactions-table tbody tr td:nth-child(1) {
        padding-left: 15px;
    }

    .transactions-table-container .transactions-table tbody td span {
        font-size: 9px;
        color: #006767;
    }

.tier-table tbody tr:nth-child(even) {
    background: #fffdf7;
}

.transactions-table-container .transactions-table tbody tr:hover td {
    background: #fff;
}

.transactions-table-container .transactions-table thead th:nth-child(1),
.transactions-table-container .transactions-table thead th:nth-child(2),
.transactions-table-container .transactions-table thead th:nth-child(3),
.transactions-table-container .transactions-table tbody td:nth-child(1),
.transactions-table-container .transactions-table tbody td:nth-child(2),
.transactions-table-container .transactions-table tbody td:nth-child(3) {
    border-right: 1px dashed #006767;
}

.transactions-table {
    width: 100%
}

.pagination-box {
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 5px 20px 10px;
}

    .pagination-box .page-number {
        background: #C5D7D3;
        padding: 5px 15px;
        border-radius: 6px;
        margin: 0 3px 0px 8px;
        font-weight: normal;
        color: #006767;
        line-height: 1;
    }

    .pagination-box span {
        font-size: 10px;
        color: #006767;
    }

    .pagination-box .arrow i {
        color: #f36c21;
        cursor: pointer;
        padding: 0px;
        font-size: 14px;
        position: relative;
        top: 2px;
    }

    .pagination-box .arrow:nth-last-child(1) {
        margin-left: 5px;
    }

.transactions-table-container tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

/*.transactions-table-container table tbody {
    height: 410px;
    min-height: 410px;
}*/

.transactions-table th:nth-child(1),
.transactions-table td:nth-child(1) {
    width: 150px;
    min-width: 150px;
    max-width: 150px;
}

/*.transactions-table th:nth-child(1),
.transactions-table td:nth-child(1),*/
.transactions-table th:nth-child(2),
.transactions-table td:nth-child(2),
.transactions-table th:nth-child(3),
.transactions-table td:nth-child(3) {
    width: 130px;
    min-width: 130px;
    max-width: 130px;
}

.transactions-table th:nth-child(4),
.transactions-table td:nth-child(4) {
    width: 110px;
    min-width: 110px;
    max-width: 110px;
}

/*transaction tabs css end*/

/*refer table css starts*/
.refer_friend h2,
.refer_friend p,
.refer_friend label,
.refer_friend span,
.refer_friend b,
.refer_friend .form-group .control-label {
    color: #006767;
}

.refer_friend form .spinwheel_text {
    width: 100%;
    margin: 0px;
    margin-top: 25px;
}

.refer_friend h2 {
    font-size: 26px;
    font-weight: 700;
}

.refer_friend p,
.refer_friend p b {
    font-size: 14px;
}

.refer_friend p {
    margin: 7px 0px;
    line-height: 1.3
}

.refer_friend form {
    margin-top: 20px;
}

    .refer_friend form input {
        font-size: 12px;
        padding: 7px 15px;
        box-shadow: none;
        outline: 0px;
    }

        .refer_friend form input:focus {
            box-shadow: none;
            outline: 0px;
        }

.phone_code {
    position: relative;
}

    .phone_code span {
        position: absolute;
        font-size: 12px;
        top: 8px;
        left: 15px;
    }

.spinwheel_text .btn-submit:hover {
    color: #fff
}

    .spinwheel_text .btn-submit:hover img {
        filter: invert(0)
    }

.phone_code input {
    padding-left: 45px !important;
}

/*referal table css ends*/

/*benefits table css starts*/
.tier_list h2,
.tier_list p,
.tier_list li,
.tier_list b {
    color: #006767;
}

.terms_condition li a{
    color: #f36c21;
}
.tier_list {
    margin-bottom: 10px;
}

    .tier_list h2 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .tier_list ul {
        padding-left: 15px;
        margin: 0px;
    }

        .tier_list ul li {
            font-size: 12px;
            font-weight: 600;
        }

.tier_list {
    border: 1px solid #006767;
    border-radius: 10px;
    padding: 20px 20px;
}

.tier_benefits {
    width: 70%;
    padding-right: 10px;
}

.benefits_other {
    width: 30%;
}

    .benefits_other ul li {
        padding-bottom: 15px;
    }

.btn-save:focus {
    box-shadow: none;
}

.btn-save {
    background: rgb(243, 108, 33);
    color: rgb(255, 255, 255);
    padding: 7px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 12px;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid transparent;
    transition: 0.3s;
}

    .btn-save:hover {
        background: #D85208;
        border: 2px solid #D85208;
        color: #fff;
    }

    .btn-save img {
        width: 13px;
        transition: 0.3s;
    }

    .btn-save:hover img {
        filter: invert(0);
    }

input:focus,
select:focus {
    box-shadow: none !important;
    outline: 0px !important;
}

.personal_fields form input,
.personal_fields form select {
    border: 0px;
    font-size: 12px;
    padding: 7px 15px;
    height: auto !important;
}

.personal_fields form label.control-label {
    font-size: 12px;
    font-weight: 100;
}

    .personal_fields form label.control-label .color-red {
        color: red;
    }

.personal_fields form {
    padding-left: 20px;
}

.form_benefits,
.form_signup {
    /*  min-height: calc(-100px + 100vh)*/
    padding-bottom: 60px;
}

    .form_benefits .phone_code input {
        padding-left: 40px;
    }

    .form_benefits .phone_code span {
        color: #006767;
    }

.select2-container .select2-selection--single {
    height: 32px;
    border: 0px;
    border-radius: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #0B1215;
    line-height: 32px;
    font-size: 12px;
    font-weight: 100;
    padding: 0px 15px;
}

.select2-results__option {
    font-size: 12px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #006767;
    color: white;
}

.select2-container {
    width: 100% !important;
}

.welcome_user p {
    font-size: 12px;
    color: #006767;
}

.back_form {
    color: blue !important;
    font-weight: normal !important;
    display: flex;
    align-items: center;
    justify-content: end;
    font-size: 10px !important;
    cursor: pointer;
}

    .back_form i {
        color: blue;
        font-size: 12px;
        margin-right: 5px;
    }

button.btn-cncl {
    background: transparent;
    color: #0B1215;
    padding: 7px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 12px;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid #fd994e;
    transition: 0.3s;
}

    button.btn-cncl:hover {
        /*background: rgb(243, 108, 33);
        border: 1px solid transparent;
        color: #fff;*/
        background: #ffebcc;
        border: 2px solid #fd994e;
        color: #fd994e;
    }

.footer_links li a:hover {
    color: #f36c21;
}

.spin-wheel {
    position: relative;
    top: -40px;
}

.vector_Img {
    text-align: center;
    z-index: 1;
    position: relative;
}

.spin-container {
    text-align: center;
    margin-top: 0px;
}

.spin-wheel {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    position: relative;
}

    .spin-wheel img {
        width: 100%;
        border-radius: 50%;
        transition: transform 5s cubic-bezier(0.25, 0.1, 0.25, 1);
        /* smooth 5s spin */
    }


/*.discount-result {
    margin-top: 20px;
    font-size: 20px;
    color: #2c7767;
    font-weight: bold;
    min-height: 24px;
}*/

.wheel_rotate {
    position: relative;
    top: 20px;
}

.btn,
.btn:focus {
    box-shadow: none;
}

.tiers-wrapper_mouse {
    display: flex;
    gap: 20px;
}

/*Media quiries css starts*/
@media screen and (min-width: 1300px) {
    .login-container {
        padding: 50px 0px;
    }

        .login-container .right-panel {
            height: calc(-176px + 100vh);
        }

    .help_container .right-panel {
        height: auto;
    }

    .otp-wrapper {
        width: 100%;
    }

    .login-container .signupfree,
    .login-container .signupfree a,
    .resend-link,
    .right_reward_text p,
    .right_reward_text p b,
    .tab_section .levels-list li,
    .visits-labels span,
    .earn-info,
    .earn-info b,
    .earned_tab p,
    .usable_points p,
    .usablepoints_date p,
    .usablepoints_date p b,
    .profile_tab_titles .memberType p,
    .profile_tab_titles .memberType p span,
    .transactions-table-container .transactions-table thead th,
    .tier_list ul li,
    .pagination-box span,
    .get-intouch p,
    .get-intouch span,
    .get-intouch p,
    .get-intouch label,
    .footer_links li a,
    .faq_section .accordion-body,
    .visit_points ul li span,
    .login-container .phone-box span,
    .help_container .form-group textarea,
    .personal_fields form label.control-label,
    .welcome_user p {
        font-size: 14px;
    }

    .transactions-table-container .transactions-table tbody td {
        font-size: 13px;
    }

    .tabs_list ul li a,
    .howit_text p,
    footer .get-intouch p b,
    .footer_links p b,
    .terms_condition p,
    .terms_condition ul li,
    .terms_condition ul li b {
        font-size: 16px !important;
    }

    .visit_points li span b,
    .visit_points li span {
        font-size: 14px !important;
    }

    .transactions-table-container .transactions-table tbody td span {
        font-size: 11px;
    }

    .terms_condition h4 {
        font-size: 22px;
    }

    footer .get-intouch p {
        margin: 5px 0px;
    }

    .transactions-table th:nth-child(1),
    .transactions-table td:nth-child(1) {
        width: 200px;
        min-width: 200px;
        max-width: 200px;
    }

    .transactions-table th:nth-child(4),
    .transactions-table td:nth-child(4) {
        width: 150px;
        min-width: 150px;
        max-width: 150px;
    }

    .transactions-table th:nth-child(3),
    .transactions-table td:nth-child(3) {
        width: 140px;
        min-width: 140px;
        max-width: 140px;
    }

    .transactions-table th:nth-child(5),
    .transactions-table td:nth-child(5),
    .transactions-table th:nth-child(6),
    .transactions-table td:nth-child(6),
    .transactions-table th:nth-child(7),
    .transactions-table td:nth-child(7) {
        width: 115px;
        min-width: 115px;
        max-width: 115px;
    }

    .faq_section .accordion_title {
        font-size: 18px;
    }

    .login-container.signup_container.help_container {
        padding: 20px 0px;
    }

    .signup_container.login-container.help_container .form-group input {
        padding: 15px 15px;
        font-size: 14px;
    }

    .login-container.signup_container.help_container .form-group {
        margin-bottom: 20px;
    }

    .login-container .box {
        align-items: center;
    }

    .smiles-header .main-menu .has-submenu a {
        font-size: 18px;
    }

    .personal_fields form input,
    .personal_fields form select {
        font-size: 14px;
        padding: 10px 15px;
    }

    .select2-container .select2-selection--single {
        height: 41px;
    }

    .personal_fields .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 41px;
    }

    .personal_fields .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 41px;
    }

    .personal_fields .form_benefits,
    .form_signup {
        padding-bottom: 20px;
    }

    .signup_container.login-container .form-group input {
        padding: 10px 15px;
        font-size: 14px;
    }

    .login-container.signup_container .form-group {
        margin-bottom: 15px;
    }

    .login-container.signup_container .box {
        align-items: flex-start;
    }

    .help_container .box {
        align-items: center !important;
    }

    .signup_container .left-section_signup h2 {
        font-size: 44px;
    }

    .signup_container .left-section_signup p {
        margin: 10px 0px 20px;
        font-size: 16px;
    }

    .signup_otp {
        height: 365px;
    }

    .soft-card {
        width: 25%;
        height: 200px;
    }
    .signup_container .left-section_signup h2 {
        font-size: 66px;
    }

    /*.signup_container .left-section_signup img {
        width: calc(-25% + 100vh);
    }*/
}

@media screen and (min-width: 1900px) {
   
        .login-container.signup_container.help_container .right-panel {
        height: calc(-410px + 100vh);
    }

    .login-container {
        padding: 70px 0px;
    }

        .login-container .right-panel {
            height: calc(-250px + 100vh);
        }

    .signup_container .left-section_signup h2 {
        font-size: 70px;
    }

    .signup_container .left-section_signup p {
        margin: 15px 0px 20px;
        font-size: 20px;
    }

    .signup_container .left-section_signup img {
        width: 430px;
    }

    .login-container.signup_container.help_container .left-section_signup img {
        width: 360px;
    }

    .login-container.signup_container .box {
        align-items: flex-start;
    }

    .signup_container.login-container .form-group {
        margin-bottom: 20px;
    }

        .signup_container.login-container .form-group input {
            padding: 15px 15px;
            font-size: 14px;
        }

    .login-container .right-panel {
        justify-content: center;
    }
}


@media screen and (min-width: 700px) and (max-width: 1100px) {
    li.has-submenu a.link-menu::after {
        width: 40px;
    }

    .login-container .right-panel {
        padding: 30px 60px;
        height: calc(-100px + 100vh);
    }

    .login-container .otp-inputs {
        display: flex;
        gap: 13px;
    }

        .login-container .otp-inputs input {
            width: 42px;
            height: 42px;
        }

    .login-container .left-panel img {
        width: 45%;
        margin-left: 50px;
    }

    .login-container form {
        min-height: 170px;
    }

    .body_section {
        padding: 14px 20px 0px;
    }

    .login-container.signup_container .right-panel {
        padding: 20px 30px;
        height: calc(-60px + 100vh);
    }

    .signup_container.login-container .form-group input {
        padding: 6px 15px;
    }

    .signup_container.login-container .title {
        font-size: 26px;
    }

    .smiles-header .main-menu .has-submenu a {
        color: #0B1215;
        padding: 0px 10px;
        font-size: 12px;
    }

    .hero-tc,
    .hero-faq {
        margin-top: 15px;
        padding: 30px;
        height: 200px;
    }

    .tc-content h1,
    .faq-content h1 {
        font-size: 30px;
    }

    .terms_reward {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .visit_points {
        margin-bottom: 10px;
    }

    .faq_section button.accordion-button {
        padding: 10px 0px;
    }

    .faq_section .accordion_title {
        font-size: 14px;
    }

    .faq_section .accordion-body {
        padding: 10px 10px;
    }

    .footer_section {
        padding: 20px 20px;
    }

    .footer_logo img {
        width: 70%;
    }

    .footer_links {
        margin-right: 0px;
    }

    .footer_section .col-md-12 {
        padding: 0px
    }

    .col-md-4.tab_footer_logo {
        max-width: 20%;
        padding: 0px;
    }

    .footer_logo img {
        width: 100%;
    }

    .col-md-4.tab_footer-menu {
        max-width: 20%;
    }

    .col-md-4.tab_footer-touch {
        max-width: 60%;
        flex: 0 0 60%;
    }

    .signup_container.login-container.help_container .form-group input {
        padding: 6px 15px;
    }

    .login-container.signup_container.help_container .form-group {
        margin-bottom: 6px;
    }

    .help_container .right-panel {
        height: calc(-130px + 100vh) !important;
        padding: 30px 30px !important;
    }

    .hero-container {
        padding: 60px 30px;
        height: 350px
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content {
        width: 70%;
    }

        .hero-content p {
            font-size: 13px;
        }

    .home-card-wrapper {
        padding: 10px 0px 0px;
    }

    .soft-card {
        width: 32%;
        height: auto;
    }

    .benefits_joining {
        padding: 30px 30px;
    }

    .tiers-wrapper {
        gap: 20px
    }

    .signup_container .left-section_signup h2 {
        font-size: 30px;
    }

    .signup_container .left-section_signup img {
        width: 240px;
    }

    .signup_container .left-section_signup p {
        color: #fff;
        font-size: 14px;
    }

    .bronze_tier_tier-card {
        width: 100%;
        padding: 10px 15px;
    }

    .tab_section .levels-header {
        margin-bottom: 10px;
    }

    .tab_section .levels-box {
        padding: 20px 15px;
    }

    .tab_section .levels-header .title,
    .tab_section .levels-list li {
        font-size: 10px;
    }

    .visits-labels span {
        font-size: 9px;
    }

    .tab_section .icon i {
        width: 20px;
        height: 20px;
        padding: 5px;
        font-size: 10px;
        line-height: 8px;
        margin-right: 4px;
    }

    .tab_section .levels-list {
        gap: 15px;
        align-items: center;
    }

        .tab_section .levels-list span.icon {
            display: flex;
        }

    .earn-info,
    .earn-info b {
        font-size: 10px;
        margin-top: 10px;
    }

    .spin-wheel {
        width: 200px;
        height: 200px;
    }

    .spinwheel_text {
        width: 100%;
        margin-left: 5%;
    }

        .spinwheel_text p {
            margin: 10px 0px;
            font-size: 11px;
        }

    .second_righttab,
    .first_lefttab {
        padding: 15px 15px;
    }

    .btn {
        font-size: 14px;
    }

    .tabs_dblock {
        display: block !important;
    }

    .bronze_tier_visit-box {
        width: 40px;
        height: 40px;
        padding: 5px 10px;
        margin-bottom: 5px;
    }

    .bronze_tier_tier-card h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .right_reward_text p.earned_point {
        margin-bottom: 0px;
    }

    .bronze_tier_visit-count {
        font-size: 22px;
    }

    .right_reward_text p,
    .right_reward_text p b {
        font-size: 11px;
    }

    /*.transactions-table th:nth-child(3), .transactions-table td:nth-child(3),
    .transactions-table th:nth-child(4), .transactions-table td:nth-child(4), .transactions-table th:nth-child(5), .transactions-table td:nth-child(5),
    .transactions-table th:nth-child(6), .transactions-table td:nth-child(6), .transactions-table th:nth-child(7), .transactions-table td:nth-child(7) {
        width: 22%;
        min-width: 22%;
        max-width: 22%;
    }
    .transactions-table th:nth-child(1), .transactions-table td:nth-child(1) {
        width: 45%;
        min-width: 45%;
        max-width: 45%;
    }*/
    .transactions-table th:nth-child(5),
    .transactions-table td:nth-child(5),
    .transactions-table th:nth-child(6),
    .transactions-table td:nth-child(6),
    .transactions-table th:nth-child(7),
    .transactions-table td:nth-child(7) {
        width: 100px;
        min-width: 100px;
        max-width: 100px;
    }

    .transactions-table {
        width: 100%;
        overflow: auto;
        display: block;
    }

    .earned_tab h1,
    .usable_points h1 {
        font-size: 30px;
    }

    .refer_friend p,
    .refer_friend p b {
        font-size: 11px;
    }

    .refer_friend form {
        margin-top: 10px;
    }

        .refer_friend form .form-group .control-label {
            font-size: 12px;
        }

        .refer_friend form .form-group {
            margin-bottom: 7px;
        }

        .refer_friend form .spinwheel_text {
            margin-top: 15px;
        }

    .referal_Image {
        align-items: center;
    }

    .tier_list ul li {
        font-size: 10px;
    }

    .tier_list h2 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .tier_list {
        padding: 15px
    }

    .benefits_other ul li {
        padding-bottom: 5px;
    }

    .prodile_fields .form_benefits,
    .prodile_fields .form_signup {
        padding-bottom: 0px;
    }

    .prodile_fields {
        margin-bottom: 25px;
    }
}

@media screen and (min-width: 1000px) and (max-width: 1200px) {
    .body_section {
        padding: 14px 50px 0px;
        min-height: calc(-200px + 100vh);
    }
    .help_container .right-panel {
        height: auto !important;
        padding: 30px 30px !important;
    }

    .login-container .right-panel {
        padding: 30px 60px;
        height: calc(-120px + 100vh);
    }

    .login-container.signup_container .right-panel {
        padding: 20px 30px;
        height: calc(-120px + 100vh);
    }

    .signup_container .left-section_signup h2 {
        font-size: 38px;
    }

    .signup_container .left-section_signup p {
        color: #fff;
        font-size: 17px;
    }

    .signup_container .left-section_signup img {
        width: 350px;
    }

    .help_container .left-section_signup img {
        width: 270px !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 1900px) {
    .login-container .right-panel {
        min-height: calc(-80px + 100vh) !important;
        height: auto !important;
        justify-content: center;
    }


    .signup_container .right-panel {
        padding: 20px 30px;
        min-height: calc(-120px + 100vh) !important;
        height: auto !important;
    }

    .signup_container .left-section_signup {
        padding-right: 160px;
    }

    .help_container .right-panel {
        min-height: calc(-365px + 100vh) !important;
        height: auto !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .help_container .box {
        align-items: center;
    }

    .signup_container .left-section_signup {
        width: 40%;
        background: transparent;
        padding: 20px;
    }
}

.signup_container .right-panel {
    padding: 20px 80px;
}

@media screen and (min-width: 1200px) and (max-width: 1900px) {

        .login-container .right-panel {
            min-height: calc(-150px + 100vh) !important;
            height: auto !important;
            justify-content: center;
        }

        .help_container .left-section_signup img {
            width: 280px;
            position: relative;
        }

        .body_section {
            min-height: calc(-200px + 100vh);
        }
    }

    .mobile-menu-icon {
    display: none;
}

.user_mobile {
    display: none;
}
.close-menu{
    display: none;
}
.mobile_menus, .gift_wellness_image {
    display: none;
}
.join_free {
    display: none;
}
.mobile_showlogin {
    display: none
}

    /* Hide on desktop */
    @media (min-width: 769px) {

        /* .main-menu {
        display: none !important;
    }*/
    }

    @media screen and (min-width: 500px) and (max-width: 768px) {
        .terms_reward {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    /* MOBILE MENU STYLING */
@media (max-width: 767px) {
    .body_section {
        padding: 10px;
    }

    .user_mobile {
        display: block;
        text-align: right;
    }

    .button_mobile {
        display: none;
        position: absolute;
        right: 0px;
        top: 30px;
        z-index: 1;
        border: 1px solid #d6cdbe;
        padding: 0px 0px;
        list-style: none;
        min-width: 100px;
        text-align: left;
        font-size: 12px;
        margin-top: 0px;
        -webkit-transition: all .2s ease;
        border-radius: 5px;
        transition: all .2s ease;
        background-color: #f6f3ee;
        box-shadow: 0px 0px 10px #d1c9bb;
        border-radius: 7px;
        z-index: 100;
    }

        .button_mobile .text-right {
            text-align: left !important
        }

            .button_mobile .text-right a {
                display: flex;
                align-items: center;
                padding: 7px 10px;
                border-bottom: 1px solid #b2b2b2;
                text-decoration: none;
            }

            .button_mobile .text-right button {
                background: transparent;
                border: 0px;
                color: #000;
            }

    .smiles-header button.btn-sign:hover {
        background: transparent !important;
        border: 0px !important;
        color: #f36c21 !important;
        border: 0px !important
    }

    .button_mobile button.btn {
        padding: 0px !important;
        font-size: 12px !important;
        font-weight: normal !important;
        margin: 0px;
    }

    .btn-join img {
        filter: invert(1);
        width: 10px;
        position: relative;
        top: -1px;
    }

    .smiles-header .col-4:nth-child(1) {
        padding-left: 0px;
    }

    .smiles-header .col-4:nth-child(3) {
        padding-right: 0px;
    }

    .main-menu {
        position: fixed;
        top: 60px;
        /* below logo/header */
        left: 0;
        width: calc(-20px + 100vw);
        height: calc(-100px + 100vh);
        background: #ffffff;
        padding: 10px 40px;
        border-radius: 10px;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: 0.3s ease-in-out;
        z-index: 9999;
        margin: auto;
    }

        .main-menu.open {
            left: auto;
        }

    .close-menu {
        display: block;
        position: absolute;
        right: 15px;
    }

        .close-menu i {
            color: #006767
        }

    .smiles-header .main-menu .has-submenu {
        margin: 10px 0px;
        width: 100%;
        text-align: left;
    }

    li.has-submenu a.link-menu::after {
        display: none
    }

    .main-menu.open {
        transform: translateX(0);
    }

    .navigation-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .navigation-menu li {
            margin: 22px 0;
        }

        .navigation-menu a {
            font-size: 18px;
            color: #005C57;
            text-decoration: none;
            font-weight: 500;
        }

    /* Hamburger Icon */
    .mobile-menu-icon {
        display: block;
        padding: 0px;
        /*  font-size: 26px;*/
        cursor: pointer;
        z-index: 10000;
        color: #006767
    }

        .mobile-menu-icon i {
            color: #006767
        }

    body:has(.main-menu.open) .mobile-menu-icon i {
        color: #f36c21;
    }

    /* Overlay Background */
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 9998;
    }

        .overlay.show {
            display: block;
        }


    /*home page mobile csss*/
    .hero-image {
        background-position-x: 71%
    }

    .hero-container {
        align-items: baseline;
        padding: 40px 20px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-buttons {
        display: grid;
    }

        .hero-buttons button.btn {
            padding: 7px 15px;
            font-size: 14px;
            margin-bottom: 10px;
        }

    .hero-content p {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .howit_works {
        padding: 30px 30px 10px;
        text-align: center;
    }

    .home-card-wrapper {
        display: block;
        padding: 30px 0px;
        align-items: center;
        justify-content: center;
    }

        .home-card-wrapper .soft-card {
            width: 100%;
            margin-bottom: 20px
        }

            .home-card-wrapper .soft-card:nth-last-child(1) {
                margin-bottom: 0px;
            }

    .howit_text h2 {
        font-size: 22px;
    }

    .soft-card h3, .benefits_joining h2 {
        font-size: 22px;
    }

    .benefits_joining {
        padding: 30px;
    }

    .benefit-item {
        padding: 0px;
    }

    .benefits_joining .slider h3 {
        font-size: 18px;
    }

    .tiers-wrapper_mouse {
        gap: 0px;
    }

    .tier-card {
        width: 60px;
        padding: 5px;
        margin: 0px 10px;
    }

    .desktop_menus {
        display: none;
    }

    .mobile_menus {
        display: block;
    }

    .footer_grid {
        display: grid !important;
    }

    .footer_section {
        padding: 20px 0px;
    }

    .tab_footer_logo {
        display: flex;
        padding: 0px;
        align-items: end;
    }

    .footer_logo img {
        width: 100%;
    }

    .footer_logo {
        width: 50%;
    }

    .footer_links {
        text-align: left;
        margin-right: 0px;
        margin-left: 15px;
    }

    .get-intouch {
        text-align: left;
        margin-top: 30px;
    }

    .tab_footer-touch {
        padding: 0px;
    }

    .get-intouch .phone-footer {
        display: flex !important;
        justify-content: left !important;
    }

        .get-intouch .phone-footer br {
            display: none;
        }

    .copyright {
        text-align: center;
        margin-top: 25px;
    }

    /*faq css*/
    .hero-faq {
        height: 150px;
        padding: 20px;
        background-size: 100%;
        background-position: center;
        display: flex;
        align-items: baseline;
        justify-content: end;
        margin: 0px;
        margin-top: 10px;
    }


    .faq-content h1 {
        font-size: 24px;
    }

    .faq_section {
        padding-top: 10px;
    }

        .faq_section .accordion_title {
            font-size: 14px;
        }

        .faq_section button.accordion-button {
            padding: 15px 0px;
        }

    .hero-tc {
        background-position: right;
        background-image: url(../images/tc011.png);
        background-size: cover;
        height: 150px;
        padding: 20px;
        margin-top: 30px;
        display: flex;
        align-items: end;
        background-repeat: no-repeat;
        justify-content: flex-start;
        margin: 0px;
        margin-top: 10px;
    }

    .tc-content h1 {
        font-size: 22px;
    }

    .terms_condition {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .terms_reward {
        grid-template-columns: repeat(1, 1fr);
    }

    .visit_points {
        margin-bottom: 10px;
    }

        .visit_points ul li span span {
            display: block;
        }

    .reward_text {
        margin-bottom: 0px;
    }

    .terms_condition ul li, .terms_condition ul li b {
        font-size: 13px;
    }

    .help_container .box {
        display: grid;
    }

    .left-section_signup {
        width: 100% !important;
    }

    .help_container .left-section_signup img {
        width: 100%;
    }

    .help_container .right-panel {
        padding: 40px 20px;
        height: auto;
        width: 100%;
        border-radius: 25px 25px 0px 0px;
    }

    .help_getin {
        margin-top: 10px;
    }

        .help_getin h2 {
            font-size: 22px
        }

    .login-container .box {
        display: grid;
    }

    .login-container .right-panel {
        width: 100%;
        padding: 20px 20px;
        border-radius: 20px 20px 0px 0px;
        height: auto;
        margin-top: -30px;
    }
    .signup_container .right-panel{
        margin-top: 0px;
    }

    .login-container .left-panel img {
        width: 100%;
        z-index: 1;
        position: relative;
        margin-left: auto;
  /*height: 56vh;*/
        display: list-item;
        margin: auto;
    }

    .login-container .left-panel {
        width: 100%;
        display: block;
        padding: 20px 20px 0px;
    }
    .signup_container .left-section_signup {
        padding: 20px 20px 0px;
    }
    .login-container {
        padding: 10px 0px;
        display: block;
    }
        .login-container form {
            min-height: 170px;
        }
    .help_container {
        display: block;
    }
        .help_container .left-section_signup {
            padding: 20px 20px;
        }
        .help_container .left-section_signup img {
            width: auto !important;
            height: 50vh;
            margin: auto;
            display: inline-grid;
        }

    .otp-inputs {
        gap: 10px;
    }

        .otp-inputs input {
            width: 35px;
            height: 35px;
            padding: 10px !important;
        }

    .signup_container .left-section_signup h2 {
        font-size: 22px;
    }

    .signup_container .left-section_signup img {
        width: 100%;
        position: relative;
    }

    .welcome_user {
        width: 70%;
    }

    .memberType {
        width: 30%;
        text-align: right;
    }

    .profile_tab_titles .welcome_user h1 {
        font-size: 19px;
        line-height: 1.2;
    }

    .memberType p {
        display: grid;
    }

    .profile_tab_titles .memberType p span, .profile_tab_titles .memberType p {
        font-size: 11px;
    }

    .gift_image {
        display: none;
    }

    .tabs_profile {
        display: grid;
    }
    .login-container .title {
        font-size: 26px;
    }
        /* .tab_section .d-flex {
        display: grid !important
    }*/
        .first_section_bronze {
        display: grid !important
    }

    .bronze_tier, .right_level, .tabs_list, .tabs_right, .first_lefttab, .second_righttab {
        width: 100%;
    }

    .points_earned .first_lefttab {
        width: 30%;
        padding: 10px;
        margin-top: 10px;
    }
    .points_earned .second_righttab {
        margin-top: 10px;
    }

    .points_earned .second_righttab {
        width: 70%;
        padding: 10px;
    }

    .usable_points {
        width: 26%;
    }

    .spin-wheel img {
        width: auto;
    }

    .spinwheel_text {
        /*width: 80%;*/
        margin: auto;
    }

    .earned_tab h1, .usable_points h1 {
        font-size: 26px;
    }

    .usablepoints_date {
        padding-left: 10px;
    }

    .tab_section {
        padding: 0px 0px;
    }

        .tab_section .levels-header {
            gap: 10px;
        }

        .tab_section .levels-box {
            padding: 10px 5px;
        }

        .tab_section .levels-list {
            gap: 10px;
        }

            .tab_section .levels-list span.icon {
                display: flex;
                align-items: center;
            }

        .tab_section .levels-header .title {
            font-size: 10px;
        }

        .tab_section .icon i {
            width: 16px;
            height: 16px;
            padding: 2px;
            font-size: 9px;
            line-height: 10px;
            margin-right: 5px;
            text-align: center;
        }

        .tab_section .visit-progress {
            gap: 4px;
        }

        .tab_section .levels-list li {
            font-size: 10px;
        }

    .tryfor_luck .col-md-12, .tryfor_luck .col-md-5.col-12, .tryfor_luck .col-md-7.col-12 {
        padding: 0px;
    }

    .spin-wheel {
        width: 100%;
    }

    .tryfor_luck {
        padding: 10px 10px 30px;
        margin-top: 20px;
    }

    .tabs_list {
        padding: 0px 0px;
        border-radius: 10px;
        margin-bottom: 20px;
        min-height: auto;
    }

        /*.tabs_list ul li a {
            padding: 10px 8px;
            font-size: 11px;
            border-bottom: 0px;
            transition: all 0.3s ease;
        }

        .tabs_list ul li a {
            border-bottom: 5px solid transparent;
        }

            .tabs_list ul li a.active, .tabs_list ul li a:hover {
                background: rgba(0, 0, 0, 0.12);
                border-bottom: 5px solid #f36c21;
                border-right: 0px;
                border-radius: 6px;
            }
            .tabs_list ul li a.active {
                background: transparent;*/ /* remove background */
            /*}

            .tabs_list ul li a:hover {
                background: rgba(0, 103, 103, 0.2);*/ /* keep hover if you want */
            /*}
            .tabs_list ul li a.active,
            .tabs_list ul li a:hover {
                border-bottom: 5px solid #f36c21;
            }
                .tabs_list ul {
                    display: flex;
                }

    .tabs_list {
        position: relative;
        margin-bottom: 20px;
        padding: 0;
        border-radius: 10px;
    }

        .tabs_list ul {
            display: flex;
            position: relative;
            z-index: 3;
        }*/

            /* Your original link styles */
            /*.tabs_list ul li a {
                padding: 10px 8px;
                font-size: 11px;
                border-bottom: 5px solid transparent;
                transition: all .3s ease;
                position: relative;
                z-index: 4;
                border-radius: 6px;
            }*/

             /*   .tabs_list ul li a.active,
                .tabs_list ul li a:hover {
                    background: rgba(0, 103, 103, 0.2);
                    border-bottom: 5px solid #f36c21;
                }*/

    /* --- SMART ANIMATE ELEMENTS --- */

    /* sliding background for active tab */
    /*.tab-bg-highlight {
        position: absolute;
        top: 0;
        height: 100%;
        width: 0;
        background: rgba(0, 103, 103, 0.2);
        border-radius: 6px;
        z-index: 2;
        transition: left .35s cubic-bezier(.25,.1,.25,1), width .35s cubic-bezier(.25,.1,.25,1);
    }*/

    /* sliding underline */
    /*.tab-underline {
        position: absolute;
        bottom: -1px;
        height: 0px;
        width: 0;
        background: rgba(0, 103, 103, 0.2);
        border-radius: 5px;
        z-index: 1;
        transition: left .35s cubic-bezier(.25,.1,.25,1), width .35s cubic-bezier(.25,.1,.25,1);
    }*/

    /* ------------------------------ */
    /* MAIN TABS WRAPPER */
    /* ------------------------------ */

    .tabs_list {
        position: relative;
        margin-bottom: 20px;
        padding: 0;
        border-radius: 10px;
    }

        /* UL inside tabs */
        .tabs_list ul {
            display: flex;
            position: relative;
            z-index: 3;
            padding-left: 0;
            margin: 0;
            justify-content: space-between;
        }

            /* ------------------------------ */
            /* TAB BUTTON ( <a> ) */
            /* ------------------------------ */

            .tabs_list ul li a {
                padding: 10px 8px;
                font-size: 11px;
                border-bottom: 5px solid transparent;
                transition: all 0.3s ease;
                position: relative;
                z-index: 4;
                border-radius: 6px;
                background: transparent; /* default clear */
                color: #005050; /* optional */
                height: 38px;
                border: none;
            }

                /* ACTIVE tab – no background (highlight handles it) */
                .tabs_list ul li a.active {
                    background: transparent !important;
                    border-bottom: 0px solid #f36c21;
                    border-right: 0px;
                    color: #004040;
                }

                /* Hover tab background */
                .tabs_list ul li a:hover {
                    background: transparent;
                    border-bottom: 0px solid #f36c21;
                    border-right: 0px;
                }

    /* ------------------------------ */
    /* SMART ANIMATE ELEMENTS */
    /* ------------------------------ */

    /* Sliding background highlight */
    .tab-bg-highlight {
        position: absolute;
        top: 0;
        height: 38px;
        width: 0;
        background: rgba(0, 103, 103, 0.2); /* This is the animated BG */
        border-radius: 10px;
        z-index: 2;
        transition: left 0.35s cubic-bezier(.25,.1,.25,1), width 0.35s cubic-bezier(.25,.1,.25,1);
    }

    /* Sliding underline (optional — you can disable if not needed) */
    .tab-underline {
        position: absolute;
        bottom: -1px;
        height: 9px;
        width: 0;
        background: #f36c21;
        border-radius: 0px 0px 10px 10px;
        z-index: 100;
        transition: left 0.35s cubic-bezier(.25,.1,.25,1), width 0.35s cubic-bezier(.25,.1,.25,1);
    }

    .tab_section .bronze_tier_tier-card .tabs_dblock {
        display: flex !important;
    }

    .tab_section .bronze_tier_tier-card {
        margin-bottom: 10px;
    }

    .gift_wellness_image {
        display: block;
        margin: 15px 0px;
    }

    .transactions-table-container .transactions-table thead th:nth-last-child(1),
    .transactions-table-container .transactions-table thead th:nth-last-child(2),
    .transactions-table-container .transactions-table thead th:nth-last-child(3) {
        width: 100px;
    }

    .transactions-table {
        width: 100%;
        overflow: auto;
        display: block;
    }

    .transactions-table-container {
        display: grid;
    }

    .refer_friend {
        margin-top: 20px;
    }

    .program_benefits .tier_benefits {
        width: 100%;
        padding-right: 0px;
    }

    .benefits_other {
        width: 100%;
        margin-bottom: 0px;
    }

    .program_grid {
        display: grid !important;
    }

    .benefits_other ul li {
        padding-bottom: 0px;
    }

    .tier_list h2 {
        margin-bottom: 10px;
    }

    .user_profile:hover {
        padding: 3px 3px 3px 15px;
    }

    .user_profile .user_img img {
        width: 25px;
        height: 25px;
    }

    /*.user_profile:hover .user_name {
        min-width: 40px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-size: 13px;
    }*/

    .user_profile:hover .signout {
        top: 32px;
        min-width: 150px;
        z-index:1000;
    }

    .personal_fields form {
        padding-left: 0px;
    }

    .mobile-margin {
        margin-bottom: 16px;
    }

    .form_benefits, .form_signup {
        padding-bottom: 0px;
    }

    .prodile_fields {
        margin-bottom: 15px;
    }

    body:has(.main-menu.open) {
        overflow: hidden;
    }

    .faq_section .accordion-body {
        font-size: 14px;
    }

        .faq_section .accordion-body p, .faq_section .accordion-body p a, .faq_section a {
            font-size: 14px;
        }

    .spinwheel_text p {
        margin: 10px 0px;
        font-size: 13px;
    }

    .transactions-table-container {
        display: grid;
        margin-bottom: 0px;
    }

    .prodile_fields .row .col-md-6.col-12:nth-child(1) {
        margin-bottom: 14px;
    }

    .tier-card:hover:not(.active) {
        width: 200px;
        padding: 10px;
        display: flex;
        align-items: end;
    }

    .card-first .coin-icon {
        width: 28px;
    }

    .card-first h3 {
        font-size: 20px;
    }

    .visit-box {
        padding: 5px;
        min-width: 50px;
    }

    .card-second .title {
        font-size: 13px;
        margin-bottom: 5px;
        line-height:1.15;
    }

    .card-second .desc {
        font-size: 10px;
    }

    .card-second .rate b {
        font-size: 12px;
    }

    .visit-count {
        font-size: 18px;
    }
        .visit-count label {
            font-size: 14px;
        }
    .visit-text {
        font-size: 10px;
    }

    .tier-card {
        height: 200px;
    }

    .tier-card {
        width: 46px;
        margin: 0px 6px;
        transition: all 0.8s ease;
    }

    .card-first {
        margin-top: -45px;
    }

    .sign_join {
        position: fixed;
        top: 60px;
        right: 0px;
        width: calc(-20px + 100vw);
        height: calc(-100px + 100vh);
        background: #ffffff;
        padding: 10px 40px;
        border-radius: 10px 10px 0px 0px;
        overflow-y: auto;
        transform: translateX(110%);
        transition: 0.3s ease-in-out;
        z-index: 9999;
        margin: auto;
    }

    .signin_joinnow-mobile.open .sign_join {
        right: 10px;
        transform: translateX(0);
    }

    .signin_joinnow-mobile i.fas.fa-user-circle {
        color: #006767;
        font-size: 22px;
    }

    .signin_joinnow-mobile.open i.fas.fa-user-circle {
        color: #f36c21;
    }

    .signin_joinnow-mobile.open .sign_join {
        display: flex;
        align-items: center;
        justify-content: center
    }

        .signin_joinnow-mobile.open .sign_join .signin-joinnow {
            display: grid;
            align-items: center;
            justify-content: center;
            text-align: center !important;
        }

            .signin_joinnow-mobile.open .sign_join .signin-joinnow a {
                margin-bottom: 20px;
            }

        .signin_joinnow-mobile.open .sign_join .close-menu {
            top: 10px;
        }

        .signin_joinnow-mobile.open .sign_join .signin-joinnow a button.btn {
            min-width: 120px;
            margin-left: 0px;
        }
    .signin_joinnow-mobile.open .sign_join .signin-joinnow a button.btn-join img {
        filter: saturate(1);
    }
        .signin_joinnow-mobile.open .sign_join .signin-joinnow button.btn-join:hover img {
            filter: invert(1);
        }
    body:has(.signin_joinnow-mobile.open) .mobile_device,
    body:has(.main-menu.open) .mobile_device,
    body:has(.main-menu.open) .footer_section,
    body:has(.signin_joinnow-mobile.open) .footer_section {
        display: none;
    }
    .join_free {
        display: block;
    }

        .join_free span {
            color: #7a7a7a;
            font-size: 13px;
            line-height: 1;
            display: grid;
        }

        .join_free label {
            font-size: 13px;
            color: #f36c21;
            margin-top: 8px;
        }
    .gift_wellness_image img{
        border-radius: 20px
    }
    .visit-box{
        min-width: 45px;
    }
    .tiers-wrapper {
        padding: 20px 0px 15px;
    }
    .slick-next {
        right: 0px;
        margin-right: -20px;
        margin-top: 0px;
    }
    .home-card-wrapper a {
        width: 100%;
        display: block;
        margin-bottom: 25px;
    }
    .home-card-wrapper a:nth-last-child(1){
        margin-bottom: 0px;
    }
    .storeName {
        position: sticky;
        left: 0px;
        z-index: 1000;
        background: #f6f3ee;
        border-right: 1px dashed #006767 !important;
    }
    .usablepoints_date p {
        margin-bottom: 10px;
    }
    .user_profile.active .user_name {
        display: block;
        min-width: 87px;
        transform: translateY(0);
    }

    .user_profile.active {
        background: #f6f3ee;
        box-shadow: 0px 0px 10px #d1c9bb;
        border-radius: 5px;
        padding: 8px;
        display: inline-flex;
        padding-left: 20px;
    }
    .user_profile.active {
        padding: 3px 3px 3px 10px;
    }
    .user_profile.active .signout {
        display: block;
        position: absolute;
        right: 0px;
        top: 32px;
        z-index: 100;
        border: 1px solid #d6cdbe;
        padding: 0px 0px;
        list-style: none;
        min-width: 166px;
        text-align: left;
        font-size: 12px;
        margin-top: 0px;
        -webkit-transition: all .2s ease;
        border-radius: 5px;
        transition: all .2s ease;
        background-color: #f6f3ee;
        box-shadow: 0px 0px 10px #d1c9bb;
        border-radius: 7px;
    }
        .user_profile.active .down_arrow img {
            transform: rotate(270deg);
        }
    .mobile_showlogin{
        display: block
    }
    .desktop_loginshow{
        display: none;
    }

    .login-container .welcome {
        font-size: 18px;
        margin: 10px 0px;
    }
    .tier-card.active{
        width: 200px;
        padding: 10px;
    }
    .user_profile:hover .signout {
        display: none;
    }
    .user_profile.active .signout{
        display: block
    }
    th.storeName:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 0px;
        /* background-color: #006767; */
        border-right: 1px dashed #006767 !important;
    }
    td.storeName:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 0px;
        /* background-color: #006767; */
        border-right: 1px dashed #006767 !important;
    }
    .color-back {
        right: 20px;
        top: 30px;
    }
    #otpSection, .color-back,
    .otp-inputs, 
    .loginform {
        animation: none !important;
        /*        -webkit-animation: none !important;
        opacity: 1 !important;*/
    }
    .card-second .desc b {
        font-size: 10px;
    }
}

    @media screen and (max-width: 330px) {
        .visit-box {
            min-width: 45px;
        }
        .transactions-table-container {
            display: grid;
            margin-bottom: 0px;
        }

        .tabs_list ul li a {
            padding: 10px 7px;
            font-size: 9px;
        }

        .usablepoints_date p, .usablepoints_date p b {
            color: #006767;
            font-size: 10px;
        }

        .earned_tab h1, .usable_points h1 {
            font-size: 22px;
        }

        .earned_tab p, .usable_points p {
            line-height: 1.2;
            font-size: 11px;
        }

        .spinwheel_text p {
            margin: 10px 0px;
            font-size: 13px;
        }
        .tab_section .levels-header {
            gap: 5px;
        }

        .tab_section .levels-list {
            gap: 5px;
        }
    }

.soft-card {
    width: 100% !important;
}

@media screen and (min-width: 800px) and (max-width: 1200px) {
    .soft-card p {
        min-height: 42px;
    }
}
.smiles_note {
    font-size: 14px;
    color: #f36c21;
    font-weight: 600;
    margin-bottom: 10px;
    font-style: italic;
    letter-spacing: 0.5px;
}
.signup-form .select2-container--default .select2-selection--single {
    background-color: #f6f3ee !important;
    border: 0px solid #aaa !important;
}
.transactions-table-container {
    max-height: 550px; /* or whatever height fits design */
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
}
.transactions-table {
    height: 430px;
}

.tab_section .icon.un_lock {
    width: 25px;
    height: 25px;
    background: #006767;
    border: 0px solid #000;
    border-radius: 50px;
    padding: 5px;
    font-size: 12px;
    text-align: center;
    line-height: 12px;
    margin-right: 8px;
}
.tab_section .icon.un_lock i.fas{
    background: transparent;
    border: 0px;
    padding: 0px;
    margin: 0px;
    color: #fff;
    text-align: center;
    width: auto;
    height: auto;
    line-height: 14px;
    font-size: 10px;
}
.tier_list ul li b {
    font-size: 12px;
    font-weight: 700;
}