
/* -------------------- DASHBOARD :: START ----------------------- */



.timeline-custom_label {
    position: relative;
}

.timeline-custom_label:before {
    content: "";
    position: absolute;
    left: 1px;
    width: 3px;
    top: 0;
    bottom: 0;
    background-color: #eff2f5;
}

.timeline-custom_label .timeline-item {
    margin-bottom: 0.1rem;
}


.timeline-custom_payment_log_label {
    position: relative;
}

.timeline-custom_payment_log_label:before {
    content: "";
    position: absolute;
    left: 5px;
    width: 3px;
    top: 4px;
    bottom: 10px !important;
    background-color: #eff2f5;
}

.timeline-custom_payment_log_label .timeline-item {
    margin-bottom: 0.1rem;
}

/* .timeline-custom_payment_log_label .timeline-badge-custom_payment_log {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
    margin-top: 1px;
    margin-left: 0rem;
    padding: 3px !important;
    border: 6px solid var(--kt-body-bg) !important;
    border-bottom: 0px !important;
} */

.timeline-custom_payment_log_label .timeline-badge .bullet-dot {
    top:7px;
}


.css1 {
    background-color: rgba(239, 217, 253, 1);
    color: white;
    border-radius: 8px;
    
}

.marquee {
   
    overflow: hidden;
   
}

.marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-width: 100%;
    animation: scroll 15s linear infinite;
}


@keyframes scroll {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(calc(-100% - .1rem));
    }
}





/* -------------------- DASHBOARD :: END ----------------------- */













/* ---------------------- CUSTOM TABLE :: START ----------------------------- */


.custom_tbl_style {
    width: 100%;
    border: 1px solid #eee;
    padding: 1rem 2.25rem;
    border-radius: 0.625rem;
}

.custom_tbl_style>thead>tr:first-child {
    padding-left: 35px;
}


.custom_tbl_style td {
    padding-top: 23px;
    padding-bottom: 23px;
}

.custom_tbl_style th {
    padding-top: 23px;
    padding-bottom: 23px;
}

.custom_tbl_style thead tr {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom: 1px solid #eff2f5 !important;
}







/* ---------------------- CUSTOM TABLE :: END ----------------------------- */






/* ----------------------- CUSTOM MODAL :: START -------------------------- */



.custom_modal .modal-header {
    border-bottom: 1px dashed #eee;
}


.custom_modal .custom-content-container {
    background-color: #fff;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 7px;
}

.custom_modal .custom-content-container .custom-content-text {
    color: #17c653;
    font-size: 17px;
}





/* ----------------------- CUSTOM MODAL :: END -------------------------- */








/*----------------------- PROFILE TABS :: START ----------------------------- */



.custom_button-group .btn {
    border: 1px solid #eee !important;
    padding: 5px 20px !important;
    background-color: white;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

 .custom_btn.active {
    background: rgb(127, 208, 134);
    background: linear-gradient(90deg, rgba(127, 208, 134, 1) 14%, rgba(26, 200, 228, 1) 58%);
    color: white;
    border-color: transparent;
}

.custom_button-group .custom_btn:hover {
    background-color: #f0f0f0;
    color: #fff;
    background: rgb(127, 208, 134);
    background: linear-gradient(90deg, rgba(127, 208, 134, 1) 14%, rgba(26, 200, 228, 1) 58%);
}



/*----------------------- PROFILE TABS :: END ----------------------------- */





/* ------------------------ DISTRIBUTOR PROFILE :: START ------------------------- */



/* Wallet Card Container */
.wallet-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #d9cfff; /* Light border to match your design */
    border-radius: 12px;
    /* padding: 10px; */
    width: 310px;
    background-color: #f5f0ff; /* Light purple background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow */
    font-family: 'Arial', sans-serif;
}

/* Left section (Icon and Wallet text) */
.wallet-icon-section {
    display: flex;
    align-items: center;
    background-color: #b99eff; /* Purple background */
    padding: 18px;
    border-radius: 8px 0 0 8px;
    color: white;
    font-weight: bold;
}

/* Wallet icon */
.wallet-icon-section i {
    font-size: 20px;
    margin-right: 8px;
}

/* Right section (Balance and Button) */
.wallet-balance-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 10px;
    background-color: #fefaff; /* Lighter purple background */
    border-radius: 0 8px 8px 0;
    position: relative;
}

/* Currency symbol */
.currency-symbol {
    font-size: 24px;
    font-weight: bold;
    margin-right: 4px;
    color: black;
}

/* Balance amount */
.balance-amount {
    font-size: 24px;
    font-weight: bold;
    color: black;
}

/* Threshold balance text */
.threshold {
    font-size: 10px;
    color: red;
    margin-top: 2px;
}

/* Add button */
.add-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border: 1px solid #d9cfff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin-left: 10px;
}

/* Add button icon */
.add-button i {
    color: #d9cfff;
    font-size: 18px;
}

/* Responsive - Mobile Adjustments */
@media (max-width: 400px) {
    .wallet-card {
        width: 100%;
    }
}




/* ------------------------ DISTRIBUTOR PROFILE :: END ------------------------- */



/* --------------------------- ENTITY PROFILE :: START ------------------------------ */




.entity_profile-header {
    background: linear-gradient(90deg, rgba(127, 208, 134, 1) 14%, rgba(26, 200, 228, 1) 58%);
    border-radius: 8px;
    padding: 15px;
    color: #fff;
    display: flex;
    height: 130px;
    margin-bottom: 55px;
}

.entity_profile {
    display: flex;
    align-items: center;
    margin-top: 52px;
    position: absolute;
    width: 100%;
    margin-left: 10px;

}


.entity_avatar {
    width: 100px;
    height: 100px;
    background-color: #fff;
    color: #00bfff;
    font-weight: bold;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    border: 1px solid #e5e3e3;
}




/* --------------------------- ENTITY PROFILE :: END ------------------------------ */







 .app-engage-btn {
    position: fixed;
    right: 0;
    bottom: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0px 0px 22px #cebfbf;
    border-width: 1px;
    border-style: solid;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    border-radius: 6px;
    width: 49px;
    color: #A1A5B7;
    border-color: #E8E8E8;
    background-color: #ffffff;
    z-index: 100;
}

.app-engage-btn ul li a {
    background-color: #F3F6F9;
    border-color: #F3F6F9;
}



/* ---------------- TERMS AND CONDITIONS ERROR MESSAGE :: START -----------------  */

	
	#verification_error_message-div {
		animation: colorFade 3s infinite alternate;
	}

	#verification_error_message-span {
		animation: colorFade_text 3s infinite alternate;
	}

	@keyframes colorFade {
		0% {
			background-color: rgba(255, 0, 0, 1); 
		}
		25% {
			background-color: rgb(217, 24, 24); 
		}
		50% {
			background-color: rgb(0, 100%, 65%); 
		}
		75% {
			background-color: rgb(230, 230, 230); 
		}
		100% {
			background-color: rgb(255, 255, 255); 
		}
	}
	
	@keyframes colorFade_text {
		0% {
			color: rgba(255, 255, 255); 
		}
		25% {
			color: rgb(230, 230, 230); 
		}
		50% {
			color: rgb(0, 100%, 65%); 
		}
		75% {
			color: rgb(217, 24, 24); 
		}
		100% {
			color: rgb(255, 0, 0, 1); 
		}
	}


/* ---------------- TERMS AND CONDITIONS ERROR MESSAGE :: END -----------------  */




.custom_accordation_payment_log-tbl > :not(caption) > * > * {
    padding: 0.25rem .75rem;
}

.subsc_identification-credentials {
    cursor: pointer;
}




/* ----------------------- I2I CUSTOMER ACCOUNT :: START -------------------------- */



        .I2I_cust_account-container {
            background: white;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .I2I_cust_account-tabs {
            display: flex;
            background: #f8f9fa;
            border-bottom: 1px solid #e9ecef;
            padding: 0 20px;
        }

        .I2I_cust_account-tab {
            padding: 12px 16px;
            color: #6c757d;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            font-size: 14px;
            font-weight: 500;
        }

        .I2I_cust_account-tab:hover {
            color: #495057;
        }

        .I2I_cust_account-tab.active {
            color: #007bff;
            border-bottom-color: #007bff;
        }

        .I2I_cust_account-header {
            padding: 20px;
            border-bottom: 1px solid #e9ecef;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .I2I_cust_account-header h2 {
            font-size: 14px;
            color: #6c757d;
            font-weight: 400;
        }

      
        .I2I_cust_account-table-container {
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }

        .I2I_cust_account-th {
            background: #f8f9fa;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
            font-size: 13px;
            color: #495057;
            border-bottom: 1px solid #e9ecef;
            white-space: nowrap;
        }

        .I2I_cust_account-td {
            padding: 12px 16px;
            border-bottom: 1px solid #f1f3f4;
            font-size: 13px;
            color: #212529;
            vertical-align: top;
        }

        .I2I_cust_account-tr:hover {
            background-color: #f8f9fa;
        }

        .I2I_cust_account-data-usage {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .I2I_cust_account-data-amount {
            font-weight: 600;
            color: #212529;
        }

        .I2I_cust_account-data-time {
            color: #6c757d;
            font-size: 12px;
        }

        .I2I_cust_account-ip-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .I2I_cust_account-ip-address {
            color: #212529;
        }

        .I2I_cust_account-ip-detail {
            color: #6c757d;
            font-size: 12px;
        }

        .I2I_cust_account-terminate-cause {
            color: #dc3545;
            font-weight: 500;
        }

        .I2I_cust_account-action-btn {
            width: 24px;
            height: 24px;
            border: 1px solid #dee2e6;
            border-radius: 4px;
            background: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
        }

        .I2I_cust_account-action-btn:hover {
            background: #f8f9fa;
            border-color: #adb5bd;
        }

        .I2I_cust_account-na-text {
            color: #6c757d;
            font-style: italic;
        }

        @media (max-width: 768px) {
            .I2I_cust_account-tabs {
                overflow-x: auto;
                padding: 0 10px;
            }
            
            .I2I_cust_account-header {
                padding: 15px;
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .I2I_cust_account-th, .I2I_cust_account-td {
                padding: 8px 12px;
                font-size: 12px;
            }
        }


/* ----------------------- I2I CUSTOMER ACCOUNT :: END -------------------------- */