/*
--------------------------------------------------------------------------------------------------------
* Project    :                                                                                         *
* Author     : piyush Tapaniya | +91 83060 05795                                                       * 
* Support    : piyush.tapaniya90@gmail.com                                                             * 
*------------------------------------------------------------------------------------------------------- 
NOTE: This is main stylesheet of template, This file contains the styling for the actual Template.
*/

/*================================================
[  Table of contents  ]
================================================== 
:: general css Style
   :: google font
   :: basic style     
   :: headings
   :: button style
   :: helper classes 
   :: section title
   :: box border
   :: custome class 
:: scrollbar CSS
:: back to top CSS
:: loader CSS
:: animations 
==================================================
[ End table content ]
================================================*/

@charset "UTF-8";
/*================================================
    :: general css Style
==================================================*/

/* :: google font */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --primary-color: #f97415;
    --secondary-color: #28af60;

    --gradient-trust: linear-gradient(135deg, hsl(25 95% 53%) 0%, hsl(145 63% 42%) 100%);
    --gradient-hero: linear-gradient(180deg, hsl(25 100% 98%) 0%, hsl(0 0% 100%) 100%);
    --gradient-card: linear-gradient(135deg, hsl(0 0% 100%) 0%, hsl(220 14% 98%) 100%);
    --gradient-wallet: linear-gradient(135deg, hsl(25 95% 53%) 0%, hsl(25 90% 45%) 100%);
}


/* :: basic style  */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    background-color: #fff;
    color: #6a7181;
    font-size: 16px;
}

body,
html {
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #21242c;
}

p {
    font-size: 16px;
    color: #6a7181;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
a {
    margin-top: 0;
    margin-bottom: 0;
    -webkit-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    transition: all linear 0.3s;
}

img {
    max-width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

a,
a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
    text-decoration: none;
    color: inherit;
}


ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    outline: none;
    border: 0;
    cursor: pointer;
    background: transparent;
}

button:focus {
    outline: none;
    outline: 0;
}

iframe {
    width: 100%;
    border: 0px;
}

/* :: Form */
textarea {
    resize: none;
}

/* select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
} */

input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: none;
}

::-moz-selection {
    background: var(--primary-color);
    color: #ffffff;
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: #ffffff;
    text-shadow: none;
}

/* :: headings */

/* :: Font h1 */
h1 {
    font-size: 62px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    h1,
    .banner-content h1 {
        font-size: 52px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    h1,
    .banner-content h1 {
        font-size: 42px;
    }
}

@media only screen and (max-width: 767px) {

    h1,
    .banner-content h1 {
        font-size: 42px;
    }
}

@media only screen and (max-width: 576px) {

    h1,
    .banner-content h1 {
        font-size: 25px;
    }
}

/* :: Font h2 */
h2 {
    font-size: 52px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    h2,
    .banner-content h2 {
        font-size: 42px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    h2,
    .banner-content h2 {
        font-size: 32px;
    }
}

@media only screen and (max-width: 767px) {

    h2,
    .banner-content h2 {
        font-size: 32px;
    }
}

@media only screen and (max-width: 576px) {
    .banner-content h2 {
        font-size: 22px;
    }
}

/* :: Font h3 */
h3 {
    font-size: 32px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    h3,
    .banner-content h3 {
        font-size: 28px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    h3,
    .banner-content h3 {
        font-size: 26px !important;
    }
}

@media only screen and (max-width: 767px) {

    h3,
    .banner-content h3 {
        font-size: 24px !important;
    }
}

@media only screen and (max-width: 576px) {
    .banner-content h3 {
        font-size: 18px !important;
    }
}

/* :: Font h4 */
h4 {
    font-size: 28px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h4 {
        font-size: 24px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h4 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    h4 {
        font-size: 24px;
    }
}

/* :: Font h5 */
h5 {
    font-size: 22px;
}

@media only screen and (max-width: 767px) {
    h5 {
        font-size: 22px;
    }
}

/* :: Font h6 */
h6 {
    font-size: 18px;
}

@media only screen and (max-width: 767px) {
    h6 {
        font-size: 18px;
    }
}

.owl-dots {
    text-align: center;
}

.owl-dots button {
    height: 12px;
    width: 12px;
    background: #dcdcdc !important;
    display: inline-block;
    margin: 0 4px;
    border-radius: 15px;
}

.owl-dots button.active {
    background: var(--primary-color) !important;
}





/* :: helper */
.text-gray {
    color: #000 !important;
}

.text-white {
    color: #ffffff !important;
}


.text-black {
    color: #000000 !important;
}

.primary-color {
    color: var(--primary-color) !important;
}

.bg-white {
    background-color: #ffffff !important;
}

.bg-color {
    background-color: var(--primary-color) !important;
}

.bg-01 {
    background-color: #000 !important;
}

.bg-02 {
    background-color: #f1f1f1 !important;
}

.text-primary {
    color: var(--primary-color) !important;
}
.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-gradient-1 {
    background-image: var(--bg-gradient-1);
}

.bg-gradient-text {
    background-image: var(--bg-gradient-text);
    background-clip: text;
    color: transparent;
}

.grid-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.5rem;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 1.5rem;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 1.5rem;
}

/* :: form */
.form-control {
    height: 50px;
}

.form-control:focus {
    background-color: transparent;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select {
    position: relative;
    display: block;
    width: 100%; 
    padding: 10px 15px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #E6E6E6;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    appearance: auto;
}

.form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 15px 15px 15px;
    color: #000;
    height: 185px;
    background: transparent;
    color: #ffffff;
    resize: none;
    border-radius: 15px;
    border: 1px solid #E6E6E6;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.error-text {
    display: block;
    padding: 5px 0px 0px;
    margin: 0px;
    text-transform: capitalize;
    font-size: 14px;
    color: #ff0000;
    font-weight: 500;
}

input.error,
select.error,
textarea.error {
    border-color: #ff0000 !important;
}

/*radio button stype*/
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

[type="radio"]:checked+label,
[type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    display: inline-block;
}

[type="radio"]:checked+label:before,
[type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 1px;
    top: 4px;
    width: 18px;
    height: 18px;
    border: 1px solid #c1c1c1;
    border-radius: 100%;
    background: #fff;
}

[type="radio"]:checked+label:after,
[type="radio"]:not(:checked)+label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    position: absolute;
    top: 7px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

[type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

[type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/*-------------------------------------------------
:: button 
-------------------------------------------------*/

.btns {
    background: var(--gradient-trust);
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 2rem;
    padding-right: 2rem;
    display: inline-block;
    color: #fff;
    font-weight: 500;
    border-radius: 15px;
    font-size: 16px;
    text-align: center;
}

.btns:hover,
.btns:focus {
    color: #fff;
}

.btns-border {
    border: 1px solid #e5e7eb;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 2rem;
    padding-right: 2rem;
    display: inline-block;
    color: #000;
    font-weight: 500;
    border-radius: 15px;
    font-size: 16px;
    text-align: center;
}

.btns-border:hover {
    background-color: rgb(255 246 240);
    color: var(--primary-color);
}


.fix-width {
    max-width: 512px;
    margin: 0 auto;
}

.fix-width-672 {
    max-width: 672px;
    margin: 0 auto;
}

.fix-width-991 {
    max-width: 991px;
    margin: 0 auto;
}

.text-gradient {
    background: linear-gradient(135deg, hsl(25 95% 53%) 0%, hsl(145 63% 42%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}

.h-16 {
    height: 4rem;
}

.flex-1 {
    flex: 1 1 0%;
}

.min-h-screen {
    min-height: 100vh;
    height: 100%;
}


.footer-sticky {
    position: fixed;
    z-index: 9;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(255 255 255 / 80%);
    backdrop-filter: blur(8px);
    border-top: 1px solid #e5e7eb;
}

.footer-wapper {
    max-width: 1296px;
    margin: 0 auto;
}

.footer-menu-ul li a {
    color: #6a7181;
}

.footer-menu-ul li a.active {
    color: var(--primary-color);
}

.footer-menu-ul li a:hover {
    color: #21242c;
}

.footer-menu-ul li a svg {
    width: 20px;
    height: 20px;
}


main.main-area {
    padding-bottom: 4rem;
    /* height: calc(100% - 8rem); */
}


.banner-area {
    background: var(--gradient-hero);
}

.banner-subtitle {
    border: 1px solid rgb(249 116 21 / 20%);
    padding: 8px 15px;
    border-radius: 100px;
    font-size: 14px;
    background-color: #fff6f0;
    color: #c75605;
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}


.card-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
}

.card-content h2 {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 5px;
}

.card-content p {
    color: #6a7181;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
    margin-bottom: 20px;
}

.card-buttons {
    background-color: #f97415;
    color: #fff;
    font-weight: 600;
    font-size: .875rem;
    line-height: 1.25rem;
    padding: 8px .75rem;
    border-radius: 10px;
    display: inline-block;
}

.card-buttons:hover {
    color: #fff;
}

.card-items {
    padding: 20px;
    border-radius: 15px;
}

.card-items:nth-child(1) {
    background: #fef3eb;
}

.card-items:nth-child(1) .card-icon {
    color: #f97415;
}

.card-items:nth-child(2) {
    background: #ecf8f1;
}

.card-items:nth-child(2) .card-icon {
    color: #28af60;
}

.how-works-box {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.5rem;
}

.how-works-box::after {
    content: '';
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--gradient-trust);
    top: 30px;
    z-index: -1;
}

.how-works-items {
    text-align: center;
}

.how-works-icon {
    height: 64px;
    width: 64px;
    display: flex;
    color: var(--primary-color);
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 auto 15px auto;
    -webkit-box-shadow: 0 2px 5px hsl(0deg 0% 13% / 15%);
    box-shadow: 0 2px 5px hsl(0deg 0% 13% / 15%);
    z-index: 1;
}

.number {
    height: 24px;
    width: 24px;
    position: absolute;
    display: flex;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    top: -5px;
    right: -5px;
    font-size: 14px;
    background: var(--gradient-trust);
    color: #fff;
}

.how-works-content h2 {
    font-size: 16px;
    color: #21242c;
    font-weight: 600;
}


.getwap-area {
    background-color: rgb(243 244 246 / 30%);
    border-top: 1px solid #e5e7eb;
}

.getwap-wapper {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.getwap-wapper p {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.rewardbot{
    background: var(--gradient-trust);
    padding: 25px;
    border-radius: 15px;
    display: flex;  
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.rewardbot-left{
    display: flex;  
    align-items: center;
    gap: 15px;
}
.rewardbot-left-icon {
    position: relative;
    height: 48px;
    width: 48px;
    display: flex;
    background-color: rgb(255 255 255 / 20%);
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 15px;
}
.rewardbot-left-content h2 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.chat-btns {
    padding: 8px .75rem;
    font-weight: 600;
    font-size: .875rem;
    line-height: 1.25rem;
    background-color: rgb(255 255 255 / 20%);
    border-radius: 10px;
    color: #fff;

}
.chat-btns:hover { 
    background-color: rgb(255 255 255 / 100%); 
    color: #000; 
}


.accordion-titles {
    margin-bottom: 20px;
}

.accordion-box-items {
    padding: 25px;
    border-radius: 15px; 
    margin-bottom: 30px;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px hsl(220 15% 15% / .08), 0 4px 6px -4px hsl(220 15% 15% / .05);
}

.accordion-titles h2 {
    font-size: 20px !important;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #21242c;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.accordion-box-items .accordion-header {
    font-size: 16px !important;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #21242c;
}

.accordion-box-items .accordion-button {
    color: #21242c;
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
}

.accordion-box-items .accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #E6E6E6;
    border-radius: 0;
}

.accordion-body {
    padding: 0 0 15px 0;
}

.accordion-body p {
    font-size: 14px;
    color: #21242c;
    line-height: 24px;
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
}

.accordion-button::after {
    width: 13px;
    height: 13px;
    background-size: 13px;
}

.additional-help {
    padding: 25px; 
    border-radius: 15px; 
    margin-bottom: 30px;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px hsl(220 15% 15% / .08), 0 4px 6px -4px hsl(220 15% 15% / .05);
}

.additional-help h3 {
    font-size: 20px !important;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #21242c;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}


.help-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.help-list a {
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 600;
    padding: 10px .5rem;
    border: 1px solid #e5e7eb;
        color: #21242c;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.help-list:nth-child(1) a svg{
    color: var(--primary-color);
}
.help-list:nth-child(2) a svg{
    color: #28af60;
}

.wallet-box {
        position: relative;
    background: var(--gradient-wallet);
    padding: 25px;
    border-radius: 15px;
    color: #fff;
    overflow: hidden;
}
.wallet-box::after {
    content: '';
    position: absolute;
    height: 100px;
    width: 100px;
    background-color: rgba(255, 255, 255, 0.151);
    border-radius: 500px;
    top: -30px;
    right: -30px;
}
.wallet-box-content h1{
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}
.powered-by-txt{
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 600;
    padding-left: .75rem;
    padding-right: .75rem;
    background-color: rgb(255 255 255 / 10%);
    padding-top: .5rem;
    padding-bottom: .5rem;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
} 

.wallet-tbs-view {
    padding: 25px;
    border-radius: 15px;
}
.wallet-tbs-view.upi{
        background: #f97415;
}
.wallet-tbs-view.upi:hover{
    background-color: rgba(249, 116, 21, 0.902);
}
.wallet-tbs-view.store{
    background: var(--secondary-color);
}
.wallet-tbs-view.store:hover{
    background-color: rgba(40, 175, 96, 0.902);
}
.wallet-tbs-view a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    gap: 15px;
    font-weight: bold;
}

.recent-activity {    
    border-radius: 15px;
    margin-bottom: 30px; 
    box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px hsl(220 15% 15% / .08), 0 4px 6px -4px hsl(220 15% 15% / .05);
}

.viewall {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--primary-color);
    font-size: 14px;
    padding:  0 15px;
    font-weight: 600;
}

.viewall:hover {
    background: #fff6f0;
    color: #c75605;
}
 
.recent-activity-title {
    padding: 25px 20px 0 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between; 
    
}


.recent-activity-title h2 {
    font-size: 20px !important;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #21242c;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}
.recent-activity-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E6E6E6;
    padding: 20px;
}
.recent-activity-list:nth-last-child(1){
    border-bottom: none;
}

.recent-activity-left h2 {
    font-size: 16px !important;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #21242c;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}
.recent-activity-left p {
    color: #6a7181;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 600;
}
.recent-activity-right p {
    font-weight: 600;
}

 
.inner-back-btns {
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 10px;
    color: var(--primary-color);
    font-size: 14px;
    padding:  10px 15px;
    font-weight: 600;
}

.inner-back-btns:hover {
    background: #fff6f0;
    color: #c75605;
}



.transfer-form {
        border-radius: 15px;
    padding: 25px;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px hsl(220 15% 15% / .08), 0 4px 6px -4px hsl(220 15% 15% / .05);
}
.inner-page-title h2 {
    font-size: 24px !important;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #21242c;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.inner-page-title p { 
    font-weight: 600; 
}
.inner-page-title p span{ 
    color: #000;
}
 

.transfer-form-title h2 {
    font-size: 20px !important;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #21242c;
    margin-bottom: 10px;
    display: flex; 
    align-items: center;
    gap: 15px;
}
.transfer-form-title p { 
    font-weight: 600; 
}

.transfer-info {
    display: flex;
    gap: 10px;
    flex-direction: column;
}
.transfer-info p{
    background-color: rgb(243 244 246 / 50%);
    border-radius: 0.75rem;
    padding: .75rem;
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 600;
}


.success-icon {
    width: 6rem;
    background-color: rgb(40 175 96 / 10%);
    height: 6rem;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
    margin: 0 auto 25px auto;
}

.success-content h2 {
    font-size: 26px !important;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #21242c;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.cashback-credited { 
    background-color: rgb(40 175 96 / 10%); 
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
}

.cashback-credited-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.cashback-credited-info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 16px;
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.cashback-credited-info-content p{
        color: #6a7181;
    font-size: .875rem;
    margin-bottom: 5px;
    font-weight: 600;
}
.cashback-credited-info-content h3 {
    font-size: 24px !important;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #21242c;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}
.cashback-credited-right{
        color: rgb(40 175 96 / 50%);
}

 

.cashback-credited-btn-wapper  .btns-wallet {
    background: #f97415;
    color: #fff;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
    gap: 10px;
    font-weight: 500;
    border-radius: 15px;
    font-size: 16px;
    text-align: center;
    height: 58px;
    align-items: center;
    justify-content: center;
}

.cashback-credited-btn-wapper .btns-wallet:hover {
    background: rgba(249, 116, 21, 0.90);     
}

.cashback-credited-btn-wapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cashback-credited-btn-wapper .btns-border{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
 
.cashback-credited-btn-wapper .btns-verify {
    background: transparent;
    color: #000; 
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
    gap: 10px;
    font-weight: 500;
    border-radius: 15px;
    font-size: 16px;
    text-align: center;
    height: 58px;
    align-items: center;
    justify-content: center;
}

.cashback-credited-btn-wapper .btns-verify:hover {
    background-color: rgb(255 246 240);
    color: var(--primary-color);
}


.claim-top .claim-icon{
    width: 5rem;
    height: 5rem;
        background: linear-gradient(135deg, hsl(25 95% 53%) 0%, hsl(145 63% 42%) 100%);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin: 0 auto 25px auto;
}


.form-group {
    position: relative;
}
.field-icons {
    position: absolute;
    right: 5px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 0;
}

.field-icons a {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center; 
    border-radius: 10px;
    color: #20242c;
}
.field-icons a:hover {
    background: #fff6f0;
    color: #c75605;
}


.file-upload {
    background-color: rgb(243 244 246 / 30%);
    border: 2px dashed #e5e7eb;
    border-radius: 15px;
    padding: 25px;
}
.file-upload:hover {
    border-color: var(--primary-color);
    border-radius: 15px;
    padding: 25px;
}
.file-upload input.form-control[type="file"] {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    min-height: 173px;
    opacity: 0;
}


.store-tabs ul.nav {
    padding: 5px;
    background: #f3f4f6;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center; 
    border: none;
}
.store-tabs ul.nav li.nav-item {
    width: 50%;
}
.store-tabs ul.nav li.nav-item .nav-link {
    background: transparent;
    width: 100%;
    padding: 8px 0;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    color: #6a7181;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.store-tabs ul.nav li.nav-item .nav-link.active {
    background: #fff;
    color: #21242c;
}


.vouchers-ul {
    display: flex;
    gap: 10px;
}
.vouchers-ul li a {
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: #6a7181;
    padding: 8px .75rem;
    background: #f3f4f6;
    border-radius: 8px;
    display: inline-block;
}
.vouchers-ul li a.active{
    background-color: var(--primary-color);
    color: #fff;
}


.store-list{
    position: relative;
    overflow: hidden;
    border-radius: 15px; 
    box-shadow: 0 0 #0000, 0 0 #0000, 0 3px 15px 0px hsl(220 15% 15% / .05), 0 1px 3px 0px hsl(220 15% 15% / .01);
}
.store-image img {
    width: 100%;
}
span.tags {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    background: #fff;
    padding: 5px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
} 
span.tags svg {
    width: 12px;
    height: 12px;
}
.store-content {
    padding: 15px;
} 
.store-filters-number {
    display: flex;
    gap: 5px;
}
.store-filters-number li a {
    font-size: 13px;
    line-height: 1.25rem;
    font-weight: 600;
    color: #6a7181;
    padding: 6px .75rem;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    display: inline-block;
}
.store-filters-number li a:hover {
    background: #fff6f0;
    color: #c75605;
}

.store-products-list{
    position: relative;
    overflow: hidden;
    border-radius: 15px; 
    box-shadow: 0 0 #0000, 0 0 #0000, 0 3px 15px 0px hsl(220 15% 15% / .05), 0 1px 3px 0px hsl(220 15% 15% / .01);
}
.store-products-content{
    padding: 15px;
    position: relative;
}
.store-products-content h2{
    font-size: 18px !important;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #21242c;
    margin-bottom: 5px; 
}
.store-products-content p{
    font-weight: 600;
}

.products-btns{
    background: #f97415;
    padding: 5px 10px; 
    display: block;
    width: 100%;
    color: #fff;
    font-weight: 500;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
}
.products-btns:hover{
    background: rgba(249, 116, 21, 0.90);
    color: #fff;
}


.authentication-box {
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px hsl(220 15% 15% / .08), 0 4px 6px -4px hsl(220 15% 15% / .05);
}

.otp-input {
    display: flex;
    position: relative;
    width: 100%;
    line-height: 28px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #E6E6E6;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    max-width: 75%;
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
}

.otp-input input[type="text"] {
    border: none;
    border-right: 1px solid #E6E6E6;
    border-radius: 0;
    text-align: center;
    font-size: 24px;
}

.otp-input input[type="text"]:nth-last-child(1) {
    border-right: none;
}

.form-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.resend-btn {
    background: #fff;
    border: 1px solid #E6E6E6;
    color: #171717;
    display: flex;
    align-items: center;
    gap: 9px;
    justify-content: center;
}
.resend-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.payment-mode-box{
        border-radius: 15px;
    padding: 25px;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px hsl(220 15% 15% / .08), 0 4px 6px -4px hsl(220 15% 15% / .05);
}

.payment-title h2 {
    font-size: 20px !important;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #21242c;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.checkout-payment-items {
    margin-bottom: 20px;
}
.checkout-check label{
    font-size: 14px;
    line-height: normal;
    color: #92929D;
} 

.checkout-payment-items [type="radio"]:checked + label, 
.checkout-payment-items [type="radio"]:not(:checked) + label {
    font-weight: 600;
} 

.check-out-product {
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 10px;
    padding: 20px;
    background-color: #F8F8F8;
}
.check-out-content {
    flex: 1;
}

.thankyou-icon {
     width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, hsl(25 95% 53%) 0%, hsl(145 63% 42%) 100%);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin: 0 auto 25px auto;
}

.thankyou-product {
    display: flex;
    gap: 15px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 3px 15px 0px hsl(220 15% 15% / .05), 0 1px 3px 0px hsl(220 15% 15% / .01);
}
.thankyou-content {
    flex: 1;
}
.thankyou-imge {
    border-radius: 5px;
    overflow: hidden;
}

.thankyou-content h4 {
    font-size: 20px !important;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #21242c;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}