@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap");

* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0;
}
  
:root{
      --font-family: "Montserrat", sans-serif;
      --primary-color: #cf2466;
      --secondary-color: #FFF0F6;
      --money-color: #0094FF;
      --transition: .2s ease-in-out;
      --border-radius: 5px;
      --box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.12);
}
  
html,body{
    touch-action: none !important;
}

html {
    min-height: calc(100% + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
  
body {
    background-color: #FFF0F6;
    color: #333;
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--font-family);
    padding: 0;
    margin: 0;
}

a{
    color: inherit;
    text-decoration: none;
}

button, input{
    font-family: var(--font-family);
}

button{
    cursor: pointer;
}

input{
    padding: 0 8px;
}

input:focus{
    outline: none;
}

.flex{
    display: flex;
}

.swal-cancel--btn{
    background: #fff !important;
    color: #696969 !important;
}

.swal2-actions{
    padding: 0 16px !important;
}

.swal2-styled.swal2-confirm{
    font-size: 13px !important;
    width: 100% !important;
}

.swal2-styled.swal2-deny{
    font-size: 13px !important;
    width: 100% !important;
}

.swal2-styled.swal2-cancel{
    background: none !important;
    color: #696969 !important;
}

.swal2-title{
    font-size: 16px !important;
}

.swal2-html-container{
    font-size: 12px !important;
    color: #a2a2a2 !important;
}

.swal2-popup{
    width: 70% !important;
}

.swal2-container{
    backdrop-filter: blur(2px) !important;
    -webkit-backdrop-filter: blur(2px) !important;
}

.v-input, .v-select{
    width: 100%;
    height: 44px;
    background: #fff;
    padding: 0 16px;
    border: none;
    font-family: var(--font-family);
    border-radius: var(--border-radius);
}

.v-btn{
    width: fit-content;
    height: 40px;
    padding: 0 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: var(--font-family);
}


.v-radio{
    margin-bottom: 10px;
}

.v-radio--label{
    cursor: pointer;
}

.v-radio input[type=radio] {
    position: absolute;
    opacity: 0;
}

.v-radio input[type=radio] + .v-radio--label:before {
    content: "";
    background: #f4f4f4;
    border-radius: 100%;
    border: 1px solid #ddd;
    display: inline-block;
    width: 14px;
    height: 14px;
    position: relative;
    top: 2px;
    margin-right: 8px;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}

.v-radio input[type=radio]:checked + .v-radio--label:before {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    box-shadow: inset 0 0 0 3px #f4f4f4;
}

.v-radio input[type=radio]:focus + .v-radio--label:before {
    outline: none;
    border-color: var(--primary-color);
}

.v-radio input[type=radio]:disabled + .v-radio--label:before {
    box-shadow: inset 0 0 0 3px #f4f4f4;
    border-color: #ddd;
    background: #ddd;
}

.v-radio input[type=radio] + .v-radio--label:empty:before {
    margin-right: 0;
}

.modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 16px;
    z-index: -1;
    opacity: 0;
    display: flex;
    align-items: center;
}

.modal.active{
    opacity: 1;
    z-index: 3;
}

.modal-bg{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0, .5);
    backdrop-filter: blur(2px);
}

.modal-container{
    position: relative;
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    background: linear-gradient(to bottom, #fff0f6, white);
    padding: 16px;
    border-radius: 25px;
    z-index: 4;
    transition: .2s ease-in-out;
    top: 100%;
    max-height: 100%;
    overflow: auto;
}

.modal.active .modal-container{
    top: 0;
}

.side-modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
}

.side-modal.active{
    opacity: 1;
    z-index: 3;
}

.side-modal--container{
    position: relative;
    float: right;
    width: 320px;
    height: 100%;
    background: linear-gradient(to bottom, #fff0f6, white);
    padding: 16px;
    z-index: 4;
    transition: .2s ease-in-out;
    right: -100%;
}

.side-modal.active .side-modal--container{
    right: 0;
}

.login-wrapper{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 32px;
    display: flex;
    align-items: center;
}

.login-bg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/login-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* border-bottom-left-radius: 25%;
    border-bottom-right-radius: 25%; */
    z-index: 0;
}

.login-bg svg{
    position: absolute;
    bottom: -85px;
}

.login-box{
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 16px;
    border-radius: var(--border-radius);
    z-index: 1;
}

.company-logo{
    position: relative;
    width: 256px;
    margin: 0 auto;
    text-align: center;
}

.company-logo img{
    width: 100%;
}

.login-form{
    margin-top: 64px;
}

.login-header{
    font-size: 18px;
    font-weight: bold;
}

.login-item{
    margin-top: 16px;
}

.login-item span{
    font-weight: 600;
    font-size: 14px;
}

.input-prefix{
    position: relative;
    width: 100%;
    height: 44px;
    margin-top: 6px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.08);
}

.input-prefix span{
    position: absolute;
    font-size: 20px;
    top: 13px;
    left: 14px;
    color: var(--primary-color);
}

.input-prefix input{
    padding-left: 44px;
    border-radius: 5px;
}

.input-prefix input:focus{
    outline: none;
}

.login-footer{
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.login-btn{
    width: 65%;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
}

.register-btn{
    width: 35%;
    background: none;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    border-radius: 5px;
}

.login-forgot--password{
    margin-top: 24px;
    font-size: 13px;
    font-style: italic;
    color: #aaa;
    text-align: center;
    cursor: pointer;
}

.a2hs{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 56px;
    background: #fff;
    padding-left: 65px;
    font-weight: 600;
    display: flex;
    align-items: center;
    font-size: 14px;
    padding-top: 10px;
}

.a2hs img{
    position: absolute;
    top: 10px;
    left: 15px;
    width: 35px;
    border-radius: 5px;
}

.a2hs small{
    position: relative;
    top: 2px;
    color: #aaa;
    font-weight: normal;
}

.a2hs button{
    position: absolute;
    top: 8px;
    right: 50px;
    width: fit-content;
    height: 40px;
    padding: 0 12px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
}

.close-a2hs{
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
}

.close-a2hs i{
    color: #8d8d8d;
    font-size: 24px;
}

.input-signup{
    position: relative;
    width: 100%;
    height: 44px;
    margin-top: 6px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.08);
}

.input-signup span{
    position: absolute;
    font-size: 20px;
    top: 13px;
    left: 14px;
    color: var(--primary-color);
}

.input-signup input{
    padding: 16px;
    border-radius: 5px;
}

.input-signup input:focus{
    outline: none;
}

.login-item--flex{
    display: flex;
    gap: 24px;
}

.login-item--flex .v-radio{
    margin-top: 10px;
}

.cancel-register--btn{
    width: 50%;
    background: none;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    border-radius: 5px;
}

.submit-register--btn{
    width: 50%;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
}

.announcement-wrapper{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.announcement-container{
    position: relative;
    width: 100%;
    background: #fff;
    padding: 16px;
    border-radius: 25px;
}

.announcement-container img{
    width: 100%;
}

.announcement-container button{
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 24px;
    z-index: 1;
}

.navbar{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 54px;
    background: var(--secondary-color);
    z-index: 2;
}

.navbar-logo{
    height: 100%;
    cursor: pointer;
}

.navbar-logo img{
    padding: 14px;
    height: 100%;
}

.navbar-cart--btn{
    position: absolute;
    top: 0;
    right: 0;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

.total-cart{
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--primary-color);
    color: #fff;
    padding: 2px 4px;
    border-radius: 25px;
    font-size: 9px;
    font-weight: 500;
}

.sticky-menu{
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    height: 60px;
    background: #fff;
    display: flex;
    z-index: 2;
    box-shadow: 0px 4px 10px 3.25px rgba(0, 0, 0, 0.10);
}

.sticky-menu--item{
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

.sticky-menu--item{
    text-align: center;
}

.sticky-menu--item span{
    position: relative;
    top: 1px;
    font-size: 11px;
}

.sticky-menu--item.active span{
    color: var(--primary-color);
    font-weight: 600;
}

.wrapper{
    position: relative;
    max-width: 430px;
    margin: 0 auto;
    height: 100%;
    padding-bottom: 60px;
    overflow-y: auto;
    overflow-x: hidden;
    background: linear-gradient(to bottom, #fff0f6, white);
    background: #fff1f7;
}

@media(min-width: 550px){
    .wrapper{
        top: 50%;
        transform: translateY(-50%);
        height: 1078px;
    }
}

.noPadding{
    padding: 0 !important;
}

.banner-container{
    width: 100%;
    height: 200px;
    background: #fff;
}

.banner{
    width: 100%;
    height: 100%;
}

.swiper-button-next, .swiper-button-prev{
    color: var(--primary-color) !important;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
}

.segment{
    padding: 16px;
}

.segment-header{
    font-weight: bold;
    color: #696969;
}

.widget-flex{
    display: flex;
    gap: 16px;
}

.widget{
    margin-top: 16px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px -1.75px rgba(0, 0, 0, 0.10);
}

.widget.full{
    width: 100%;
    /* background: linear-gradient(270deg, #FFA8C9 0%, rgba(255, 250, 252, 0.86) 90%); */
    background: linear-gradient(295deg, #FFA8C9 0%, rgba(255, 250, 252, 0.86) 75%);
}

.widget.half{
    width: 50%;
}

.overview-widget{
    padding: 24px 16px;
}

.present-label{
    color: var(--primary-color);
    font-weight: 600;
}

.present-label small{
    color: #696969;
}

.present-amount{
    font-weight: bold;
    margin-top: 6px;
    color: var(--money-color);
}

.present-label.big{
    font-size: 18px;
}

.present-amount.big{
    font-size: 28px;
}

.present-label.small{
    font-size: 12px;
}

.present-amount.small{
    font-size: 16px;
}

.past-container{
    position: relative;
    margin-top: 16px;
}

.past-label{
    color: var(--primary-color);
    font-weight: 600;
}

.past-amount{
    font-weight: bold;
    margin-top: 6px;
}

.past-label.small{
    color: #a2a2a2;
    font-weight: 500;
}

.past-amount.small{
    color: #696969;
    font-weight: 600;
}

.past-label.xsmall{
    font-size: 11px;
    color: #a2a2a2;
    font-weight: 500;
}

.past-amount.xsmall{
    font-size: 12px;
    color: #696969;
    font-weight: 600;
    margin-top: 4px;
}

.trending{
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    padding: 4px 6px;
    font-weight: 500;
    font-size: 13px;
    border-radius: 5px;
}

.trending.xsmall{
    font-size: 11px;
    bottom: 0;
    padding: 3px 4px;
}

.trending.up{
    color: #167e16;
    background: #cff7d7;
    font-weight: bold;
}

.trending.neutral{
    color: #747474;
    background: #e8e8e8;
}

.trending.down{
    color: #ea3c52;
    background: #ffe8e8;
}

.trending i{
    margin-right: 2px;
}

.syscredit-widget{
    position: relative;
    background: #ffdce9;
    padding: 20px 16px;
    border-radius: 0;
    box-shadow: none;
    padding-left: 74px;
}

.syscredit-widget i{
    position: absolute;
    top: 22px;
    left: 16px;
    font-size: 44px;
    color: var(--primary-color);
}

.syscredit-label{
    font-size: 14px;
    font-weight: 500;
}

.syscredit-amount{
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.home-product{
    margin-top: 6px;
    padding-bottom: 16px;
}

.home-product--header{
    position: relative;
    padding: 16px;
    line-height: 1.5;
}

.home-product--header span{
    color: #696969;
    font-weight: bold;
}

.home-product--header small{
    color: var(--primary-color);
    font-weight: 500;
    font-size: 12px;
}

.home-product--list{
    padding: 0 16px;
    height: 175px;
}

.product-card--swiper{
    height: auto !important;
}

.product-card{
    width: 100%;
    text-align: left;
}

.product-img{
    width: 100%;
    height: 105px;
}

.product-img img{
    width: 100%;
}

.product-name{
    margin-top: 6px;
    font-size: 11px;
    letter-spacing: 0.2px;
    text-align: left;
    font-weight: normal;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 33.5px;
    font-weight: 500;
    word-break: break-word;
    text-transform: capitalize;
}

.product-price{
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #000;
}

.profile-header{
    position: relative;
    padding: 16px;
    height: 92px;
    padding-left: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-img{
    position: absolute;
    left: 16px;
    top: 16px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--primary-color), #ffa1c7);
    padding: 2px;
}

.profile-img img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #fff0f6;
}

.profile-name{
    position: relative;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.verified-label{
    margin-left: 6px;
    color: #cf2466;
    display: none;
}

.profile-rank{
    font-size: 12px;
    margin-top: 2px;
    font-weight: 500;
}

.profile-goal{
    position: relative; 
    padding: 16px;
    background: #ffd3e2;
    color: #df3670;
    margin-top: -16px;
    border-radius: 15px;
}

.profile-goal span{
    font-size: 13px;
    font-weight: 500;
}

.profile-goal--target{
    margin-left: 8px;
    padding: 4px 8px;
    font-size: 12px;
    background: #fff0f6;
    color: var(--money-color);
    font-weight: bold;
    border-radius: 25px;
}

#balancePercent{
    position: absolute; 
    right: 16px; 
    top: 20px;
}

.progress-bar{
    width: 100%;
    margin-top: 12px;
}
  
.progress-bar .progress-track {
    position: relative;
    width: 100%;
    height: 10px;
    background: #fff;
    border-radius: 15px;
}
  
.progress-bar .progress-fill {
    position: relative;
    background: #df3670;
    background: linear-gradient(to right, #df3670 65%, #fff);
    height: 10px;
    width: 50%;
    color: #fff;
    text-align: center;
    border-radius: 15px;
}

.progress-bar span{
    font-size: 12px;
    line-height: 10px;
    font-weight: bold;
    visibility: hidden;
}

.profile-wallet{
    position: relative;
    width: 100%;
    height: 170px;
    background: url('../img/wallet-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    box-shadow: 0px 4px 10px 5px rgba(0, 0, 0, 0.15);
    margin-top: -16px;
}

.wallet-header--wrapper{
    padding: 24px;
}

.wallet-header{
    position: relative;
    padding-left: 50px;
    color: #fff;
}

.wallet-header img{
    position: absolute;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
}

.wallet-balance--label{
    font-size: 11px;
    font-weight: 500;
}

.wallet-balance--amount{
    font-size: 20px;
    font-weight: bold;
}

.wallet-balance--amount small{
    font-size: 13px;
}

.wallet-balance--topup{
    position: absolute;
    right: 0;
    top: 0;
    width: fit-content;
    height: 100%;
    border: 1px solid #fff;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.wallet-footer{
    display: flex;
    padding: 8px 0;
    margin-top: 12px;
}

.wallet-footer--item{
    position: relative;
    width: 50%;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 24px;
    text-align: left;
}

.wallet-footer--item img{
    width: 20px;
    margin-bottom: 8px;
}

.wallet-footer--item span{
    font-size: 13px;
    color: #fff;
}

.wallet-footer--item i{
    position: absolute;
    bottom: 8px;
    right: 16px;
    font-size: 22px;
    color: #b84672;
}

.wallet-footer--item:last-of-type{
    border-left: 1px solid #fff0f6;
}

.widget-menu{
    width: 25%;
    text-align: center;
}

.widget-menu--img{
    width: 72px;
    margin: 0 auto;
    padding: 18px 16px;
    background: #fff;
    box-shadow: var(--box-shadow);
    text-align: center;
    border-radius: 15px;
    margin-bottom: 8px;
}

.widget-menu--img img{
    width: 30px;
}

.widget-menu span{
    font-size: 12px;
    font-weight: 500;
}

.profile-menu{
    padding: 16px;
}

.profile-menu--item{
    position: relative;
    padding: 20px 16px;
    font-size: 14px;
    border-top: 1px solid #ddd;
    padding-left: 44px;
}

.profile-menu a{
    text-decoration: none;
    color: #696969;
}

.profile-menu a:first-of-type .profile-menu--item{
    border: none;
}

.menu-icon{
    position: absolute;
    left: 8px;
    top: 17px;
    color: var(--primary-color);
}

.profile-menu--item i{
    position: absolute;
    font-size: 20px;
    top: 19px;
    right: 0;
    color: var(--primary-color);
}

.directreseller-widget{
    position: relative;
    padding: 16px;
    line-height: 2;
}

.directreseller-label{
    font-size: 12px;
    font-weight: 600;
}

.directreseller-label small{
    color: #696969;
    font-size: 11px;
    font-weight: normal;
}

.directreseller-amount{
    position: absolute;
    right: 16px;
    top: 24px;
    font-weight: bold;
    font-size: 16px;
    color: var(--money-color);
}

.directreseller-trending{
    position: relative;
    right: auto;
    bottom: -2px !important;
    left: 0;
    height: 18px !important;
    padding: 0 4px !important;
    font-size: 10px !important;
    margin-left: 8px;
}

.directreseller-label span{
    color: var(--primary-color);
    font-weight: 600;
}

.directreseller-flex{
    display: flex;
}

.upline-container{
    position: relative;
    background: #ffdce9;
    padding: 20px 16px;
    border-radius: 0;
    box-shadow: none;
    margin-top: 16px;
}

.upline-container .segment-header{
    font-size: 12px;
    font-weight: 500;
}

.upline-name{
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 8px;
}

.upline-flex{
    display: flex;
    gap: 32px;
    margin-top: 12px;
}

.upline-details{
    position: relative;
    font-size: 13px;
    padding-left: 18px;
    font-weight: 500;
    color: #696969;
}

.upline-details i{
    position: absolute;
    left: 0;
    top: 2px;
    color: #cf2466;
}

.performance-wrapper{
    background: #fff1f7;
}

.performance-header{
    position: sticky;
    top: 54px;
    z-index: 1;
    background: #fff1f7;
    margin: -16px;
    padding: 16px;
}

.performance-filter--container{
    position: relative;
    padding-right: 56px;
    margin-top: 16px;
    background: #fff1f7;
}

.performance-filter--container input{
    width: 100%;
    height: 44px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.performance-filter--container button{
    position: absolute;
    right: 0;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    border-radius: var(--border-radius);
}

.performance-filter--container button span{
    font-size: 24px;
}

.performance-list{
    margin-top: 16px;
}

.performance-list--item{
    position: relative;
    padding: 16px;
    background: #fff;
    box-shadow: 0px 4px 10px -1.75px rgba(0, 0, 0, 0.10);
    border-radius: var(--border-radius);
    margin-top: 16px;
}

.performance-list--item:first-of-type{
    margin-top: 0;
}

.performance-reseller--name{
    color: var(--primary-color);
    font-weight: bold;
    font-size: 12px;
}

.performance-reseller--sales{
    margin-top: 4px;
    font-size: 13px;
}

.reseller-sales--amt{
    color: var(--money-color);
    font-weight: bold;
}

.performance-reseller--upline{
    font-size: 12px;
    color: #696969;
    margin-top: 4px;
    font-weight: 500;
}

.performance-card--item{
    position: relative;
    color: #898989;
    margin-top: 12px;
    font-size: 12px;
    min-height: 15px;
    padding-left: 22px;
    width: 50%;
}

.performance-card--item.full{
    width: 100%;
}

.performance-card--item i{
    position: absolute;
    left: 0;
    top: 2px;
    margin-right: 6px;
}

.expand-performance--btn{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    font-size: 24px;
    color: #696969;
    display: none;
}

.performance-card--detail{
    display: flex;
    flex-wrap: wrap;
}

.close-performance--header{
    position: absolute;
    right: 16px;
    top: 16px;
    background: #aaa;
    color: #fff;
    border-radius: 25px;
    font-size: 12px;
    font-weight: normal;
    padding: 2px 6px;
    display: none;
}

.network-detail--header{
    position: relative;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: bold;
    padding-bottom: 8px;
    margin-right: -16px;
    border-bottom: 2px solid #ffdce9;
    margin-top: 24px;
}

.network-detail--header:not(:first-of-type){
    margin-top: 24px;
}

.network-detail--item{
    position: relative;
    font-size: 13px;
    margin-top: 12px;
    padding-left: 80px;
    display: flex;
    color: #696969;
    min-height: 16px;
}

.network-detail--item span{
    position: absolute;
    left: 0;
}

.network-detail--item div{
    margin-left: 12px;
    line-height: 1.5;
}

.network-detail--btn{
    display: flex;
    gap: 6px;
    position: absolute;
    right: 0;
}

.network-detail--btn button{
    position: relative;
    top: -2px;
    padding: 4px 6px;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 11px;
    background: var(--primary-color);
}

.close-network--detail{
    position: absolute;
    right: 12px;
    top: -4px;
    font-size: 24px;
    color: #898989;
}

.pagination{
    display: flex;
    justify-content: center;
    margin-top: 16px;
    color: var(--primary-color);
}

.pagination ul{
    list-style-type: none;
    display: flex;
    gap: 10px;
}

.pagination ul li{
    width: 36px;
    height: 36px;
    background: #ffdce9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
}

.pagination ul li input{
    width: 100%;
    height: 100%;
    border: none;
    background: #fff;
    border-radius: 5px;
    text-align: center;
}

.pagination ul li input:focus{
    outline: none;
}

.module-name{
    position: relative;
    top: 8px;
    width: fit-content;
    display: flex;
    align-items: center;
    padding: 12px 44px 12px 40px;
    background: var(--primary-color);
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.module-name i{
    position: absolute;
    top: 11px;
    left: 11px;
    font-size: 20px;
}

.leaderboard-segment{
    padding-bottom: 0;
}

.leaderboard-menu{
    position: sticky;
    top: 54px;
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: -16px;
    padding: 16px;
    background: #fff1f6;
    z-index: 1;
}

.leaderboard-tab{
    width: fit-content;
    padding: 10px 16px;
    background: none;
    font-size: 12px;
    border-radius: 25px;
    color: var(--primary-color);
    font-weight: 500;
}

.leaderboard-tab.selected{
    background: #ffd3e2;
    color: var(--primary-color);
}

.leaderboard-container{
    display: none;
}

.leaderboard-container.selected{
    display:block;
}

.leaderboard-flex{
    position: sticky;
    top: 105px;
    display: flex;
    align-items: flex-end;
    gap: 16px;
    margin: -16px;
    padding: 16px;
    padding-top: 24px;
    background: #fff1f6;
    z-index: 1;
}

.leaderboard-top{
    position: relative;
    text-align: center;
    padding: 32px 0;
    width: 33.33%;
}

.leaderboard-top.top-2, .leaderboard-top.top-3{
    bottom: -16px;
}

.leaderboard-top--img{
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: var(--primary-color);
    padding: 2px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3px;
}

.leaderboard-top.top-2 .leaderboard-top--img, .leaderboard-top.top-3 .leaderboard-top--img{
    width: 60px;
    height: 60px;
}

.leaderboard-top.top-1 .leaderboard-img{
    background-origin: content-box;
    width: 100%;
    height: 100%;
    margin: 0;
    background-size: cover;
}

.leaderboard-top.top-2 .leaderboard-img, .leaderboard-top.top-3 .leaderboard-img{
    background-origin: content-box;
    width: 100%;
    height: 100%;
    margin: 0;
    background-size: cover;
}

.leaderboard-top--name{
    margin-top: 16px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 500;
}

.leaderboard-top--amount{
    margin-top: 6px;
    font-size: 13px;
    font-weight: bold;
    color: var(--money-color);
}

.leaderboard-top--badge{
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 22px;
    background: #eee;
    color: #696969;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #fff2f8;
    font-size: 11px;
    font-weight: bold;
}

.leaderboard-top.top-1 .leaderboard-top--badge{
    background: linear-gradient(to right, #ffdf57, gold);
    color: #333;
}

.leaderboard-top.top-2 .leaderboard-top--badge{
    background: linear-gradient(to right, #cecece, silver);
    color: #333;
}

.leaderboard-top.top-3 .leaderboard-top--badge{
    background: linear-gradient(to right, #e89211, #d47514);
    color: #333;
}

.crown-img{
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px !important;
    border: none !important;
}

.leaderboard-list{
    
}

.leaderboard-list--item{
    position: relative;
    /* padding: 8px 16px; */
    /* background: #fff; */
    /* box-shadow: 0px 4px 10px -1.75px rgba(0, 0, 0, 0.10); */
    margin-top: 24px;
    border-radius: 50px;
    font-size: 13px;
    display: flex;
    align-items: center;
    padding-left: 44px;
    padding-right: 104px;
    line-height: 1.5;
}

.leaderboard-list--item:first-of-type{
    margin-top: 36px;
}

.leaderboard-list--item:last-of-type{
    margin-bottom: 24px;
}

.leaderboard-progress{
    position: absolute;
    left: 0;
    font-size: 16px;
    display: none;
}

.leaderboard-progress.up{
    color: #20b020;
}

.leaderboard-progress.neutral{
    color: #aaa;
}

.leaderboard-progress.down{
    color: #d43838;
}

.leaderboard-number{
    position: absolute;
    left: 0px;
    width: 36px;
    text-align: center;
}

.leaderboard-img{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-right: 16px;
    background-image: url('../img/profile-default.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.leaderboard-name{
    font-weight: 500;
}

.leaderboard-amount{
    position: absolute;
    right: 16px;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.leaderboard-list--item.your-rank{
    position: sticky;
    bottom: 0;
    left: auto;
    width: auto;
    margin: 0 -16px;
    margin-top: 24px;
    margin-bottom: 0 !important;
    background: #fff0f6;
    padding: 8px 16px;
    padding-left: 60px;
    border-radius: 0;
    z-index: 1;
}

.leaderboard-list--item.your-rank .leaderboard-progress{
    left: 16px;
}

.leaderboard-list--item.your-rank .leaderboard-number{
    left: 16px;
}

.leaderboard-list--item.your-rank .leaderboard-amount{
    right: 32px;
}

.leaderboard-your--rank{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff0f6;
    padding: 8px 16px;
    border-radius: none;
}

.leaderboard-your--rank .leaderboard-list--item{
    margin-top: 0;
}

.leaderboard-your--rank .leaderboard-name{
    color: var(--primary-color);
    font-weight: 500;
}

.leaderboard-your--rank .leaderboard-amount{
    color: var(--money-color);
    font-weight: 500;
}

.memo-menu{
    position: sticky;
    top: 54px;
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 0 -16px;
    padding: 16px;
    background: #fff1f6;
    z-index: 1;
}

.memo-header{
    position: relative;
    padding-right: 40px;
}

.memo-header input{
    width: 100%;
    height: 40px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 25px;
}

.memo-header button{
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
}

.memo-tab{
    width: 80px;
    padding: 10px 16px;
    background: none;
    font-size: 12px;
    border-radius: 25px;
    color: var(--primary-color);
    font-weight: 500;
    text-align: center;
}

.memo-tab.selected{
    background: #ffd3e2;
    color: var(--primary-color);
}

.memo-container{
    display: none;
}

.memo-container.selected{
    display:block;
}

.memo-card{
    position: relative;
    background: #fff;
    box-shadow: 0px 4px 10px -1.75px rgba(0, 0, 0, 0.10);
    padding: 8px 16px 18px;
    padding-left: 126px;
    min-height: 120px;
    border-radius: var(--border-radius);
    margin-top: 24px;
}

.memo-card:first-of-type{
    margin-top: 12px;
}

.memo-title{
    color: var(--primary-color);
    font-weight: bold;
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.memo-card p{
    line-height: 1.5;
    font-size: 13px;
    margin-top: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.memo-img{
    position: absolute;
    left: 5px;
    top: 5px;
    width: 110px;
    height: 110px;
    background-image: url('../img/product-1.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.memo-readmore{
    position: absolute;
    right: 8px;
    bottom: 8px;
    font-style: italic;
    font-size: 11px;
    font-weight: 500;
    color: #959595;
}

.memo-readmore i{
    position: relative;
    top: 3px;
    font-size: 16px;
}

.announcementSwiper{
    height: fit-content;
    overflow: hidden;
}

.memo-mdl--container{
    position: relative;
}

.memo-mdl--header{
    position: relative;
    padding: 8px 0 16px 0;
    font-weight: bold;
    color: #333;
    text-align: left;
}

.memo-mdl--body{
    position: relative;
}

.memo-mdl--img{
    width: 100%;
    text-align: center;
}

.memo-mdl--img img{
    width: 320px;
    height: 320px;
    margin: 0 auto;
}

.memo-mdl--title{
    margin-top: 16px;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: bold;
    text-align: left;
}

.memo-mdl--content{
    margin-top: 16px;
    line-height: 1.5;
    font-size: 14px;
    max-height: 210px;
    overflow-y: auto;
    text-align: left;
}

.memo-mdl--close{
    position: absolute;
    top: 2px;
    right: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 24px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pos-header{
    position: sticky;
    top: 54px;
    left: 0;
    padding: 16px;
    background: #fff2f7;
    z-index: 2;
}

.pos-header--flex{
    display: flex;
    gap: 16px;
}

.pos-header--flex:first-of-type{
    margin-bottom: 16px;
}

.pos-header--flex div{
    width: 50%;
}

.pos-header--input{
    position: relative;
    width: 100%;
    background: #fff;
    height: 36px;
    border-radius: 25px;
    border: 1px solid #ddd;
}


.pos-header--input i{
    position: absolute;
    top: 9px;
    left: 10px;
    font-size: 16px;
    color: #898989;
}

.pos-header--input select{
    width: 100%;
    padding-left: 32px;
    height: 34px;
    border: none;
    border-radius: 25px;
    font-family: var(--font-family);
    font-size: 11px;
    color: #444;
}

.pos-header--input select:focus{
    outline: none;
}

.pos-select--cust{
    position: relative;
    width: 100%;
    height: 36px;
    background: #fff;
}

.pos-select--cust input{
    width: 100%;
    height: 36px;
}

.pos-header--input .select2-container{
    height: 100% !important;
    padding-left: 24px !important;
}

.pos-header--input .select2-container .select2-selection--single{
    height: 34px !important;
    border: none !important;
    border-radius: 25px !important;
}

.pos-header--input .select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 36px !important;
    font-size: 11px !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
    background: var(--primary-color) !important;
}

.select2-results__option{
    font-size: 12px !important;
}

.pos-header--input .select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 5px !important;
    right: 5px !important;
}

.pos-header--input input{
    width: 100%;
    padding-left: 32px;
    height: 34px;
    border: none;
    border-radius: 25px;
    font-family: var(--font-family);
    font-size: 12px;
}

.pos-header--input input:focus{
    outline: none;
}

.ui-datepicker .ui-datepicker-header{
    padding: 8px !important;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
}

.ui-widget-header .ui-icon{
    background-image: url('../img/ui-icons_444444_256x240.png') !important;
}

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span{
    top: 20px !important;
}

.ui-widget.ui-widget-content{
    margin-top: 6px;
    width: calc(100% - 32px);
    z-index: 999 !important;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight{
    border: 1px solid #c5c5c5 !important;
    background: #f6f6f6 !important;
    font-weight: normal !important;
    color: #454545 !important;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover{
    border: 1px solid var(--primary-color) !important;
    background: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

.ui-datepicker td{
    padding: 4px !important;
}

.ui-datepicker td span, .ui-datepicker td a{
    text-align: center !important;
    border-radius: 25px !important;
}

.ui-datepicker td span, .ui-datepicker td a{
    padding: 12px !important;
}

.ui-timepicker-standard{
    margin-top: 6px !important;
    border: 1px solid #c5c5c5 !important;
    border-radius: 3px;
    z-index: 999 !important;
}

.ui-timepicker-standard .ui-widget.ui-widget-content{
    margin-top: 0 !important;
}

.ui-timepicker-standard a{
    font-size: 14px;
    padding: 8px !important;
    font-family: var(--font-family);
}

.ui-timepicker-standard .ui-state-hover{
    border: 1px solid var(--primary-color) !important;
    background: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

.pos-cat{
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 100%;
    max-height: 100%;
    background: #fff;
    padding-top: 174px;
    padding-bottom: 60px;
    overflow: auto;
    border-right: 3px solid #fff0f6;
}

.pos-cat::-webkit-scrollbar {
    display: none;
}

.pos-body{
    position: absolute;
    top: 0;
    left: 70px;
    width: calc(100% - 70px);
    height: 100%;
    padding-top: 174px;
    padding-bottom: 60px;
    background: #fff;
}

.pos-cat.active, .pos-body.active{
    padding-bottom: 120px;
}

.cat-item{
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-left: 2px solid #fff;
    padding-right: 2px;
}

.cat-item.active{
    color: var(--primary-color);
    border-left: 2px solid var(--primary-color);
}

.cat-img{
    width: 32px;
    height: 32px;
    background: url('../img/cat-icon.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.cat-all{
    background: url('/dat/category/all-category.png');
    width: 32px;
    height: 32px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.cat-name{
    margin-top: 4px;
    padding: 0 6px;
    font-size: 9px;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.pos-product--header{
    position: sticky;
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    padding: 0px 6px;
    font-size: 12px;
    font-weight: bold;
    background: #fff;
    /* border-bottom: 3px solid #fff2f7; */
    z-index: 1;
}


.pos-product--header input{
    position: absolute;
    right: 16px;
    top: 9px;
    width: 150px;
    height: 27px;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 0 10px;
    font-size: 11px;
}

.pos-product--header input::placeholder{
    font-size: 11px;
    font-style: italic;
}

.pos-product--header input:focus{
    outline: none;
}

.pos-product--header button{
    position: absolute;
    top: 4px;
    right: 4px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
}

.pos-product--list{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    height: calc(100% - 44px);
    overflow: auto;
}

.pos-product--list::-webkit-scrollbar{
    display: none;
}

.pos-item{
    width: 50%;
    padding: 16px;
}

.pos-item--img{
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    margin: 0 auto;
    background-image: url('../img/cake.png');
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.pos-item--name{
    font-size: 10px;
    text-align: center;
    line-height: 1.4;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    color: #696969;
    margin-top: 8px;
}

.pos-item--price{
    margin-top: 6px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #444;
}

.pos-filter--header{
    position: relative;
}

.pos-filter--header button{
    position: absolute;
    top: -2px;
    right: -2px;
    font-size: 22px;
    border: none;
    background: none;
    color: #696969;
}

.sticky-total{
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100%;
    height: 60px;
    padding: 0 16px;
    background: #fff;
    z-index: 2;
    box-shadow: 0px 4px 10px 3.25px rgba(0, 0, 0, 0.10);
    display: none;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.sticky-total.active{
    display: flex;
}

.sticky-total span{
    font-size: 11px;
    font-weight: 500;
    color: #696969;
}

.sticky-total--estimation{
    margin-top: 2px;
    font-size: 18px;
    font-weight: 600;
}

.sticky-total button{
    position: absolute;
    right: 12px;
    top: 10px;
    width: fit-content;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    padding: 0 20px;
    border-radius: 25px;
    border: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.sticky-total--item{
    position: absolute;
    right: -3px;
    top: -3px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 2px 7px;
    font-size: 10px;
    border-radius: 25px;
    font-weight: 600;
}

.product-popup{
    position: relative;
    border-radius: 5px;
    padding-left: 140px;
}

.product-popup--img{
    position: absolute;
    left: 16px;
    top: 16px;
    width: 112px;
    height: 112px;
    background: url('../img/cake-1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.product-popup--name{
    font-size: 12px;
    line-height: 1.4;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    color: #696969;
}

.product-popup--price{
    margin-top: 6px;
    font-size: 16px;
    font-weight: 500;
    color: #444;
}

.product-popup--flex{
    display: flex;
    gap: 8px;
}

.product-popup--atc{
    width: 160px;
    height: 32px;
    margin-top: 12px;
    background: var(--primary-color);
    color: #fff;
    padding: 0 20px;
    border-radius: 25px;
    border: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.product-popup--cancel{
    width: 80px;
    height: 32px;
    margin-top: 12px;
    background: none;
    color: #333;
    padding: 0 20px;
    border-radius: 25px;
    border: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.qty{
    display: flex;
    width: 100%;
    margin-top: 12px;
}

.qty.small{
    width: 120px;
    margin-top: 0;  
}

.qty-minus, .qty-plus {
    position: relative;
    width: 45px;
    height: 36px;
    background: none;
    border: none;
    border-radius: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

.qty.small .qty-minus, .qty.small .qty-plus{
    
}

.qty-minus i, .qty-plus i {
    margin: 0;
    font-size: 16px;
}

.qty-num {
    position: relative;
    width: 100%;
    height: 36px;
    border: none;
    border-radius: 0;
    text-align: center;
    background: none;
    color: #333;
    font-size: 14px;
}

.commission-widget{
    padding: 24px;
}

.achieved-rank{
    font-size: 13px;
    line-height: 1.5;
    font-weight: bold;
    color: #696969;
}

.achieved-rank label{
    position: relative;
    left: -2px;
    font-weight: 500;
    font-size: 28px;
    color: #444;
}

.tcd-label{
    position: relative;
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.5;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
}

.tcd-label i{
    position: relative;
    top: 2px;
    font-size: 16px;
    margin-left: 6px;
}

.tcd-note{
    position: absolute;
    top: 44px;
    right: 0;
    width: fit-content;
    padding: 16px;
    background: #fff;
    font-size: 12px;
    line-height: 1.5;
    color: #333;
    font-weight: 500;
    box-shadow: 0px 4px 10px -1.75px rgba(0, 0, 0, 0.10);
    border-radius: 15px;
    transition: .2s ease-in-out;
    opacity: 0;
    z-index: 1;
}

.tcd-note div{
    margin-top: 8px;
    font-size: 11px;
    font-style: italic;
    color: #696969;
}

.tcd-label:hover .tcd-note{
    opacity: 1;
    top: 24px;
}

.achieved-tcd--amount{
    font-weight: bold;
    color: var(--money-color);
    font-size: 28px;
    margin-top: 6px;
}

.commission-list{
    margin-top: 16px;
    padding: 0 16px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 4px 10px -1.75px rgba(0, 0, 0, 0.10);
}

.commission-list--item{
    position: relative;
    padding-right: 64px;
    padding: 16px 0;
    border-bottom: 1px solid #ddd;
}

.commission-list--item:last-of-type{
    border-bottom: none;
}

.commission-list--title{
    font-weight: bold;
    font-size: 13px;
    color: var(--primary-color);
}

.commission-list--past{
    color: #898989;
    font-size: 12px;
    margin-top: 4px;
}

.commission-list--past i{
    position: relative;
    top: 1px;
    margin-right: 2px;
}

.commission-list--amount{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--money-color);
}

.commission-list--progress{
    position: absolute;
    top: 0;
    right: 16px;
    height: 100%;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.commission-list--progress.up{
    color: #167e16;
}

.commission-list--progress.down{
    color: #ea3c52;
}

.commission-list--progress.neutral{
    color: #747474;
}

.commission-tab--header{
    width: fit-content;
    padding: 8px 16px;
    background: #ffd3e2;
    font-size: 12px;
    border-radius: 25px;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 16px;
}

.cart-item{
    position: relative;
    min-height: 84px;
    margin-top: 24px;
    padding-left: 100px;
}

.cart-item--img{
    position: absolute;
    top: 0;
    left: 0;
    width: 84px;
    height: 84px;
    background: #eee;
    background-image: url('../img/product-1.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
}

.cart-item--name{
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    color: #696969;
}

.cart-item--price{
    margin-top: 6px;
    font-size: 14px;
    color: #444;
    margin-top: 6px;
}

.cart-item--remove{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    font-size: 18px;
    color: #898989;
}

.summary-container{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    background: #fff;
    z-index: 1;
    box-shadow: 0px 4px 10px 3.25px rgba(0, 0, 0, 0.10);
}

.summary-item{
    position: relative;
    display: flex;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
    font-weight: 500;
    color: #696969;
}

.summary-item input{
    width: 100%;
    height: 36px;
    border: 1px solid #ddd;
    padding: 0 8px;
    font-size: 12px;
    border-radius: 5px;
}

.summary-item input:focus{
    outline: none;
}

.apply-voucher--btn{
    position: absolute;
    right: 0;
    width: 130px;
    height: 36px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    margin-left: 6px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 5px;
}

.summary-item button.voucherapplied{
    color: #359335;
    background: #d6f9d6;
    font-weight: 600;
}

.summary-item span{
    position: absolute;
    right: 0;
    font-weight: 600;
    color: #333;
}

.summary-item.total, .summary-item.total span{
    font-weight: bold !important;
    color: var(--money-color);
}

.cart-list--segment{
    padding-bottom: 212px;
    height: calc(100% - 174px);
    max-height: calc(100% - 174px);
    overflow: auto;
}

.voucher-applied--note{
    margin-bottom: 16px;
    font-size: 12px;
    font-style: italic;
    font-weight: 600;
    display: none;
}

.voucher-applied--note.valid{
    color: var(--money-color);
}

.voucher-applied--note.invalid{
    color: #e61a1a;
}

.order-btn{
    position: relative;
    width: 100%;
    height: 40px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 6px;
}

.reset-btn{
    position: relative;
    width: 100%;
    height: 40px;
    border: none;
    background: #1e0f82;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 6px;
}

.summary-syscredit--topup{
    padding: 4px 8px;
    margin-left: 8px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 25px;
    font-size: 8px;
    font-weight: 600;
    color: #696969;
}

.summary-syscredit--topup i{
    position: relative;
    top: 1px;
}

.modal-container.topup{
    background: #fff;
}

.topup-header{
    position: relative;
    font-size: 16px;
    font-weight: bold;
}

.topup-header small{
    font-weight: normal;
    font-size: 11px;
    line-height: 1.5;
}

.withdraw-note{
    position: relative;
    margin-top: 6px;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.5;
}

.topup-amount{
    position: relative;
    background: #fff;
    padding: 8px 0;
    border: none;
    border-bottom: 2px solid #ddd;
    margin-top: 16px;
}

.topup-amount span{
    font-size: 11px;
    font-weight: 500;
}

.topup-input--box{
    position: relative;
    padding-left: 36px;
    margin-top: 6px;
    color: #696969;
}

.topup-input--box label{
    position: absolute;
    left: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--money-color);
}

.topup-input--box input{
    border: none;
    margin-left: 6px;
    font-size: 20px;
    font-weight: 600;
    color: var(--money-color);
    letter-spacing: .5px;
}

.topup-selection{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.topup-value, .withdraw-value, .transfer-value{
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
}

.topup-value.active, .withdraw-value.active, .transfer-value.active{
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid var(--secondary-color);
    font-weight: 500;
}

.topup-buttons{
    display: flex;
    margin-top: 16px;
}

.topup-buttons button{
    width: 50%;
    height: 40px;
    border: none;
}

.withdraw-balance{
    margin-top: 20px;
    color: var(--primary-color);
}

.confirm-topup--btn{
    background: var(--primary-color);
    color: #fff;
    border-radius: 25px;
    font-weight: 500;
}

.cancel-topup--btn{
    background: #fff;
    color: #696969;
    font-weight: 500;
}

.invoice-header{
    padding: 16px;
    background: #fff1f7;
    position: sticky;
    top: 54px;
    z-index: 1;
}

.invoice-filter--container{
    position: relative;
    /* padding-right: 40px; */
    background: #fff1f7;
}

.invoice-filter--container input{
    width: 100%;
    height: 44px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.invoice-filter--container button{
    position: absolute;
    top: 3px;
    right: 3px;
    width: 38px;
    height: 38px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    border-radius: var(--border-radius);
}

.invoice-filter--container button i{
    font-size: 20px;
    color: #fff;
}

.invoice-footer{
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 16px;
    width: 100%;
    background: #fff;
    z-index: 1;
    box-shadow: 0px 4px 10px 3.25px rgba(0, 0, 0, 0.10);
}

.invoice-footer .pagination{
    margin-top: 0;
    position: sticky;
}

.void-label{
    position: relative;
    top: -1px;
    margin-left: 6px;
    padding: 1px 5px;
    border-radius: var(--border-radius);
    background: #fff;
    border: 2px solid #e45f5f;
    color: #e45f5f;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 9px;
}

.invoice-list--item{
    position: relative;
    padding: 16px;
    padding-right: 50px;
    background: #fff;
    box-shadow: 0px 4px 10px -1.75px rgba(0, 0, 0, 0.10);
    border-radius: var(--border-radius);
    margin-top: 16px;
}

.invoice-list--item:first-of-type{
    margin-top: 0;
}

.invoice-name{
    font-weight: 500;
    font-size: 12px;
}

.invoice-amount{
    margin-top: 6px;
    font-size: 13px;
    color: var(--money-color);
    font-weight: bold;
}

.expand-invoice--btn{
    display:none;
    position: absolute;
    right: 6px;
    top: 22px;
    width: 50px;
    font-size: 24px;
    color: #696969;
    text-align: center;
}

.invoice-card--detail, .newsignup-card--detail{
    /*display: none;*/
    position: relative;
}

.invoice-customer, .invoice-created, .invoice-delivered, .invoice-hub{
    position: relative;
    color: #898989;
    margin-top: 6px;
    font-size: 12px;
    min-height: 15px;
    padding-left: 22px;
}

.invoice-customer i, .invoice-created i, .invoice-delivered i, .invoice-hub i{
    position: absolute;
    left: 0;
    top: 2px;
    margin-right: 6px;
}

.invoice-status{
    position: absolute;
    right: -36px;
    bottom: 0;
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-weight: bold;
    font-size: 10px;
    text-transform: uppercase;
    text-align: right;
    line-height: 1.5;
}

.invoice-status small{
    letter-spacing: 0.3px;
    font-weight: 500;
}

.invoice-status.completed{
    color: #078607;
    border: 1px solid #078607;
}

.invoice-status.cancelled{
    color: #e45f5f;
    border: 1px solid #e45f5f;
}

.invoice-status.cancelled small{
    letter-spacing: 0.2px;
}

.order-detail--header{
    position: relative;
    padding: 6px 0;
    font-weight: bold;
    color: #393939;
}

.close-summary--btn{
    position: absolute;
    right: 0;
    top: 4px;
    font-size: 24px;
    color: #898989;
}

.order-detail--item{
    position: relative;
    font-size: 13px;
    margin-top: 8px;
    padding-left: 120px;
    display: flex;
    color: #696969;
}

.order-detail--item span{
    position: absolute;
    left: 0;
}

.order-detail--item div{
    margin-left: 12px;
}

.order-detail--body{
    margin-top: 16px;
    max-height: 312px;
    overflow: auto;
}

.order-detail--list{
    position: relative;
    padding: 10px 0;
}

.order-detail--name{
    font-weight: bold;
    font-size: 10px;
}

.order-detail--amount{
    position: relative;
    margin-top: 6px;
    font-size: 12px;
}

.order-detail--total{
    position: absolute;
    right: 16px;
    bottom: 0;
    font-size: 12px;
    font-weight: 500;
}

.order-detail--footer{
    position: relative;
    padding: 16px;
    margin-top: 16px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 4px 10px -1.75px rgba(0, 0, 0, 0.10);
}

.order-summary--item{
    position: relative;
    margin-top: 12px;
    font-size: 12px;
}

.order-summary--item:first-of-type{
    margin-top: 0;
}

.order-summary--item div{
    position: absolute;
    right: 0;
    top: 0;
}

.order-summary--item.total{
    font-weight: bold;
    font-size: 14px;
}

.order-summary--item.total div{
    color: var(--money-color);
}

.order-summary--print{
    position: relative;
}

.order-summary--print button{
    position: relative;
    width: 100%;
    height: 36px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    margin-top: 16px;
    font-weight: 500;
    letter-spacing: .3px;
}

.wizard-container{
    position: relative;
}

.wizard-container {
    width: 100%;
	position: relative;
}
.wizard-container fieldset {
	background: white;
	border: 0 none;
	border-radius: 3px;
    margin-top: 16px;
	box-sizing: border-box;
	width: 100%;
	
	/*stacking fieldsets above each other*/
	position: relative;
}

.wizard-container fieldset:not(:first-of-type) {
	display: none;
}

.wizard-container .action-button {
	width: 50%;
	background: var(--primary-color);
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px;
    margin-top: 16px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 25px;
    font-weight: 500;
}

.wizard-container .action-button.previous{
    background: none;
    color: #333;
}

.wizard-container .action-button:hover, .wizard-container .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px var(--primary-color);
}

.fs-title {
    font-size: 14px;
    font-weight: 500;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}

.transfer-input--box{
    position: relative;
    padding-left: 36px;
    margin-top: 6px;
}

.transfer-input--box.tac{
    padding-left: 0;
}

.transfer-input--box label{
    position: absolute;
    left: 0;
    font-size: 20px;
    font-weight: 600;
}


.transfer-input--box input{
    width: 100%;
    border: none;
    margin-left: 12px;
    font-size: 20px;
    letter-spacing: .5px;
    padding-bottom: 6px;
    border-bottom: 1px solid #ddd;
}

.transfer-input--box.tac input{
    margin-left: 0;
}

.transfer-info{
    position: relative;
    margin-top: 16px;
    font-size: 13px;
    color: #333;
}

.transfer-info i{
    position: relative;
    top: 1px;
    margin-right: 6px;
}

.transfer-info span{
    position: absolute;
    right: 0;
    font-weight: 500;
}

.close-transfer--btn{
    position: absolute;
    top: -2px;
    right: 0;
    background: none;
    border: none;
    font-size: 24px;
    color: #696969;
}

.forgotpass-header{
    font-weight: bold;
    text-align: center;
    font-size: 18px;
}

.forgotpass-header div{
    font-weight: normal;
    font-size: 13px;
    line-height: 1.5;
    color: #a2a2a2;
    margin-top: 6px;
}

.forgotpass-body input{
    border: 1px solid #ddd;
    margin-top: 16px;
}

.forgotpass-warning{
    font-size: 14px;
    margin-top: 16px;
    font-weight: 500;
    text-align: center;
    font-style: italic;
    color: #f35151;
    display: none;
}

.forgotpass-footer{
    display: flex;
}

.forgotpass-footer button{
    margin-top: 16px;
}

.confirm-forgotpass{
    width: 60%;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

.cancel-forgotpass{
    width: 40%;
    background: none;
    font-weight: 500;
}

.syscredit-header{
    position: sticky;
    top: 54px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
    padding: 16px;
    z-index: 1;
    margin: 0 -16px;
    background: #fff2f7;
}

.syscredit-header small{
    color: #696969;
    font-weight: 600;
}

.syscredit-header button{
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: fit-content;
    height: 35px;
    padding: 0 10px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    font-size: 11px;
    font-weight: 500;
}

.syscredit-list--item{
    position: relative;
    padding: 16px;
    background: #fff;
    box-shadow: 0px 4px 10px -1.75px rgba(0, 0, 0, 0.10);
    border-radius: var(--border-radius);
    margin-top: 16px;
}

.syscredit-topup--code{
    font-weight: 500;
    font-size: 12px;
}

.syscredit-list--date{
    position: absolute;
    right: 16px;
    top: 16px;
    color: #696969;
}

.syscredit-list--date i{
    margin-right: 2px;
}

.syscredit-topup--amount{
    margin-top: 6px;
    font-size: 13px;
    color: var(--money-color);
    font-weight: bold;
}

.syscredit-topup--remarks{    
    margin-top: 6px;
    color: #909090;
    font-size: 12px;
}

.toyyibpay-bill .syscredit-topup--amount{
    color: var(--money-color);
}

.order-bill .syscredit-topup--amount{
    color: #e84f4f;
}

.syscredit-list--item button{
    width: fit-content;
    height: 30px;
    padding: 0 16px;
    margin-top: 16px;
    border: none;
    background: #454545;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 10px;
    padding-top: 1px;
}

.ticketing-body{
    position: relative;
    padding: 16px;
    background: #fff;
    box-shadow: var(--box-shadow);
    border-radius: 5px;
    margin-top: 16px;
}

.ticketing-item{
    position: relative;
    margin-top: 16px;
}

.ticketing-item:first-of-type{
    margin-top: 0;
}

.ticketing-item span{
    font-weight: 500;
    font-size: 14px;
    color: 333;
}

.ticketing-item select{
    position: relative;
    width: 100%;
    height: 44px;
    margin-top: 6px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-family: var(--font-family);
    padding: 0 6px;
}

.ticketing-item textarea{
    position: relative;
    width: 100%;
    height: 80px;
    margin-top: 6px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-family: var(--font-family);
    padding: 6px;
}

.ticketing-item select:focus, .ticketing-item textarea:focus{
    outline: none;
}

.ticketing-header{
    position: relative;
    font-size: 18px;
    font-weight: bold;
}

.ticketing-header div{
    font-size: 14px;
    font-weight: normal;
    color: #696969;
    margin-top: 2px;
}

.ticketing-header button{
    position: absolute;
    top: 0;
    right: 0;
    width: 42px;
    height: 42px;
    border: none;
    font-size: 20px;
    border-radius: 25px;
    background: #ffd3e2;
    color: var(--primary-color);
}

.ticketing-upload--item{
    position: relative;
    margin-top: 16px;
    font-weight: 500;
    font-size: 14px;
    color: 333;
}

.ticketing-flex{
    display: flex;
    flex-wrap: wrap;
    margin: 0px -5px;
}

.ticketing-flex--item{
    width: 50%;
    padding: 6px;
}

.box{
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border: 1px solid #ddd;
    vertical-align: middle;
    padding: 3px;
}

.js--image-preview {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-image: url(../img/noimg.jpg);
    background-color: white;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.upload-img {
    position: relative;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 35px;
    background-color: var(--primary-color);
    opacity: 1;
    color: #fff;
    cursor: pointer;
    overflow: hidden;
    text-align: center;
}

.upload-img label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
    font-size: 12px;
    padding-top: 10px;
    font-weight: 500;
}

.upload-img input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.upload-img label::after {
    content: 'Upload New Image';
    position: absolute;
    top: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    z-index: 0;
}

.ticketing-btn{
    position: relative;
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.ticketing-btn button{
    width: 50%;
    height: 40px;
    border-radius: 25px;
}

.ticketing-btn button.submit-ticket{
    background: var(--primary-color);
    color: #fff;
    border: var(--primary-color);
}

.ticketing-btn button.reset-ticket{
    background: none;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.ticket-status--header{
    font-weight: bold;
}

.ticket-status--header button{
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    width: 22px;
    height: 22px;
    font-size: 24px;
    color: #696969;
}

.ticket-card{
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px -1.75px rgba(0, 0, 0, 0.10);
    margin-top: 16px;
    padding: 16px;
}

.ticket-card--no{
    font-size: 14px;
    font-weight: bold;
}

.ticket-card--date{
    font-size: 12px;
    font-weight: 500;
    color: #696969;
    margin-top: 2px;
}

.ticket-card--status{
    position: absolute;
    right: 16px;
    top: 17px;
    font-size: 10px;
    padding: 4px 6px;
    background: #dd4848;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
}

.ticket-card--desc{
    margin-top: 16px;
    font-size: 14px;
}

.ticket-img--flex{
    display: flex;
}

.ticket-card--img{
    position: relative;
    width: 50px;
    height: 50px;
    margin: 16px 0;
    margin-right: 10px;
    background: #eee;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.ticket-flex--tag{
    position: relative;
}

.ticket-flex--tag div{
    width: fit-content;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 11px;
    text-align: center;
    margin-top: 6px;
}

.ticket-flex--tag div.formtype{
    background: #1a9898 !important;
    color: #fff;
}

.ticket-flex--tag div.formoutlet{
    background: #5c77c7 !important;
    color: #fff;
}

.ticket-flex--tag div.formcategory{
    background: #ef852a !important;
    color: #fff;
}

.cs-remark{
    background: #fafafa;
    padding: 6px;
    margin-top: 16px;
    border-radius: 8px;
}

.cs-remark--header{
    font-weight: bold;
    font-size: 12px;
    color: #867d7d;
}

.cs-remark--content{
    line-height: 1.5;
    font-size: 13px;
    margin-top: 4px;
}

.imgzoom-container {
    position: relative;
    width: 90vw;
    height: 90vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateX(-50%);
    left: 50%;
}

.close-imgzoom{
    position: relative;
    width: 120px;
    height: 40px;
    transform: translateX(-50%);
    left: 50%;
    margin-top: 16px;
    border: 1px solid #fff;
    color: #fff;
    background: none;
    border-radius: 25px;
}

.manageprofile-img{
    width: 50%;
    margin: 0 auto;
    margin-top: 16px;
}

.manageprofile-item{
    margin-top: 16px;
}

.manageprofile-item span{
    font-weight: 500;
    font-size: 14px;
    color: 333;
}

.manageprofile-item input, .manageprofile-item select{
    position: relative;
    width: 100%;
    height: 44px;
    margin-top: 6px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-family: var(--font-family);
    padding: 0 6px;
}

.manageprofile-item input:disabled{
    background: #f8f8f8;
}

.manageprofile-item textarea{
    position: relative;
    width: 100%;
    height: 80px;
    margin-top: 6px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-family: var(--font-family);
    padding: 6px;
}

.manageprofile-update{
    margin-top: 16px;
    width: 100%;
    height: 44px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.newsignup-list--item{
    position: relative;
    padding: 16px;
    padding-right: 50px;
    background: #fff;
    box-shadow: 0px 4px 10px -1.75px rgba(0, 0, 0, 0.10);
    border-radius: var(--border-radius);
    margin-top: 16px;
}

.newsignup-list--item:first-of-type{
    margin-top: 0;
}

.newsignup-name{
    font-weight: 600;
    font-size: 14px;
}

.expand-newsignup--btn{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: none; /*flex;*/
    align-items: center;
    justify-content: center;
    width: 50px;
    font-size: 24px;
    color: #696969;
}

.newsignup-card--detail{
    margin-top: 12px;
}

.newsignup-detail--item{
    position: relative;
    color: #898989;
    margin-top: 6px;
    font-size: 12px;
    min-height: 15px;
    padding-left: 22px;
}

.newsignup-detail--item i{
    position: absolute;
    left: 0;
    top: 2px;
    margin-right: 6px;
}

.newsignup-package{
    position: relative;
    font-size: 13px;
    margin-top: 4px;
}

.newsignup-form--header{
    font-weight: bold;
    font-size: 16px;
    position: relative;
}

.newsignup-form--header button{
    position: absolute;
    top: -2px;
    right: 0;
    background: none;
    border: none;
    width: 22px;
    height: 22px;
    font-size: 24px;
    color: #696969;
}

.add-agent--btn{
    position: fixed;
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: var(--primary-color);
    cursor: pointer;
    color: #fff;
    border-radius: 50%;
    z-index: 1;
}

.commission-header{
    font-weight: bold;
}

.reseller-income--item{
    font-size: 14px;
    position: relative;
    margin-top: 16px;
    padding: 16px;
    background: #fff;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    font-weight: 500;
}

.reseller-income--item i{
    margin-right: 6px;
    font-size: 18px;
    position: relative;
    top: 2px;
}

.checkout-summary--header{
    position: sticky;
    top: 54px;
    left: 0;
    padding: 12px 16px;
    background: #fff2f7;
    z-index: 2;
}

.checkout-summary--item{
    position: relative;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin-top: 6px;
    padding-left: 100px;
}

.checkout-summary--item i{
    position: relative;
    top: 1px;
}

.checkout-summary--item label{
    position: absolute;
    left: 0;
    color: #696969;
}

.checkout-summary--item span{
    position: relative;
    left: 8px;
}

.home-agent--name{
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
}

.home-agent--name small{
    font-size: 14px;
    font-weight: bold;
    color: #696969;
}

.home-agent--rank{
    color: #696969;
    margin-top: 4px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .3px;
}

.oos-pos--label{
    position: absolute;
    bottom: 6px;
    left: 6px;
    padding: 6px;
    font-size: 12px;
    font-weight: 500;
    background: #616161;
    opacity: 0.8;
    color: #fff;
    width: calc(100% - 12px);
    text-align: center;
  }

.download-commission--btn{
    background: #cf2466;
    color: #fff;
    width: 100%;
    margin-top: 16px;
    font-weight: bold;
}

.nearest-header{
    padding: 16px;
    background: #fff1f7;
    position: sticky;
    top: 54px;
    z-index: 1;
}

.nearest-filter--container{
    position: relative;
    /* padding-right: 40px; */
    background: #fff1f7;
}

.nearest-filter--container input{
    width: 100%;
    height: 44px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.nearest-filter--container button{
    position: absolute;
    top: 3px;
    right: 3px;
    width: 50px;
    height: 38px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    border-radius: var(--border-radius);
}

.nearest-filter--container button i{
    font-size: 20px;
    color: #fff;
}


.customer-list--item{
    position: relative;
    padding: 16px;
    padding-right: 50px;
    background: #fff;
    box-shadow: 0px 4px 10px -1.75px rgba(0, 0, 0, 0.10);
    border-radius: var(--border-radius);
    margin-top: 16px;
}

.customer-list--item:first-of-type{
    margin-top: 0;
}

.customer-name{
    font-weight: 600;
    font-size: 14px;
}

.customer-card--detail{
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
}

.customer-detail--item{
    position: relative;
    color: #898989;
    margin-top: 6px;
    font-size: 12px;
    min-height: 15px;
    padding-left: 22px;
    width: 40%;
}

.customer-detail--item.full{
    width: 60%;
}

.customer-detail--item i {
    position: absolute;
    left: 0;
    top: 2px;
    margin-right: 6px;
}

.customer-detail--segment{
    position: relative;
}

.customer-detail--header{
    font-weight: bold;
}

.customer-detail--info{
    position: relative;
    margin-top: 16px;
    line-height: 1.5;
    padding-left: 40px;
}

.customer-detail--info label{
    font-weight: 500;
    font-size: 13px;
    color: #949494;
}

.customer-detail--info div{
    font-size: 15px;
    min-height: 23px;
}

.customer-detail--info i{
    position: absolute;
    top: 8px;
    left: 0;
    font-size: 24px;
    color: #cf2466;
}

.customer-detail--header button{
    position: absolute;
    top: -2px;
    right: 0;
    background: none;
    border: none;
    width: 22px;
    height: 22px;
    font-size: 24px;
    color: #696969;
}
