/*
--------------------------------------------------------------------------------------------------------
* 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=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root{
    --primary-color: #FF7800;
    --secondary-color: #42CFFF;
    
    --primary-color-80: rgba(255, 119, 0, 0.80);
    --secondary-color-10: rgba(66, 208, 255, 0.10);

    --white-color: #ffffff;
    --black-color: #000000;

    --text-color: #42505C;

    --border-radius:24px;

    --border-color:#D1D1D1;

    --box-shadow: 0 4px 40px 0px rgba(0, 0, 0, 0.08);

    --bg-1: #F9F9FA;
    --bg-2: #C5C5C5; 
}

/* :: 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, html {
    height: 100%;
}
body {
    font-family: "Inter", sans-serif;
    background-color: var(--white-color);
    color: var(--black-color)
}

p { 
    color: var(--black-color)
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
a {
    margin-top: 0;
    margin-bottom: 0; 
}

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 {
    text-decoration: none;
    outline: none;
    text-decoration: none;
    color: inherit;
}


ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    outline: none;
    border: 0; 
    background: transparent;
}

button:focus {
    outline: none;
    outline: 0;
}

iframe {
    width: 100%;
    border: 0px;
}


.owl-carousel .owl-item img { 
    width: auto;
}

/* :: Form */
textarea {
    resize: none;
}

/* select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
} */

input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white-color);
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: var(--white-color);
    text-shadow: none;
}

.form-check-input { 
    background-color: var(--border-color); 
    border: 1px solid var(--border-color); 
}
.form-check-input:checked {
    background-color: #FFB82F;
    border-color: #FFB82F;
}
.form-check-input:focus {
    border-color: #FFB82F; 
    box-shadow: 0 0 0 .25rem rgb(255 184 47 / 32%);
}
.errors-text {
    position: absolute;
    right: 0;
    bottom: -20px;
    font-size: 12px;
    color: red;
}
.input-item{
    position: relative;
    margin-bottom: 25px;
}
.form-control.input-error {
    border-color: red;
}

select.form-control {
    appearance: auto;
}

/* :: headings */

.table-responsive{
    border-radius: 15px;
}
table.table.defaul-table {
    background: var(--bg-1); 
    margin-bottom: 0;
}
.table thead tr th {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 500;
}
.table {
    font-size: 15px;
    color: var(--text-color);
}
.table>:not(:first-child) {
    border-top: none;
}
.table>:not(caption)>*>* {
    padding: 15px; 
    border-bottom-width: 0; 
}
.table>thead {
    vertical-align: bottom;
    border-bottom: 1px solid var(--border-color);
}

/* :: Font h1 */
h1 {
    font-size: 62px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h1 {
        font-size: 52px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h1 {
        font-size: 42px;
    }
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 42px;
    }
}

/* :: Font h2 */
h2 {
    font-size: 52px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h2 {
        font-size: 42px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h2 {
        font-size: 32px;
    }
}

@media only screen and (max-width: 767px) {
    h2 {
        font-size: 32px;
    }
}

/* :: Font h3 */
h3 {
    font-size: 32px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h3 {
        font-size: 28px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h3 {
        font-size: 26;
    }
}

@media only screen and (max-width: 767px) {
    h3 {
        font-size: 26;
    }
}

/* :: 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;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
}
.owl-dots button {
    height: 12px;
    width: 12px;
    background: var(--bg-1) !important;
    display: inline-block;
    margin: 0 4px;
    border-radius: 15px;
}
.owl-dots button.active{
    background: var(--secondary-color) !important;
}


/* :: button style */
.button-style { 
    padding: 12px 30px;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color:var(--white-color);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
} 

.button-style:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color:var(--white-color); 
}

.button-style:hover:before {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
}

.button-style-secondary{
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
}

.button-style-border { 
    padding: 12px 30px;
    border-radius: 8px;
    border: 1px solid var(--black-color); 
    color:var(--text-color);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
    z-index: 5;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
} 

.button-style-border:hover {
    background: var(--black-color);
    border-color: var(--black-color);
    color:var(--white-color); 
}

.button-style-border:hover:before {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
} 
 
/* :: helper */
.text-gray {
    color: var(--black-color) !important;
}

.text-white {
    color: var(--white-color) !important;
}

.text-black {
    color: var(--black-color) !important;
}

.text-color,
.text-primary {
    color: var(--primary-color) !important;
}
.text-green{
    color: green;
}
.text-red{
    color: red;
}

.bg-white {
    background-color: var(--white-color) !important;
} 

.bg-1{
    background-color: var(--bg-1) !important;
    
}
 
.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 {
    border-color: var(--border-color);
    border-radius: 0;
    height: 48px;
    background: transparent !important;
}

.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%;
    line-height: 28px;
    padding: 10px 25px;
    border-radius: 0px;
    background: transparent;
    border: 1px solid var(--border-color);
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 15px 25px 25px;
    color: var(--black-color);
    height: 185px;
    background: transparent;
    color: var(--white-color);
    resize: none;
    border-radius: 0px;
    border: 1px solid var(--border-color);
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

label.error {
    display: block;
    padding: 5px 0px 0px;
    margin: 0px;
    text-transform: capitalize;
    font-size: 14px;
    color: red;
    font-weight: 500;
}

input.error,
select.error,
textarea.error {
    border-color: red !important;
} 

.input-item label {
    font-size: 13px;
    text-transform: capitalize;
}

/*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: 34px; 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 #FFB82F; border-radius: 100%; background: #fff; }
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {content: ''; width: 12px; height: 12px; background: #FFB82F; 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); }


.dropdown-menu.show {
    display: block;
    background: var(--white-color);
    box-shadow: 0px 0px 22px -4px rgba(11, 26, 56, .1);
    border: none;
}
/*-------------------------------------------------
:: scrollbar CSS 
-------------------------------------------------*/

 

/*================================================
:: back to top CSS
==================================================*/
.scrollToTop {
    position: fixed;
    bottom: 0;
    right: 30px;
    padding: 10px 6px;
    background: var(--primary-color);
    font-weight: 600;
    color: var(--white-color);
    font-size: 12px;
    text-align: center;
    border-radius: 25px;
    z-index: 99;
    cursor: pointer;
    transition: all 1s;
    transform: translateY(100%);
}
  .scrollToTop i {
    -webkit-animation: scroll-down 2s infinite;
    -moz-animation: scroll-down 2s infinite;
    -o-animation: scroll-down 2s infinite;
    animation: scroll-down 2s infinite;
    font-size: 15px;
    margin-bottom: 10px;
  }
  .scrollToTop span {
    display: block;
    color: var(--white-color);
  }
  
  .scrollToTop.active {
    bottom: 30px;
    transform: translateY(0%);
  } 
  
  .scrollToTop:hover, .scrollToTop:focus {
    color: var(--white-color);
  }

/*================================================
:: loader CSS
==================================================*/
.loader-box {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background: var(--primary-color);
    z-index: 99999;
} 

.loader-round {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 7px solid var(--white-color);
    border-top: 7px solid var(--black-color);
    animation: rotate 2s infinite ease;
} 

/*================================================
:: animations
==================================================*/
@keyframes bounce {
    0%,
    50%,
    100% {
        transform: scaleY(1);
        border-radius: 50%;
    }
    25%,
    75% {
        transform: translateY(-100px) rotateY(360deg) scaleX(0.66) scaleY(1.25);
        border-radius: 50%;
    }
    15%,
    40%,
    65%,
    90% {
        transform: translateY(10px) scaleX(1.25) scaleY(0.5);
        border-bottom-left-radius: 25%;
        border-bottom-right-radius: 25%;
    }
}
@keyframes scroll-down {
    0% {
      transform: translateY(0);
    }
  
    50% {
      transform: translateY(10px);
    }
  
    100% {
      transform: translateY(0px);
    }
}
@keyframes rotate{
    0%{transform: none;}
    100%{transform: rotate(1turn)};     
}

.main-area {
    padding: 75px 15px 15px 15px;
}
 
.page-title {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}
.page-title h2 {
    font-size: 24px;
    color: var(--text-color);
}


/* -------------------------------------------
            statistics  
------------------------------------------- */
.statistics-items {
    margin: 10px 10px 30px 10px;
    padding: 42px 25px;
    border-radius: 24px;
    position: relative;
    box-shadow: var(--box-shadow);
    min-height: 207px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.statistics-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.statistics-top h2 {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-color);
} 
 
.statistics-top{
    margin-bottom: 42px;
}
.statistics-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.statistics-bottom h2{
    font-size: 32px;
    font-weight: 600;
    color: var(--text-color);
}
.statistics-bottom p{
    font-size: 24px;
    color: var(--text-color);
}
 

.statistics-tier-position {
    background: linear-gradient(180deg,rgba(65, 234, 255, 1) 0%, rgba(66, 115, 255, 1) 100%);
}
.statistics-tier-position .statistics-top {
    margin-bottom: 15px;
}
.statistics-tier-position  .statistics-bottom h2{
    font-size: 42px;
    color: var(--white-color);
}
 
.statistics-tier-position .statistics-bottom {
    margin-bottom: 26px;
}
.statistics-tier-position .statistics-bottom img {
    position: absolute;
    width: 86%;
    bottom: 29px;
}


.statistics-wallet {
    background: linear-gradient(180deg,rgba(65, 234, 255, 1) 0%, rgba(66, 115, 255, 1) 100%);
}
.statistics-wallet .statistics-top {
    margin-bottom: 42px;
}
.statistics-wallet .statistics-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.statistics-wallet .statistics-bottom h2 {
    font-size: 42px;
    color: var(--white-color);
}
.statistics-bottom a.addpoint {
    background: rgb(255 255 255 / 10%);
    color: var(--white-color);
    padding: 12px 25px;
    display: block;
    border-radius: 30px;
}

/* -------------------------------------------
            banner-area  
------------------------------------------- */
.banner-text {
    max-width: 50%;
    padding: 65px;
}
.banner-text h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white-color);
}
.banner-text p {
    color: var(--white-color);
    font-size: 14px;
}

.banner-item {
    background: linear-gradient(180deg, rgba(65, 234, 255, 1) 0%, rgba(66, 115, 255, 1) 100%);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    
}
.banner-image {
    position: absolute;
    right: 3%;
    bottom: -66px;
}

/* -------------------------------------------
            rewards-area  
------------------------------------------- */
.owl-carousel .rewards-item {
    margin: 10px 0 20px 0;
}
.rewards-item {
    box-shadow: var(--box-shadow);
    border-radius: 25px;
    overflow: hidden;
    position: relative;        
}
.rewards-item .rewards-image {
    position: relative;
}
.rewards-item .rewards-image img{
    width: 100%;
}
.rewards-item .overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}
.rewards-item .overlay a{
    color: var(--white-color);
    font-size: 14px;
    text-decoration: underline;
}
.rewards-content {
    padding: 15px;
}
.rewards-content h4 {
    color: var(--text-color);
    font-size: 18px;
    margin-bottom: 10px;
}
.rewards-content h4 a:hover {
    color: var(--primary-color);
}
.rewards-content p.desc {
    color: var(--text-color);
    font-size: 15px;
    margin-bottom: 15px;
}
.rewards-content p.rewards-point {
    color: var(--text-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}
.rewards-content p.rewards-point  span{
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
}
.rewards-content .button-disabled{
    background: var(--bg-2);
    border-color: var(--bg-2);
}
.rewards-content .button-style{
    padding-left: 5px;
    padding-right: 5px;
}

.redeemed .redeemed-tag {
    background: var(--primary-color-80);
    padding: 5px 15px;
    display: inline-block;
    border-radius: 15px;
    color: var(--white-color);
    font-size: 14px;
    position: absolute;
    left: 15px;
    top: 15px;
}
.redeemed .redeemed-edit-tag { 
    padding: 5px 15px;
    display: inline-block;
    border-radius: 15px;
    color: var(--white-color);
    font-size: 14px;
    position: absolute;
    left: 15px;
    top: 15px;
}
.redeemed .button-style{
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.modal-redeem-content {
    padding: 35px;
}
.modal-redeem-content .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
}
.modal-redeem-button {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.modal-redeem-content h3 {
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--text-color);
}
.modal.show .modal-dialog { 
    max-width: 740px;
    margin: 0 auto;
}
.modal-content { 
    border: none;
    border-radius: 28px;
    outline: 0;
}

.coupon-code span {
    display: block;
    text-align: center;
    margin-bottom: 30px;
    font-size: 20px;
    color: var(--text-color);
}
.coupon-code h2 {
    background: linear-gradient(180deg, rgba(255, 178, 81, 1) 0%, rgba(255, 120, 0, 1) 100%);
    padding: 15px 30px;
    display: inline-block;
    text-align: center;
    margin: auto;
    position: relative;
    left: 0;
    right: 0;
    border-radius: 30px 30px 0 0;
    font-size: 42px;
    color: var(--white-color);
}

.coupon-code h3 {
    background: var(--secondary-color-10);
    padding: 15px;
    border: 1px dashed var(--secondary-color);
    text-align: center;
    margin-bottom: 20px;
}
.coupon-code p.desc {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color);
}

.how-claim h5 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 15px;
}
.how-claim h5 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.how-claim ul {
    padding-left: 16px;
    margin-bottom: 25px;
}
.how-claim ul li {
    list-style: auto;
    color: var(--text-color);
    font-size: 14px;
}
.how-claim ul li p {
    font-size: 14px;
    color: var(--text-color);
}
.how-claim p.desc {
    font-size: 14px;
    color: var(--text-color);
    text-align: center;
} 

.viewdetails-content h5{
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 10px;
}
.viewdetails-content p{
     font-size: 14px;
    color: var(--text-color);
}

.rewards-filters {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.rewards-search {
    position: relative;
}
.rewards-search input {
    background: rgb(0 0 0 / 4%);
    border: none;
    height: 38px;
    padding: 5px 5px 5px 35px;
    border-radius: 10px;
    font-size: 14px;
} 
.rewards-search svg {
    position: absolute;
    left: 10px;
    top: 13px;
}

.rewards-filters .dropdown-toggle {
    background: rgb(0 0 0 / 4%);
    padding: 8px 40px 8px 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.rewards-filters .dropdown-toggle::after{
    display: none;
}
.rewards-filters-dropdown li span {
    margin-bottom: 10px;
    display: block;
}
.rewards-filters-dropdown li label {
    font-size: 15px;
    opacity: 0.6;
}
.rewards-filters .dropdown-toggle::before{
    content: "";
    position: absolute;
    right: 8px;
    top: 0;
    height: 100%;
    width: 24px;
    background: url(../../assets/images/icon/arrow-up.png) no-repeat;
    background-position: center;
    transform: rotate(180deg);
}
.dropdown-toggle.show::before{
    transform: rotate(0);
}

.datemodal .modal-dialog {
    max-width: max-content !important;
}
.datemodal .modal-dialog .modal-content {
    padding: 15px;
    border-radius: 5px;
}
.date-apply {
    margin-top: 20px;
}
.datemodal .flatpickr-calendar {
    box-shadow: none;
}
.flatpickr-months .flatpickr-prev-month, 
.flatpickr-months .flatpickr-next-month { 
    padding: 5px; 
}
.date, .date-range{
    cursor: pointer;
}


.contact-item {
    box-shadow: 0 4px 36px 0px rgb(0 0 0 / 10%);
    padding: 25px;
    border-radius: 10px;
}
.contact-icon {
    color: var(--primary-color);
}
.contact-title {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
}
.contact-content .desc{
    font-size: 14px;
    color: var(--text-color);
}
.order-content-details{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 1.5rem;    
}
.order-content-details-items p,
.order-content .desc{
    color: var(--text-color);
}
.contact-image {
    margin-bottom: -15px;
}

.accordion-item {
    background-color: var(--white-color);
    border: none;
    box-shadow: 0 4px 36px 0px rgb(0 0 0 / 10%);
    border-radius: 10px !important;
    overflow: hidden;
    margin-bottom: 15px;
}
.accordion-button{
    font-weight: 600;
    color:var(--text-color);
}
.accordion-button:not(.collapsed) {
    color:var(--text-color);
    background-color: transparent;
    box-shadow: none;
    padding-bottom: 0;    
}
.accordion-content p {
    font-size: 14px;
    color: var(--text-color);
}


.history-item {
    box-shadow: var(--box-shadow);
    padding: 25px;
    border-radius: 25px;
}
.history-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.history-top-content h3 {
    font-weight: bold;
    color: var(--text-color);
}
.history-top-content p,
.history-bottom p{
    color: var(--text-color);
}

.children-item{
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
.children-item .input-item {
    width: 48%;
    margin-bottom: 0;
}
.input-check{
        height: 48px;
    align-items: center;
}

.addchildren {
    border: 1px solid var(--border-color);
    height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    border-radius: 10px;
}
.addchildren:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.profile-area {
    padding-bottom: 240px;
}
.profile-bg-image {
    position: absolute;
    right: 0;
    bottom: 0;
}
.profile-right-image {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

span.info {
    position: absolute;
    right: 0;
}


/* ------------------------------------------------------
                    login 
------------------------------------------------------ */
.login-area { 
    display: flex;
    height: 100%;
}
.login-left {
    box-shadow: var(--box-shadow);
    height: 100%;
    width: 30%;
    background: var(--white-color);
    padding: 100px 50px 30px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 80px;
    overflow: auto;
}
.login-left-bottom p{
    color: var(--text-color);
    margin-bottom: 15px;
    opacity: 0.5;
}
.login-left-bottom a,
.forgot-password{
    color: var(--secondary-color);
    font-size: 14px;
}

.login-title h1 { 
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}
.login-title p {  
    color: var(--text-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed var(--border-color);
}
.login-line {
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--border-color);
}

/* Hide scrollbar for Chrome, Safari and Opera */
.login-left::-webkit-scrollbar,
.register-left::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.login-left,
.register-left {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.login-btns {
    text-align: end;
}

.login-right {
    position: relative;
    height: 100%;
    width: 70%;
}
.login-image {
    position: absolute;
    bottom: 0;
    right: 0;
}

.otp-count{
    color: var(--text-color);
    font-size: 14px;
}
.otp-count span{
    color: var(--secondary-color);
    font-weight: 600;
}
.otp-number {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.otp-number input {
    width: 100%;
    border: none;
    background: transparent;
    border-bottom: 2px solid var(--border-color);
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.login-logos {
    text-align: center;
    max-width: 120px;
    margin: 20px auto 20px auto;
    display: none;
}
.login-form label.form-check-label {
    font-size: 14px;
    color: var(--text-color);
}
.login-back{
    margin-bottom: 25px;
    display: inline-block;
    color: var(--secondary-color);
}

/* ----------------------------------------------------
                    register-area 
---------------------------------------------------- */
.register-area { 
    display: flex;
    height: 100%;
}
.register-left {
    box-shadow: var(--box-shadow);
    height: 100%;
    width: 60%;
    background: var(--white-color);
    padding: 30px 80px 30px 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 80px;
    overflow: auto;
        z-index: 2;
}
.register-right {
    position: relative;
    height: 100%;
    width: 40%;
    overflow: hidden;
}
.register-member { 
    margin-bottom: 40px;
}
.register-member a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    color: var(--secondary-color);
    font-size: 14px;
}
.register-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
}
.register-title h1 {
    width: 290px;
    font-weight: 600;
    color: var(--text-color);
}
.register-title p {
    width: calc(100% - 290px);
    max-width: 350px;
    font-size: 15px;
    color: var(--text-color);
}
.register-title p a,
.register-form label.form-check-label a{ 
    color: var(--secondary-color);
}
.register-form label.form-check-label {
    color: var(--text-color);
    font-size: 14px;
} 
.register-image {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.register-logo{
    margin-top: -350px;
}
img.sky1 {
    position: absolute;
    width: 100%;
    max-width: 680px;
    left: -80px;
    z-index: 1;
    top: 50px;
}
img.sky2 {
    position: absolute;
    right: 0;
    z-index: 1;
    top: 390px;
}
img.location {
    position: absolute;
    top: 40%;
    right: 0;
    margin: auto;
}
.register-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    max-width: 520px;
}
.register-member-mobile{
    display: none;
}
.receive {
    color: var(--text-color);
    font-size: 14px;
}
.receive span{
    color: var(--secondary-color); 
}

.fd-user-box {
    display: flex;
    align-items: center;
    gap: 20px;
}
.fd-user-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}
.fd-user-content {
    position: relative;
    flex: 1;
}
.fd-user-content .user-edit {
    position: absolute;
    top: 0;
    right: 0;
}
.fd-user-content p {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0;
}

.fd-user-content h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}
.add-user-btn{
    text-align: end;
}

.modal-adduser-content {
    padding: 30px 30px;
}
h4.modal-title {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 30px;
}
.bulkUpload-dropdown .dropdown-toggle {
    border: 1px solid rgb(0 0 0 / 30%);
    border-radius: 10px;
    height: 50px;
    padding: 0 50px 0 15px;
    font-size: 15px;
}
.bulkUpload-dropdown .dropdown-toggle::after{
    display: none;
}
.bulkUpload-dropdown .dropdown-toggle svg {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}
textarea.form-control{
    height: 200px;
}
.points-upload-image {
    position: relative;
    right: 0;
    bottom: 0;
    text-align: end;
    margin-bottom: -20px;
}
.search-box{
    position: relative;
}
.search-box input[type="text"] {
    height: 55px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    padding: 0 15px 0 55px;
}
.search-box svg {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 22px;
    width: 22px;
}
.search-item {
    overflow: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.search-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
        flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
    gap: 20px;
}
.search-left{
    display: flex;
    align-items: center;
    gap: 20px;
}
.search-user-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}
.search-user-content {
    position: relative;
    flex: 1;
}
.search-user-content .user-edit {
    position: absolute;
    top: 0;
    right: 0;
}
.search-user-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}
.search-user-content p {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0;
}
.search-user-edit svg path { 
    fill: var(--text-color);
}

.search-results {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.search-results p{
    color: var(--text-color);
    font-size: 15px;
    opacity: 0.5;
}
.search-results a{
    color: var(--text-color);
    font-size: 15px; 
    text-decoration: underline;
}

.page-back a{
    color: var(--text-color);
    font-size: 15px;  
}

.search-list .view-reward{
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
} 

.search-right .button-style {
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-color);
    font-size: 14px;
}
.search-right .button-style:hover {    
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    color: var(--white-color);
}
.form-switch .form-check-input {
    height: 32px;
    width: 55px;
}
.form-switch .form-check-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.form-switch .form-check-input:focus {
    border-color:  var(--secondary-color);
    box-shadow: 0 0 0 .25rem var(--secondary-color-10);
}
#updatePoint .modal-dialog {
    max-width: 620px;
    margin: 0 auto;
}
.modal-updatePoint-content{
    padding: 40px;
    text-align: center;
}
.modal-updatePoint-content h4{
    font-size: 24px;
    color: var(--text-color);
    margin-top: 30px;
}
.bg-image{
    margin-bottom: -20px;
}

button.btn.dropdown-toggle {
    border-color: var(--border-color);
    border-radius: 0;
    height: 48px;
    background: transparent !important;
    line-height: 36px;
}

.points-upload-box .form-control[type=file] {
    line-height: 35px;
}

.alert-file {
    box-shadow: var(--box-shadow);
    position: fixed;
    right: 30px;
    top: 100px;
    max-width: 380px;
    padding: 24px;
    border-radius: 25px;
    color: var(--text-color);
}
.alert-file p{
    font-size: 14px;
    color: var(--text-color);
}
.alert-file button.btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 12px;
}
.alert-file span.info {
    display: inline-block;
    position: relative;
    margin-bottom: 5px;
}

#editpoints .modal-dialog {
    max-width: 620px; 
}