:root{
    --bodybgcolor: #eaeaea;
    --whitecolor: #ffffff;
    --blackcolor: #000000;
    --primarycolor: #d21131;
    --secondarycolor: #1a1131;
    --lightgraycolor: #c9c9c9;
    --darkgraycolor: #8f8f8f;
    --title-color: #1a1131;
    --sfpromedium: 'SFProDisplayMedium';
    --sfprobold: 'SFProDisplayBold';
    --sfproregular: 'SFProDisplayRegular';
    --sfproblackitalic: 'SFProDisplayBlackItalic';
    --sfprolightitalic: 'SFProDisplayLightItalic';
    --sfproheavyitalic: 'SFProDisplayHeavyItalic';
    --sfproultralightitalic: 'SFProDisplayUltralightItalic';
    --sfprothinitalic: 'SFProDisplayThinItalic';
    --sfprosemibolditalic: 'SFProDisplaySemiboldItalic';
    --bs-body-font-family: var(--sfproregular); 
    --bs-body-font-size: 14px;
    --bs-body-color: var(--blackcolor);
}
body{
    font-family: var(--sfproregular);
    background-color: var(--bodybgcolor);
}
a{
    color: var(--primarycolor);
}


.form-group{
    margin-bottom: 20px;
    position: relative;
}
.input-group{
    margin-bottom: 20px;
    position: relative;
    border: solid 1px var(--blackcolor);
    border-radius: 12px;
    padding: 10px;
}
.input-group-text{
    background-color: transparent;
    padding: 0;
    border: 0;
    border-right: solid 2px var(--blackcolor);
    padding-right: 10px;
}
.input-group-text img{
    width: 30px;
}
.form-control{
    background-color: var(--whitecolor);
    border: solid 1px var(--blackcolor);
    border-radius: 12px;
    height: 50px;
    font-size: 14PX;
    font-family: var(--sfpromedium);
}
.form-control:focus{
    box-shadow: none;
}
.input-group .form-control{
    height: 30px;
    border: 0;
}
.niceCountryInputMenu{
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    background-color: var(--primarycolor) !important;
    color: var(--whitecolor) !important;
    border: 0 !important;
    padding: 10px;
}
.niceCountryInputMenu a{
    font-family: var(--sfproregular);
    color: var(--whitecolor) !important;
    font-size: 17px;
    display: flex;
    align-items: center;
}
.niceCountryInputMenuDropdown{
    color: var(--whitecolor);
}
.telephone-field{
    width: 100%;
    background-color: var(--primarycolor);
    height: 50px;
    border-radius: 12px;
    color: var(--whitecolor) !important;
    border: 0 !important;
    padding: 10px;
}
.telephone-field::placeholder{
    opacity: 1;
    color: var(--whitecolor);
}
.telephone-field:focus{
    background-color: var(--primarycolor);
    color: var(--whitecolor);
    box-shadow: none;
    outline: none;
    border: 0;
}
.iti--allow-dropdown{
    width: 100%;
}
.iti__arrow {
    border-top: var(--iti-arrow-height) solid var(--whitecolor);
}
.submit-num-verification {
    position: absolute;
    right: 10px;
    top: 9px;
    width: 30px;
    cursor: pointer;
}
.otp-input {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}
.otp-input input {
    width: 50px;
    height: 70px;
    margin: 0 8px;
    text-align: center;
    font-size: 1.5rem;
    border: 2px solid var(--blackcolor);
    border-radius: 12px;
    background-color: var(--whitecolor);
    color: var(--blackcolor);
    transition: all 0.3s ease;
}
.otp-input input::placeholder{
    font-size: 1.5rem;
    color: var(--blackcolor);
    opacity: 1;
}
.otp-input input:focus {
    border-color: var(--primarycolor);
    outline: none;
}
.otp-input input::-webkit-outer-spin-button,
.otp-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.otp-input input[type=number] {
    -moz-appearance: textfield;
}


.btn-secondry{
    background-color: var(--secondarycolor);
    font-family: var(--sfproregular);
    color: var(--whitecolor);
    font-size: 20px;
    text-transform: uppercase;
    padding: 10px;
    min-width: 250px;
    border-radius: 12px;
}
.btn-secondry:hover, .btn-secondry:focus, .btn-secondry:active, .btn-secondry.active{
    background-color: var(--primarycolor) !important;
    color: var(--whitecolor) !important;
}
.bar-slider{
    position: absolute;
    left: 0;
    right: 0;
    width: 80%;
    margin: 0 auto;
    bottom: 20px;
    background-color: var(--lightgraycolor);
    height: 5px;
    max-width: 400px;
    border-radius: 5px;
}
.bar-slider::before{
    content: '';
    position: absolute;
    left: 0;
    width: 40px;
    height: 5px;
    background-color: var(--darkgraycolor);
    border-radius: 5px;
}
.link-fill{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.custom-checkbox input{
    position: absolute;
    visibility: hidden;
    opacity: 0;
}
.custom-checkbox label{
    display: flex;
    align-items: center;
    cursor: pointer;
}
.checkbox-icon{
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blackcolor);
    border: solid 1px var(--blackcolor);
    border-radius: 5px;
    font-size: 12px;
}
.checkbox-icon svg{
    display: none;
}
.custom-checkbox label p{
    margin-bottom: 0;
    font-family: var(--sfpromedium);
    font-size: 16px;
    margin-left: 10px;
}
.custom-checkbox label p span{
    color: var(--primarycolor);
}
.custom-checkbox input:checked ~ label .checkbox-icon svg{
    display: block;
}







/* ---------- Login Screens Start ------------ */
.page-area-main{
    position: relative;
    min-height: 100vh;
}

.login-container{
    padding-bottom: 30px;
    background-image: url('../images/login-footer-bg.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% 22%;
    min-height: 100vh;
    background-color: #fff;
}
.login-top-area{
    background-image: url('../images/login-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
}
.login-logo{
    max-width: 200px;
    width: 100%;
    margin: 0 auto;
    padding-top: 30px;
}
.login-logo img{
    width: 100%;
}
.login-character {
    max-width: max-content;
    width: auto;
    height: 50vh;
    margin: 0 auto 0;
    padding: 50px 0 0px;    
}
.login-character img {
    width: auto;
    height: 100%;
}
.login-form-main {
    max-width: 767px;
    margin: 0 auto;
    padding: 3vh 60px 0;
}
.number-verify-area-mian .bar-slider::before{
    left: 25px;
}
.number-verify-container .login-character{
    padding: 0px 0 0px;
}
.number-verify-container .login-form-main {
    padding-top: 5vh;
}
.login-form-main h2{
    color: var(--primarycolor);
    font-size: 35px;
    font-family: var(--sfprobold);
    text-transform: uppercase;
    margin-bottom: 0;
}
.login-form-main p{
    color: var(--blackcolor);
    font-size: 20px;
    font-family: var(--sfpromedium);
}
.login-form-main  h5{
    color: var(--blackcolor);
    font-size: 25px;
    font-family: var(--sfpromedium);
}
.others-login{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding-left: 0;
}
.others-login li{
    margin: 0 5px;
}
.others-login li a img{
    width: 40px;
}
.create-account-area-mian .login-top-area{
    background-image: url('../images/login-bg-2.png');
}
.create-account-area-mian .login-form-main {
    padding-top: 4vh;
}
.create-account-area-mian .login-character{
    height: 40vh;
}
.create-account-area-mian .bar-slider::before{
    left: 40px;
}
.back-button{
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
    cursor: pointer;
}
.back-button img{
    width: 40px;
}
/* ---------- Login Screens End ------------ */








/* ---------- Header Start ------------ */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--whitecolor);
    border-radius: 50px;
    margin: 20px 20px 0;
    height: 60px;
    padding: 10px;
}
.langue-dropdown .dropdown-toggle::after{
    display: none;
}
.langue-dropdown .dropdown-toggle{
    display: flex;
    align-items: center;
    border: 0;
    background-color: transparent;
    padding: 0;
}
.langue-dropdown .dropdown-toggle.show{
    border: 0;
}
.langue-dropdown .dropdown-toggle:active{
    border: 0;
}
.langue-dropdown .lang-flag {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 20px;
}
.langue-dropdown .lang-flag img{
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
.langue-dropdown .dropdown-menu li a:hover{
    background-color: var(--primarycolor);
    color: var(--whitecolor);
}
.logo {
    max-width: 230px;
    width: 100%;
}
.logo img{
    width: 100%;
}
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header-right a{
    background-color: var(--whitecolor);
    box-shadow: -2px 3px 7px -2px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin-left: 10px;
    border-radius: 50%;
    color: var(--blackcolor);
    font-size: 20px;
}
.header-right a:hover{
    background-color: var(--primarycolor);
    color: var(--whitecolor);
}
.header-right a:first-child{
    margin-left: 0;
}
.header-title-main{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.header-title-main .header-back-button{
    background-color: transparent;
    border: 0;
}
.header-title-main .header-back-button img{
    max-width: 40px;
    width: 100%;
}
.header-title-main h1{
    color: var(--blackcolor);
    font-size: 25px;
    font-family: var(--sfpromedium);
    text-transform: uppercase;
    margin-bottom: 0;
    margin-left: 10px;
}
.right-dropdown{
    margin-left: 10px;
}
.right-dropdown .dropdown-toggle::after{
    display: none;
}
.right-dropdown ul li a {
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    justify-content: flex-start;
    border-bottom: solid 0px #ccc;
    font-size: 16px;
}
/* ---------- Header End ------------ */




/* ---------- Search Start ------------ */
.search-main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primarycolor);
    border-radius: 35px;
    padding: 10px 15px;
    margin: 35px 0;
}
.search-main .form-control{
    background-color: transparent;
    border: 0;
    height: 30px;
    color: var(--whitecolor);
}
.search-main .form-control::placeholder{
    color: var(--whitecolor);
    opacity: 0.7;
}
.search-main .search-icon{
    width: 30px;
    height: 30px;
    background-color: #fc2246;
    color: var(--whitecolor);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}
.search-filter-dropdown .dropdown-toggle{
    background-color: var(--whitecolor);
    border: 0;
    padding: 0;
    color: var(--blackcolor);
    border-radius: 50%;
    width: 30PX;
    height: 30PX;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-filter-dropdown .dropdown-toggle::after{
    display: none;
}
.search-filter-dropdown .dropdown-menu li a:hover{
    background-color: var(--primarycolor);
    color: var(--whitecolor);
}
/* ---------- Search Start ------------ */



/* ---------- Title Start ------------ */
.title-main{
    background-color: var(--whitecolor);
    position: relative;
    padding: 8px 0 8px;
    margin-top: 8px;
}
.title h1{
    color: var(--title-color);
    font-size: 35px;
    font-family: var(--sfproblackitalic);
    margin-bottom: 0;
    background-image: url('../images/title-object.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    display: inline-block;
    background-size: 65px;
    padding-bottom: 6px;
}
.title-design {
    position: absolute;
    top: -35%;
    background-color: var(--whitecolor);
    height: 60px;
    width: 200px;
}
.design-left{
    left: 0;
    border-top-right-radius: 40px;
}
.design-right{
    right: 0;
    border-top-left-radius: 40px;
}
/* ---------- Title End ------------ */





/* ---------- Popular Start ------------ */
.popular-slider-main {
    margin: 18px 0px 18px 0;
}
.popular-main{
    position: relative;
    text-align: center;
}
.popular-icon-box{
    background-color: var(--primarycolor);
    height: 120px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -2px 3px 6px 2px rgba(210, 17, 49, 0.6);
    overflow: hidden;
}
.popular-icon-box img{
    height: 120px;
/*    width: auto !important;*/
    max-width: 100%;
}
.popular-main p{
    color: var(--blackcolor);
    font-size: 18px;
    font-family: var(--sfpromedium);
    margin-bottom: 0;
    margin-top: 5px;
}
/* ---------- Popular End ------------ */



/* ---------- Charging Games Start ------------ */
.charging-games-slider-main{
    margin: 50px 0;
}
.charging-games-main{
    position: relative;
    padding-bottom: 10px;
}
.charging-games-icon-box{
    box-shadow: -2px 3px 6px 2px rgba(210, 17, 49, 0.6);
    border-radius: 30px;
    overflow: hidden;
}
.charging-games-view-all{
    text-align: center;
    display: block;
    background-color: var(--whitecolor);
    font-family: var(--sfproblackitalic);
    font-size: 30px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 5px;
    box-shadow: 0px 5px 8px -5px rgb(0,0,0,0.2);
    margin-top: 15px;
}
/* ---------- Charging Games End ------------ */





/* ---------- Charging Cards Start ------------ */
.charging-cards-main-area {
    margin: 18px 0;
}
.charging-cards-main{
    position: relative;
    margin-bottom: 20px;
}
.charging-cards-icon-box{
    box-shadow: -2px 3px 6px 2px rgba(210, 17, 49, 0.6);
    border-radius: 30px;
    width: 100%; /* Adjusts to the container's width */
    aspect-ratio: 1 / 1; /* Change ratio as needed */
    overflow: hidden;
}
.charging-cards-icon-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* ---------- Charging Cards End ------------ */





/* ---------- Footer Start ------------ */
/*footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url('../images/footer-bg.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% 100%;
    padding: 10px 15px;
    z-index: 2;
}*/
footer {
    background-image: none;
    background-color: #fff;
    opacity: 0.8;
    padding: 0px 15px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}
footer ul {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
footer ul li{
    margin: 18px 30px;
}
footer ul li a{
    font-size: 25px;
    color: var(--blackcolor);
}
footer ul li a:hover{
    color: var(--primarycolor);
}
footer ul li a.active{
    color: var(--primarycolor);
}
.home-area-mian{
    padding-bottom: 165px;
}
.home-area-mian .bar-slider{
    position: fixed;
    z-index: 2;
    bottom: 35px;
    max-width: 250px;
}
.home-area-mian .bar-slider::before{
    left: 19px;
}
/* ---------- Footer End ------------ */







/* ---------- Products Start ------------ */
.product-card-main-area {
    margin: 50px 0;
}
.product-card-main{
    position: relative;
    margin-bottom: 20px;
    text-align: center;
}
.product-card-icon-box{
    box-shadow: -2px 3px 6px -1px rgba(210, 17, 49, 0.4);
    border-radius: 35px;
    overflow: hidden;
}
.product-card-icon-box img{
    width: 100%;
}
.product-card-main p{
    color: var(--blackcolor);
    font-size: 18px;
    font-family: var(--sfpromedium);
    margin-bottom: 0;
    margin-top: 10px;
}
.product-filter {
    margin-bottom: 25px;
}
.product-filter .dropdown-toggle{
    background-color: var(--primarycolor);
    color: var(--lightgraycolor);
    display: flex;
    align-items: center;
    border: 0;
    border-radius: 25px;
    padding: 7px 7px;
}
.product-filter .dropdown-toggle::after{
    display: none;
}
.product-filter .dropdown-toggle p{
    margin-bottom: 0;
    font-size: 15px;
    font-family: var(--sfpromedium);
    margin: 0 10px;
}
.product-filter .dropdown-toggle svg{
    color: var(--whitecolor);
}
.product-filter .dropdown-toggle .filter-icon{
    background-color: var(--whitecolor);
    color: var(--blackcolor);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-filter .dropdown-toggle .filter-icon svg{
    color: var(--blackcolor);
}
/* ---------- Products End ------------ */










/* ---------- Products Details Popup Start ------------ */
.product-detail-main-area .btn-close{
    position: absolute;
    right: 9px;
    top: 7px;
    background-color: var(--whitecolor);
    opacity: 1;
    border-radius: 50%;
    padding: 8px;
    font-size: 12px;
}
.product-image-main {
    position: relative;
    overflow: hidden;
    border-radius: 50% / 0 0 100px 100px;
}
.product-image {
    height: 250px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.product-content-area-main{
    padding: 6px 15px 10px 15px;
}
.how-to-use-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.how-to-use-product a{
    display: inline-block;
    background-color: var(--primarycolor);
    border: solid 1px var(--blackcolor);
    color: var(--whitecolor);
    font-family: var(--sfpromedium);
    font-size: 16px;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 25px;
}
.product-content-area-main h4{
    font-family: var(--sfproheavyitalic);
    font-size: 20px;
    color: var(--blackcolor);
    margin-top: 20px;
}
.coupon-category ul{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0;
    flex-wrap: wrap;
    margin-bottom: 0;
    padding-right: 0;
}
.coupon-category ul li{
    width: 23%;
    margin-right: 2%;
    border: solid 1px var(--blackcolor);
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    margin-bottom: 10px;
}
.coupon-category ul li:last-child{
    margin-right: 0;
}
.coupon-category ul li:nth-child(3n + 4){
    margin-right: 0;
}
.coupon-category ul li p{
    margin: 0;
    font-family: var(--sfpromedium);
    color: var(--darkgraycolor);
    font-size: 16px;
}
.coupon-category ul li.active p{
    color: var(--primarycolor);
}
.quantity-box-main-area {
    margin: 10px 0 20px;
}
.quantity-box-main{
    display: inline-flex;
    align-items: center;
    background-color: var(--primarycolor);
    border-radius: 30px;
    padding: 7px 15px 7px 7px;
}
.quantity-box-icon{
    margin-right: 9px;
}
.quantity-box-icon img {
    width: 35px;
}
.quantity-box {
    display: flex;
    align-items: center;
}
.quantity-box input{
    appearance: textfield;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    background-color: transparent;
    border: 0;
    color: var(--whitecolor);
    font-family: var(--sfpromedium);
    font-size: 16px;
    text-align: center;
    width: 30px;
}
.quantity-box button{
    background-color: transparent;
    border: solid 1px var(--whitecolor);
    color: var(--whitecolor);
    line-height: 10px;
    padding: 4px 5px;
    border-radius: 3px;
}
.total-amount{
    display: inline-flex;
    align-items: center;
    padding: 10px 25px 10px 7px;
    background-color: var(--secondarycolor);
    border-radius: 15px;
}
.total-amount img{
    width: 35px;
}
.total-amount p{
    color: var(--whitecolor);
    font-size: 18px;
    font-family: var(--sfproheavyitalic);
    margin-bottom: 0;
    margin-left: 10px;
}
.product-details{
    margin: 12px 0 11px;
}
.product-details ul{
    list-style: none;
    display: block;
    margin: 0;
    padding: 0;
}
.product-details ul li{
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}
.product-details ul li:last-child{
    margin-bottom: 0;
}
.product-details ul li img {
    width: 20px;
}
.product-details ul li p{
    margin-bottom: 0;
    margin-left: 10px;
}
.make-payment-button {
    margin-top: 25px;
}
.payment-button{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: 0;
    background-color: var(--secondarycolor);
    padding: 0px;
    border-radius: 15px;
}
.payment-text{
    display: flex;
    align-items: center;
    padding: 10px;
    width: 100%;
    justify-content: center;
    position: relative;
}
.payment-text img{
    width: 38px;
    position: absolute;
    left: 11px;
}
.payment-text p{
    margin-bottom: 0;
    font-family: var(--sfproregular);
    font-size: 17px;
    text-transform: uppercase;
    color: var(--whitecolor);
}
.payment-button .payment-price{
    background-color: var(--primarycolor);
    height: 100%;
    padding: 17px;
    border-radius: 15px;
    color: var(--whitecolor);
    font-family: var(--sfproheavyitalic);
    font-size: 16px;
}
/* ---------- Products Details Popup End ------------ */





/* ---------- Payment Modal Start ------------ */
.modal-header{
    padding: 10px 15px;
}
.modal-title{
    text-transform: uppercase;
    font-family: var(--sfproheavyitalic);
    color: var(--primarycolor);
    font-size: 20px;
}
.payment-modal-body h3{
    color: var(--blackcolor);
    font-size: 18px;
    font-family: var(--sfproheavyitalic);
}
.payment-modal-body .accordion-item{
    border: 0;
}
.payment-modal-body .accordion-button:not(.collapsed) {
    color: var(--blackcolor);
    background-color: #eaeaea;
}
.payment-modal-body .accordion-button{
    border-bottom: solid 1px var(--blackcolor);
    background-color: #eaeaea;
}
.payment-modal-body .accordion-button:focus {
    box-shadow: none;
}
.payment-modal-body .accordion-body {
    background-color: #eaeaea;
}
.payment-modal-body .accordion-collapse.collapse.show{
    margin-bottom: 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.payment-modal-body h2{
    color: var(--primarycolor);
    font-size: 16px;
    font-family: var(--sfproheavyitalic);
    margin: 0;
}
.payment-modal-body a{
    color: var(--blackcolor);
    font-size: 14px;
    text-decoration: none;
    display: block;
    margin: 10px 0;
}
.accordion-button{
    justify-content: space-between;
}
.accordion-button::after{
    position: absolute;
    right:12px;
}
.easypaisa-fee {
    margin-right: 22px;
    color: #d21131;
    display: block;
}
/* ---------- Payment Modal End ------------ */








/* ---------- Thank You Modal Start ------------ */
.thankyou-modal-content{
    background-image: url('../images/paid-popup-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.paid-icon {
    width: 150px;
    margin: 0 auto;
    margin-top: -80px;
}
.paid-icon img{
    width: 100%;
}
.thankyou-modal-body .btn-close {
    position: absolute;
    right: 11px;
    top: 10px;
    color: #000;
    opacity: 1;
    font-size: 12px;
}
.thankyou-message{
    text-align: center;
    margin: 12px;
}
.thankyou-message h2{
    font-family: var(--sfprobold);
    font-size: 24px;
    color: var(--primarycolor);
    text-transform: uppercase;
    margin-bottom: 0;
}
.thankyou-message p{
    font-size: 16px;
    color: var(--blackcolor);
    font-family: var(--sfpromedium);
}
.thankyou-message-image{
    max-width: 124px;
    width: 100%;
    margin: 0 auto;
}
#thankYouModal .modal-dialog.modal-dialog-centered {
    margin-top: 60px;
}
.redemption-codes{
    text-align: center;
    padding: 12px;
    margin-top: 18px;
    border-top: dashed 1.5px;
    border-bottom: dashed 1.5px;
    margin-bottom: 18px;
}
.redemption-codes h4{
    font-size: 16px;
    color: var(--blackcolor);
    font-family: var(--sfpromedium);
    margin-bottom: 10px;
}
.copy-codes {
    width: 20px;
    cursor: pointer;
    margin-left: 5px;
}
.redemption-codes p{
    margin-bottom: 0;
    color: var(--primarycolor);
    font-size: 14px;
    font-family: var(--sfpromedium);
    letter-spacing: 2px;
}
.transaction-details h4{
    font-size: 16px;
    color: var(--blackcolor);
    font-family: var(--sfpromedium);
    margin-bottom: 2px;
}
.transaction-details p{
    font-size: 12px;
    color: var(--blackcolor);
    font-family: var(--sfpromedium);
    margin-bottom: 15px;
}
/* ---------- Thank You Modal End ------------ */







/* ---------- Payment Failed Modal Start ------------ */
.failedpayment-modal-body .paid-icon {
    width: 110px;
    margin: 0 auto;
    margin-top: -70px;
}
.failedpayment-modal-body  .btn-close {
    position: absolute;
    right: 8px;
    top: 10px;
    opacity: 1;
}
.failedpayment-modal-body .accordion-item{
    background-color: var(--primarycolor);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}
.failedpayment-modal-body .accordion-item .accordion-button{
    background-color: var(--primarycolor);
    color: var(--whitecolor);
    font-size: 20px;
    font-family: var(--sfprobold);
}
.failedpayment-modal-body .accordion-item .accordion-button::after{
    color: var(--whitecolor);
}
.failedpayment-modal-body .accordion-item .accordion-button:focus{
    box-shadow: none;
}
.failedpayment-modal-body .accordion-item .accordion-body{
    color: var(--whitecolor);
}
/* ---------- Payment Failed Modal End ------------ */







/* ---------- Product Application Page Start ------------ */
.application-box-main{
    background-color: var(--whitecolor);
    padding: 0px;
    border-radius: 10px;
    display: flex;
    align-content: center;
    position: relative;
    margin-bottom: 20px;
}
.application-image-box {
    width: 136px;
    height: 136px;
    border-radius: 10px;
    overflow: hidden;
}
.application-image-box img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    height: 100%;
}
.application-box-content{
    padding: 10px;
    position: relative;
    width: calc(100% - 110px);
}
.application-box-content h4{
    font-family: var(--sfprobold);
    font-size: 16px;
    text-transform: uppercase;
    color: var(--primarycolor);
    text-align: right;
    margin-bottom: 2px;
}
.application-box-content h2{
    font-family: var(--sfprobold);
    font-size: 18px;
    text-transform: uppercase;
    color: var(--primarycolor);
    margin-bottom: 0px;
}
.application-box-content h5{
    font-family: var(--sfprobold);
    font-size: 13px;
    text-transform: uppercase;
    color: var(--blackcolor);
    margin: 2px 0;
    background-color: #eaeaea;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 20px;
}
.application-box-content p{
    font-family: var(--sfproregular);
    font-size: 13px;
    color: #777777;
    margin-bottom: 0px;
}
/* ---------- Product Application Page End ------------ */

.verify_notification_msg {
    text-align: center;
    font-size: 20px;
    color: #d21131;
    margin: 0 0 8px 0;
}

.phone_number_error, .email_error {
    color: #d21131;
    font-weight: 600;
    margin-bottom: 20px;
}

.quantity_error_note {
    color: #d21131;
    padding: 6px 0 0px 8px;
    font-weight: 600;
    font-size: 13px;
}

.resent_message {
    color: #d21131 !important;
    text-align: center;
    font-size: 12px !important;
    margin: 0 0 0 0;
}

.resend_btn {
    background: #d21131 !important;
    width: 162px;
    color: #fff !important;
    padding: 5px 1px;
    cursor: pointer;
    border-radius: 8px;
    margin: 0 auto;
    font-size: 17px !important;
}

.resend_btn:hover {
/*    color: #d21131 !important;*/
}

.hide {
    display: none !important;
}

#loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #d21131 !important;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.resent_timer {
    font-size: 12px !important;
    text-align: center;
    color: #d21131 !important;
    margin: 0 auto;
}

input[name="payment_buttons"] {
    accent-color: #000;
    height: 17px;
    width: 17px;
}

.owl-carousel {
    width: 67%;
    margin: 0 auto;
}

/* Mobile Styles (791px and below) */
@media (max-width: 791px) {
    footer {
        padding: 10px 15px;
        background-image: url('../images/footer-bg.png');
        background-repeat: no-repeat;
        background-position: top center;
        background-size: 100% 100%;
        background-color: transparent;
    }

    footer ul li{
        margin: 30px;
    }

    .owl-carousel {
        width: 100%;
        margin: 0 auto;
    }
}