@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Onest:wght@100..900&display=swap');
/*
========================
GOBAL CSS START
========================
*/

body {
    font-family: "Onest", sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #030A08;
    color: #fff;
}

:root {
    --font-inter: "Inter", sans-serif;
    --primery-black: #030A08;
    --secondery-black: #191B1F;
    --primery-green: #87F950;
    --selection-bg: #0078d7;
    --selection-color: #fff;
    --scroll-top-bg: #53FC18;
    --scroll-top-color: #000;
}

html {
  scroll-behavior: smooth;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

::selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-webkit-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-moz-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--scroll-top-bg);
    text-align: center;
    font-size: 22px;
    color: var(--scroll-top-color);
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 970;
}

.scrolltotop img {
    width: 14px;
    margin-top: -4px;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -7px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: var(--scroll-top-bg);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: "";
    position: absolute;
    top: 4px;
    left: -1px;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*===============
 GOBAL CSS END  
 ============== */

/*========= dashboard style start hare ========= */

.dashboard-body {
    font-family: var(--font-inter);
    background-color: var(--secondery-black);
    position: relative;
    z-index: 2;
    min-height: 100dvh;
    color: #fff;
}

.dashboard-body::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(images/dashboard-bg.png) no-repeat;
    background-position: bottom;
    background-size: cover;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.5;
    z-index: -30;
}

/* sidebar style start hare  */

.sidebar-area {
    position: fixed;
    left: 0;
    top: 0;
    padding-left: 25px;
    padding-right: 14px;
    padding-top: 50px;
    padding-bottom: 50px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    width: 226px;
    z-index: 999;
    transition: 0.3s;
}

.sidebar-nav {
    padding-top: 73px;
    flex: 1;
    overflow: hidden;
    overflow-y: auto;
}

.sidebar-nav ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.28px;
    border-radius: 10px;
}

.sidebar-items.active {
    background: var(--primery-green);
    color: #000;
    font-weight: 700;
}

.sidebar-items.active .icons svg path {
    fill: #000;
}

.sidebar-items.active .icons.home-icon svg path {
    fill: unset;
    stroke: #000;
}

.logout-btn button {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.sidebar-container {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sidebar-area.sidebar-collapes {
    left: -100%;
}

/*======= sidebar style end hare ====== */

/*==== dashboard main style start hare ===== */

/* dashboard header start hare  */

.dashboard-header {
    display: flex;
    padding: 25px 80px 25px 252px;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(152px);
    transition: 0.3s;
    position: sticky;
    top: 0;
    z-index: 990;
}

.sidebar-collapes .dashboard-header {
    padding-left: 26px;
}

.sidebar-left h2 {
    color: #F3FFEF;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.sidebar-left p {
    color: #CCC;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.sidebar-left p a {
    color: var(--primery-green);
}

.sidebar-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sidebar-toggler {
    background: transparent;
    border: none;
}

/*===== accound update style start hare ===== */

.account-update {
    padding-inline: 80px;
}

.update-container {
    padding-top: 49px;
    padding-bottom: 38px;
    border-bottom: 1px solid #505155;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 19px;
}

.update-button button {
    display: flex;
    min-width: 140px;
    padding: 11px 37.67px 11px 37.66px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #424945;
    background: linear-gradient(90deg, #2C2F36 0%, #1E2025 100%);
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: 0.3s;
}

.update-button button:hover {
    background: var(--primery-green);
    color: #000;
}

.balance-enquary {
    display: flex;
    align-items: center;
    gap: 15px;
}

.balance-enquary select {
    background: var(--secondery-black);
    border: none;
    color: var(--primery-green);
    font-weight: 700;
    cursor: pointer;
}

.add-balance-btn button {
    background: transparent;
    border: none;
    color: #F3FFEF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-left: 5px;
}

.profile-card .profile a {
    display: flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 12px;
}

.profile a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-card .line {
    display: block;
    width: 1px;
    height: 32px;
    background: #424945;
}

.profile-card .logout-btn {
    margin-left: 18px;
}

/* dashboard main card style start hare  */

.dashboard-main-card {
    padding-left: 252px;
    padding-top: 29px;
    padding-right: 31px;
    padding-bottom: 20px;
    transition: 0.3s;
}

.sidebar-collapes .dashboard-main-card {
    padding-left: 26px;
}

.page-title h2 {
    color: #FFF;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.28px;
}

.dashboard-top-actions {
    display: flex;
    align-items: center;
    padding-bottom: 35px;
    gap: 10px;
    max-width: 1300px;
    margin-inline: auto;
}

.dashboard-actions-btn {
    padding: 16px 24px;
    border-radius: 9px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6.5px);
    display: flex;
    align-items: center;
    gap: 5px;
}

.viewbot-button select {
    background: #25262A;
    border: none;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.32px;
    cursor: pointer;
}

.cursor-pointer {
    cursor: pointer;
}

.dashboard-inner-card {
    display: flex;
    gap: 25px;
    padding-top: 25px;
    max-width: 1300px;
    margin-inline: auto;
}

.dashboard-inner-card .inner-left-card {
    
    flex: 1;
    position: relative;
    z-index: -1;
    min-height: 461px;
   
}

.inner-left-card .ellipse-one {
    width: 487px;
    height: 509.576px;
    border-radius: 509.576px;
    opacity: 0.45;
    background: #FFF;
    filter: blur(242px);
    position: absolute;
    bottom: -320px;
    z-index: -1;
}

.inner-left-card .ellipse-two {
    width: 129px;
    height: 134.98px;
    border-radius: 509.576px;
    background: #FFF;
    filter: blur(100px);
    position: absolute;
    bottom: 100px;
    right: 110px;
    z-index: -1;
}

.live-view {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.live-view h4 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.2px;
}

.live-view .live-view-card {
    width: 100%;
    min-height: 274px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    padding: 20px;
}

.live-view-card p {
    color: rgba(255, 255, 255, 0.60);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.14px;
}

.inner-left-card {
    display: flex;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.inner-left-card::before {
    content: '';
    display: block;
    width: 1142px;
    height: 288px;
    border-radius: 1142px;
    opacity: 0.05;
    background: #87F950;
    filter: blur(242px);
    position: absolute;
    left: 219px;
    top: 100px;
    z-index: -1;
}

.live-start-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.live-start-card h4 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.2px;
}

.dashboard-single-input {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.dashboard-single-input label {
    color: rgba(255, 255, 255, 0.80);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.14px;
}

.dashboard-single-input label span {
    color: rgba(255, 255, 255, 0.50);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.12px;
}

.dashboard-single-input input {
    padding: 16px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    color: rgba(255, 255, 255, 0.50);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.14px;
}

.live-start-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dashboard-group-input {
    display: flex;
    align-items: center;
    gap: 20px;
}

.switch-button input[type="checkbox"] {
    position: relative;
    width: 36px;
    height: 19px;
    -webkit-appearance: none;
    appearance: none;
    background: #7F8280;
    outline: none;
    border-radius: 2rem;
    cursor: pointer;
}

.switch-button input[type="checkbox"]::before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 48%;
    left: 4px;
    transition: 0.5s;
    transform: translateY(-50%);
}

.switch-button input[type="checkbox"]:checked::before {
    transform: translateY(-50%) translateX(100%);
    background: #fff;
}

.switch-button input[type="checkbox"]:checked {
    background: #00ed64;
}

.dynamic-viwer {
    gap: 10px;
}

.switch-button {
    display: flex;
    align-items: center;
}

.dynamic-viwer p {
    color: rgba(255, 255, 255, 0.80);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.14px;
}

.submit-button button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding-inline: 40px;
    border-radius: 10px;
    background: #87F950;
    border: none;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.28px;
}

.inner-right-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.view-status-card {
    padding: 20px;
    width: 304px;
    border-radius: 20px;
    border: 1px solid rgba(182, 187, 255, 0.20);
    backdrop-filter: blur(6.5px);
    position: relative;
    z-index: 2;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.view-status-card::before {
    content: '';
    display: block;
    width: 154.862px;
    height: 247.263px;
    transform: rotate(39.41deg);
    flex-shrink: 0;
    background: #FFF;
    opacity: 0.6;
    filter: blur(117px);
    position: absolute;
    left: -65px;
    bottom: -130px;
    z-index: -1;
}

.view-status-card::after {
    content: '';
    display: block;
    width: 154.862px;
    height: 247.263px;
    transform: rotate(39.41deg);
    background: var(--primery-green);
    opacity: 0.6;
    filter: blur(117px);
    position: absolute;
    right: -170px;
    top: -170px;
    z-index: -1;
}

.view-status-card h2 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.2px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.view-status-card .status-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.status-list .status-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-items p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.16px;
}

.status-items .status-value {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.16px;
}

.status-value.status-positive {
    color: var(--primery-green);
}

.status-value.status-error {
    color: #D4A66B;
}

.status-value.status-dead {
    color: #C46961;
}

.contact-us-card h3 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.2px;
}

.contact-us-card a {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.10);
    padding-block: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.28px;
}


.custom-select-wrapper {
	display: inline-block;
	color: #fff;
	user-select: none;
}

.custom-select-trigger {
	background: transparent;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px 8px;
}

.custom-options {
	position: absolute;
	top: 90%;
	left: -1px;
	right: 0;
	background-color: #202225;
	border: 1px solid transparent;
	display: none;
	z-index: 999;
	width: calc(100% + 2px);
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	border-top: none;
	overflow: hidden;
}

.custom-option {
	padding: 8px 12px;
	cursor: pointer;
	padding-left: 30px;
}

.custom-option:hover,
.custom-option.active {
	/*! background-color: #333; */
}

.dashboard-actions-btn.active .custom-options {
    border-color: rgba(255, 255, 255, 0.60);
}
.viewbot-button.dashboard-actions-btn {
    position: relative;
    z-index: 2;
}



.clip-viewbot-bottom {
    max-width: 1300px;
    margin-inline: auto;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.clip-inner-wp {
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(182, 187, 255, 0.20);
    background: rgba(38, 38, 38, 0.10);
    backdrop-filter: blur(20px);
}
.clip-wp-title h4 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -1%;
}
.auto-start-ins-table {
    padding-top: 8px;
}

.auto-start-ins-table table {
	width: 100%;
}
.auto-start-ins-table th,
.auto-start-ins-table td {
    width: 20%;
    padding: 16px 20px;
}

.auto-start-th {
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
}
.auto-start-ins-table th:first-child .auto-start-th {
    justify-content: start;
}
.auto-start-ins-table th:last-child .auto-start-th {
    justify-content: end;
}

.auto-start-ins-table tr {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.resend-order-table table {
    width: 100%;
}
.resend-order-table th {
    color: #ACACAC;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.14px;
    width: 20%;
}
.auto-start-th span {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.14px;
    white-space: nowrap;
}
.resend-order-table {
	padding-top: 20px;
	padding-bottom: 20px;
}

.resend-order-wp .clip-wp-title {
    padding-inline: 30px;
}
.resend-order-wp .resend-order-table {
    padding-inline: 30px;
}

.resend-order-wp .emty-data {
    padding: 11px 30px;
    background: rgba(255, 255, 255, 0.06);
}
.emty-data p {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.14px;
}

/*========================
 add affiliate page 
==================== */

.account-balance p {
    color: #87F950;
}
.live-view.live-account-balance {
    max-width: 440px;
}

.creadit-purches-wp h5 {
    color: rgba(255, 255, 255, 0.60);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.14px;
}

.credit-purchese-form {
    padding-top: 20px;
}

.single-credit-items {
    display: flex;
    gap: 20px;
}

.single-credit-items .single-input {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.single-credit-items .single-input label {
    color: rgba(255, 255, 255, 0.80);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.14px;
}
.single-credit-items input {
    padding: 16px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    color: rgba(255, 255, 255, 0.80);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.14px;
}

.single-input.cost-value {
    max-width: 140px;
}

.credit-purchese-form form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.credit-purchase-btn {
    padding: 16px 20px;
    border: none;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.28px;
    border-radius: 10px;
    background: #87F950;
}


.plan-purchase-card {
    max-width: 1300px;
    margin-inline: auto;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.purchase-plan-a h4 {
    color: #FFF;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.28px;
}

.plan-items-card {
    display: flex;
    gap: 15px;
    padding-top: 20px;
}
.single-plan-a {
    display: flex;
    padding: 20px 12px;
    flex-direction: column;
    justify-content: center;
    gap: 27px;
    border-radius: 10px;
    border: 1px solid rgba(182, 187, 255, 0.20);
    background: rgba(39, 41, 44, 0.31);
    backdrop-filter: blur(20px);
    width: calc(20% - 3px);
}

.plan-top-area {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.plan-top-area .plan-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.plan-top-area .plan-name h5 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.2px;
}
.plan-price h2 {
    color: #87F950;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.24px;
}
.plan-time p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 116.667%;
    letter-spacing: -0.12px;
}
.plan-action-btns {
    display: flex;
    flex-direction: column;
    gap: 17px;
}
.plan-action-btns a {
    padding: 16px 20px;
    border-radius: 10px;
    background: #37383D;   
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.28px;  
}
.plan-action-btns button {
    border-radius: 10px;
    background: #87F950;
    padding: 16px 20px;
    text-align: center;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.28px;
    border: none;
}

/* =============================
affiliate dashboard page 
================================*/

.affiliate-dashboard-main {
    max-width: 1300px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
}


.single-overview-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.overview-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.refferral-balance {
    display: flex;
    align-items: center;
    gap: 10px;
}

.overview-card-name {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.16px;
}
.refferral-balance h2 {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.24px;
}
.refferral-balance span {
    color: #53FC18;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.affiliate-overview {
	display: flex;
	gap: 16px;
	padding-top: 20px;
}

.single-overview-card {
    flex: 1;
    padding: 12px 11px;
    border-radius: 10px;
    border: 1px solid rgba(182, 187, 255, 0.20);
    background: #27292C;
    backdrop-filter: blur(34.04999923706055px);
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.single-overview-card::before {
    content: '';
    clear: both;
    display: block;
    width: 26.785px;
    height: 247.263px;
    background: #FFF;
    opacity: 0.6;
    filter: blur(117px);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%) rotate(90.115deg);
    z-index: -1;
}

.rafferral-link-card {
    padding: 23px 18px;
    border-radius: 10px;
    border: 1px solid rgba(182, 187, 255, 0.20);
    background: rgba(39, 41, 44, 0.31);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 17px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.rafferral-link-card h4 {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.16px;
}

.raffter-link-box {
    display: flex;
    gap: 20px;
}
.raffter-link-box p {
    padding: 16px 13px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.06);
    flex: 1;
}
.raffter-link-box button {
    padding: 16px 40px;
    border-radius: 10px;
    border: 1px solid #53FC18;
    background: transparent;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.28px;
    text-transform: capitalize;
    transition: 0.3s;
}
.raffter-link-box button:hover {
    background: #00ed64;
}
.rafferral-link-card::before {
    content: '';
    display: block;
    width: 23.425px;
    height: 1083.795px;
    border-radius: 1083.795px;
    opacity: 0.6;
    background: #FFF;
    filter: blur(117px);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%) rotate(90.115deg);
    z-index: -1;
}

.raferral-perform {
    display: flex;
    gap: 30px;
}

.single-raferral-perform {
	flex: 1;
	padding: 12px 11px;
	border-radius: 10px;
	border: 1px solid rgba(182, 187, 255, 0.20);
	background: #27292C;
	backdrop-filter: blur(34.04999923706055px);
	position: relative;
	z-index: 2;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.single-raferral-perform .refferral-balance h2 {
    color: #53FC18;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.22px;
}
.single-raferral-perform .refferral-balance p {
    color: rgba(255, 255, 255, 0.50);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.14px;
}

.single-raferral-perform::before {
	content: '';
	clear: both;
	display: block;
	width: 26.785px;
	height: 247.263px;
	background: #FFF;
	opacity: 0.6;
	filter: blur(117px);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50% , -50%) rotate(90.115deg);
	z-index: -1;
}

.raferral-list-header ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.06);
    padding: 16px 13px;
}
.raferral-list-header li {
    color: rgba(255, 255, 255, 0.50);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.14px;
}

.raferral-not-found {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding-top: 44px;
}
.rafferral-link-card.recent-raferral {
    padding: 29px 22px;
}

.raferral-not-found span {
    color: rgba(255, 255, 255, 0.50);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.14px;
}


/*=========================
 account setting card 
========================= */

.security-wrapper {
    padding: 20px 26px;
   border-radius: 20px;
    border: 1px solid rgba(182, 187, 255, 0.20);
    backdrop-filter: blur(6.5px);
    position: relative;
    z-index: 2;
    overflow: hidden;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
}

.password-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 635px;
}
.pass-change-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.pass-change-form .single-input {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pass-change-form .single-input label {
    color: rgba(255, 255, 255, 0.80);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.14px;
}
.pass-change-form .single-input input {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    padding: 16px 20px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.14px;
    color: #fff;
}

.twostap-security-card {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(182, 187, 255, 0.20);
    backdrop-filter: blur(6.5px);
    display: flex;
    flex-direction: column;
    max-width: 305px;
    gap: 9px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.twostap-security-card h4 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.2px;
}
.twostap-security-card p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 131.25%;
    letter-spacing: -0.16px;
}
.twostap-security-card button {
    padding: 16px;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.28px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.10);
    border: none;
}

.twostap-security-card::after {
    content: '';
    display: block;
    width: 147.804px;
    height: 230.376px;
    transform: rotate(40.089deg);
    z-index: -1;
    background: #53FC18;
    opacity: 0.12;
    filter: blur(117px);
    position: absolute;
    top: -100px;
    right: -50px;
}

.twostap-security-card::before {
    content: '';
    display: block;
    width: 147.804px;
    height: 230.376px;
    transform: rotate(40.089deg);
    background: #FFF;
    opacity: 0.6;
    filter: blur(117px);
    position: absolute;
    left: -80px;
    bottom: -80px;
    z-index: -1;
}
.security-wrapper::before {
    content: '';
    display: block;
    width: 172.729px;
    height: 134.688px;
    background: rgba(255, 255, 255, 0.60);
    filter: blur(99.1050033569336px);
    position: absolute;
    right: 215px;
    bottom: 55px;
    z-index: -1;
}
.security-wrapper::after {
    content: '';
    display: block;
    width: 652.085px;
    height: 508.473px;
    background: rgba(255, 255, 255, 0.45);
    filter: blur(242px);
    opacity: 0.45;
    position: absolute;
    top: 279px;
    left: 0;
    z-index: -1;
}
.password-card h4 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.2px;
}
.password-card p {
    color: rgba(255, 255, 255, 0.60);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.14px;
}

.change-profile-card {
    border-radius: 20px;
    border: 1px solid rgba(182, 187, 255, 0.20);
    backdrop-filter: blur(6.5px);
    padding: 34px 26px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.change-profile-card h4 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.2px;
}

.change-profile-card p {
    color: rgba(255, 255, 255, 0.60);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.14px;
}
.upload-profile-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 635px;
}
.upload-profile-box label {
    color: rgba(255, 255, 255, 0.80);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.14px;
}
.upload-profile-box input {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    padding: 11px 8px;
    color: rgba(255, 255, 255, 0.50);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.14px;
}
.change-profile-card::before {
    content: '';
    width: 172.729px;
    height: 134.688px;
    display: block;
    background: rgba(255, 255, 255, 0.60);
    filter: blur(99.1050033569336px);
    position: absolute;
    top: 271px;
    right: 240px;
    z-index: -1;
}
.change-profile-card::after {
    content: '';
    width: 652.085px;
    height: 508.473px;
    border-radius: 652.085px;
    opacity: 0.45;
    background: #FFF;
    filter: blur(242px);
    position: absolute;
    top: 280px;
    left: 20px;
    z-index: -1;
}


/*===============================
 Home Page Style Start Hare 
================================= */

.top-area {
    padding-top: 36px;
    position: relative;
    overflow: hidden;
}

.top-ractangle {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: -1;
}

.top-ractangle .nav-area {
    border-radius: 46px;
    border: 1px solid #303030;
    background: rgba(108, 108, 108, 0.10);
    backdrop-filter: blur(24.649999618530273px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 13px;
    padding-left: 39px;
}

.nav-area .logo img {
    max-width: 82px;
}

.navbar-navs {
    display: flex;
    align-items: center;
    gap: 28px;
}

.navbar-navs li a {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 187.5%;
}

.SMN_effect-14 a {
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
    position: relative;
}

.SMN_effect-14 a:before {
    position: absolute;
    top: 65%;
    left: 50%;
    color: transparent;
    content: '•';
    text-shadow: 0 0 transparent;
    font-size: 13pt;
    -webkit-transition: text-shadow 0.3s, color 0.3s;
    -moz-transition: text-shadow 0.3s, color 0.3s;
    transition: text-shadow 0.3s, color 0.3s;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    pointer-events: none;
}

.SMN_effect-14 a:hover:before,
.SMN_effect-14 a:focus:before {
    color: var(--primery-green);
    text-shadow: 10px 0 var(--primery-green), -10px 0 var(--primery-green);
}

.action-btn {
    display: flex;
    align-items: center;
    min-width: 125px;
    position: relative;
    padding: 6px 8px;
    box-sizing: border-box;
    color: #FFF;
    background: #2A382B;
    background-clip: padding-box;
    border: solid 2px transparent;
    border-radius: 31px;
    justify-content: center;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 214.286%;
    letter-spacing: -0.42px;
    gap: 5px;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: linear-gradient(to right, #87F950, #50932F99);
    transition: 0.3s;
}

.action-btn:hover::before {
    background: linear-gradient(to left, #87F950, #50932F99);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.nav-toggle button {
    background: transparent;
    border: none;
}

.header-area {
    transition: 0.3s;
}

.header-area.header-fixed {
    position: fixed;
    top: -200px;
    width: 100%;
    animation: nav-effect 0.5s ease-in-out forwards;
    z-index: 999;
}

@keyframes nav-effect {
    0% {
        top: -200px;
        opacity: 0;
    }
    100% {
        top: 10px;
        opacity: 1;
    }
}

.header-fixed .nav-area {
    box-shadow: rgba(171, 247, 127, 0.35) 0px 5px 15px;
    background: var(--secondery-black);
}

/*======= mobile nav style ======== */

#mobileNav {
    background: var(--secondery-black);
}

#mobileNav .offcanvas-body {
    display: flex;
    flex-direction: column;
}

.offcanvas-body .nav-link {
    color: #fff;
    font-weight: 500;
}

.offcanvas-title img {
    max-width: 100px;
}

.offcanvas-body .nav-actions {
    display: flex;
}

.nav-btn-close {
    background: transparent;
    border: none;
    margin-left: auto;
}

/* hero area style start hare  */

.hero-area {
    padding-top: 77px;
}

.hero-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.section-badge {
    display: flex;
    padding: 6px 23px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: 1px solid rgba(135, 249, 80, 0.52);
    background: linear-gradient(98deg, rgba(255, 255, 255, 0.07) -4.73%, rgba(255, 255, 255, 0.04) 52.89%);
    backdrop-filter: blur(31.25px);
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 187.5%;
}

.hero-wrapper h1 {
    text-align: center;
    font-size: 80px;
    font-style: normal;
    font-weight: 500;
    line-height: 103.75%;
    letter-spacing: -3.2px;
    background: var(--Linear, linear-gradient(0deg, #FFF 0%, rgba(255, 255, 255, 0.40) 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 983px;
}

.hero-wrapper p {
    color: rgba(255, 255, 255, 0.61);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 144.688%;
    margin-top: 10px;
}

.action-btn.btn-fill {
    background: #43E50B;
    box-shadow: 0px 5px 12px 0px #98FF75 inset;
    color: #000;
}

.nav-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 13px;
    border-radius: 46px;
    border: 1px solid #303030;
    background: rgba(108, 108, 108, 0.10);
    backdrop-filter: blur(24.649999618530273px);
    padding-left: 39px;
}

.top-ractangle img {
    width: 100%;
    max-height: 261px;
    object-fit: cover;
}

.top-area::after {
    content: '';
    display: block;
    width: 795px;
    height: 368px;
    border-radius: 795px;
    opacity: 0.5;
    background: rgba(135, 249, 80, 0.08);
    filter: blur(50px);
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bottom-ractangle {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
}

.bottom-ractangle img {
    width: 100%;
    max-height: 414px;
    object-fit: cover;
}

.hero-action-btn a::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 70px;
    height: 12px;
    background: #FFF;
    filter: blur(7px);
    border-radius: 30px;
    opacity: 0.6;
}

/*====== offer area style start hare ====== */

.offer-area {
    padding-top: 150px;
    overflow: hidden;
    padding-bottom: 200px;
    position: relative;
    z-index: 2;
}

.section-top .section-title {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.section-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-bottom: 80px;
}

.section-top h1 {
    text-align: center;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 121.1%;
    letter-spacing: -1.26px;
    max-width: 623px;
    background: var(--Linear, linear-gradient(0deg, #FFF 0%, rgba(255, 255, 255, 0.40) 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-top p {
    color: rgba(255, 255, 255, 0.61);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 144.688%;
}

.offer-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(63, 63, 63, 0.48);
    backdrop-filter: blur(22.069772720336914px);
    border-radius: 15px;
    padding-left: 30px;
    padding-top: 30px;
}

.offer-content {
    display: flex;
    flex-direction: column;
    max-width: 298px;
    gap: 21px;
}

.offer-content h4 {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 116.667%;
}

.offer-content p {
    color: rgba(255, 255, 255, 0.60);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 144.688%;
}

.offer-layout-gap {
    gap: 23px 0;
}

.offer-card {
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-height: 100%;
}

.offer-card.pe30 {
    padding-right: 30px;
}

.offer-wrapper {
    position: relative;
    z-index: 2;
}

.offer-wrapper::before {
    content: '';
    display: block;
    width: 899px;
    height: 492px;
    border-radius: 899px;
    opacity: 0.5;
    background: rgba(255, 255, 255, 0.06);
    filter: blur(50px);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.offer-ractangle {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
}

.offer-ractangle img {
    width: 100%;
    max-height: 265px;
    object-fit: cover;
    object-position: center;
}

/* offer area end hare  */

/* expect area style start hare  */

.expect-area {
    padding-top: 150px;
}

.expect-wrapper {
    padding-top: 20px;
}

.expect-left-card {
    display: flex;
    flex-direction: column;
}

.single-expect-items {
    padding: 24px;
    display: flex;
    gap: 24px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    border-left: 2px solid transparent;
}

.expect-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.expect-content h4 {
    background: linear-gradient(272deg, #000 -14.22%, #EDEDF2 50.45%, #CACACA 116.9%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
}

.expect-content p {
    color: #929292;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.single-expect-items.active::before {
    content: '';
    display: block;
    width: 134px;
    height: 134px;
    position: absolute;
    left: -67px;
    top: 1px;
    background: radial-gradient(23.51% 23.51% at 50% 50%, #FFF 0%, rgba(255, 255, 255, 0.00) 100%), linear-gradient(56deg, rgba(135, 249, 80, 0.00) -32.87%, #87F950 48.17%, rgba(60, 66, 135, 0.98) 138.11%), #87F950;
    opacity: 0.16;
    filter: blur(20px);
}

.single-expect-items.active {
    border-color: var(--primery-green);
}

.expect-right-card {
    border-radius: 16px;
    border: 1.148px solid rgba(135, 249, 80, 0.51);
    background: linear-gradient(180deg, rgba(43, 43, 43, 0.08) 0%, rgba(32, 32, 32, 0.00) 100%);
    backdrop-filter: blur(4.591224193572998px);
    padding-top: 42px;
    padding-left: 30px;
    padding-bottom: 102px;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 20px;
}

.expect-right-card::before {
    content: '';
    clear: both;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, rgba(135, 249, 80, 0.00) 0%, rgba(135, 249, 80, 0.07) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
}

/*========= expect area style end hare ========= */

/*===== our feature area style start hare ======= */

.our-features-area {
    padding-top: 150px;
}

.single-feature-card {
    border-radius: 20px;
    border: 1px solid rgba(63, 63, 63, 0.48);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(22.069772720336914px);
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.feautures-content {
    display: flex;
    flex-direction: column;
    gap: 21px;
    max-width: 360px;
}

.feature-card-one .feautures-content {
    padding-left: 32px;
    padding-top: 52px;
}

.feautures-content h4 {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 116.667%;
    text-transform: capitalize;
}

.feautures-content p {
    color: #CFD1D0;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 137.143%;
}

.single-feature-card.feature-card-two {
    display: flex;
    padding: 42px 17.351px 15px 25px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 43.719px;
}

.feature-card-three {
    display: f;
}

.single-feature-card.feature-card-three {
    display: flex;
    flex-direction: column;
    padding-top: 42px;
    gap: 42px;
}

.feature-card-three .feautures-content {
    padding-inline: 30px;
}

.feature-card-three .feauture-img img {
    width: 100%;
}

.our-features-wrapper .row {
    gap: 24px 0;
}

.feature-card-five .feautures-content {
    padding-top: 26px;
    padding-left: 21px;
    padding-right: 31px;
}

.single-feature-card.feature-card-five {
    display: flex;
    flex-direction: column;
}

.feature-card-one .feauture-img img {
    width: 100%;
}

/*======= our feautres area style end hare ====== */

/*======== pricing area style start hare ======= */

.pricing-area {
    padding-top: 150px;
}

.pricing-top h1 {
    max-width: 644px;
    margin-top: 34px;
}

.pricing-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 40px;
    flex-direction: column;
}

.pricing-wrapper .pricing-type {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.pricing-type .free-trial {
    position: absolute;
    top: -80px;
    left: -51px;
}

.pricing-type .switch-button input[type="checkbox"] {
    background: #1B2220;
    border: 1px solid #50932F;
}

.pricing-type p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.pricing-list-area {
    padding-top: 45px;
}

.single-price-card {
    display: flex;
    padding: 29.527px;
    flex-direction: column;
    gap: 29.527px;
    border-radius: 22.145px;
    border: 0.923px solid rgba(255, 255, 255, 0.20);
    background: rgba(135, 249, 80, 0.08);
    min-height: 100%;
}

.price-block h4 {
    background: radial-gradient(558.79% 160.96% at 36.64% 30.17%, #FFF 0%, #B6B6B6 87.53%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.42px;
    display: flex;
    align-items: end;
    gap: 5px;
}

.price-block h4 span {
    font-size: 66px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -1.98px;
    background: radial-gradient(558.79% 160.96% at 36.64% 30.17%, #FFF 0%, #B6B6B6 87.53%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: -10px;
}

.single-price-card .pricing-info {
    display: flex;
    flex-direction: column;
    gap: 7.38px;
}

.pricing-info h4 {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    background: radial-gradient(558.79% 160.96% at 36.64% 30.17%, #FFF 0%, #B6B6B6 87.53%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-info p {
    color: rgba(255, 255, 255, 0.80);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.plan-features ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 7.38px;
}

.plan-features li span {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.48px;
}

.pricing-list-area .row {
    justify-content: center;
    gap: 30px 0;
}

/*========= pricing area style end hare ======= */

/*========= faqs area style start hare ======== */

.faqs-area {
    margin-top: 150px;
    background: url(images/faqs-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 100px;
}

.faqs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.single-faqs-items {
    display: flex;
    flex-direction: column;
    padding: 18px 17px;
    padding-left: 39px;
    gap: 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.00);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.10) 100%);
    backdrop-filter: blur(39.849998474121094px);
}

.faqs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faqs-header h4 {
    color: rgba(255, 255, 255, 0.80);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    flex: 1;
}

.faqs-header .icons {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
}

.faqs-header .icons {
    transition: 0.3s;
}

.faqs-header .icons.active {
    transform: rotate(180deg);
}

/*========== faqs area end hare ========= */

/*===== get started area style start hare ======= */

.get-started-area {
    border-top: 1px solid rgba(135, 249, 80, 0.00);
    border-bottom: 1px solid rgba(135, 249, 80, 0.00);
    background: url(images/get-started-bg.png) no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.get-started-wrapper {
    min-height: 515px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
    max-width: 660px;
    margin-inline: auto;
}

.get-started-wrapper h2 {
    color: #FFF;
    text-align: center;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 121.1%;
    letter-spacing: -1.26px;
}

.get-started-wrapper p {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 121.1%;
    letter-spacing: -0.48px;
}

.get-started-btn a {
    padding: 8px 24px;
    border-radius: 12px;
    border: 1px solid #87F950;
    background: #87F950;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.started-action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
}

.join-discord-btn a {
    padding: 8px 24px;
    border-radius: 12px;
    border: 1px solid #FFF;
    background: var(--radial-blur, radial-gradient(111.42% 170.43% at 83.26% 142.62%, rgba(255, 255, 255, 0.00) 79.1%, rgba(255, 255, 255, 0.10) 100%), rgba(0, 0, 0, 0.35));
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.started-action-btn a:hover {
    box-shadow: rgba(169, 247, 139, 0.5) 0px 5px 20px, rgba(169, 247, 139, 0.5) 0px 0px 36px, rgba(169, 247, 139, 0.5) 0px 14px 100px;
}

/*======= footer style start hare ========= */

.footer-area {
    padding-top: 73px;
    padding-bottom: 56px;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
}

.footer-card-left {
    max-width: 386px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-card-left p {
    color: rgba(255, 255, 255, 0.63);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 187.5%;
}

.footer-card-right {
    max-width: 478px;
    display: flex;
    gap: 70px;
}

.footer-block {
    display: flex;
    flex-direction: column;
    gap: 37px;
}

.footer-social {
    gap: 25px;
}

.footer-social ul {
    display: flex;
    align-items: center;
    gap: 21px;
}

.footer-block h4 {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 166.667%;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.63);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 306.25%;
}


/*==================================
 ai chatbot style start hare 
=================================== */

.chatbot-page .hero-area {
	padding-block: 150px;
}

.chatbot-feature {
    padding-top: 100px;
}

.chatbot-feature .section-top h1 {
    max-width: fit-content;
}

.single-chatbox-feature {
    display: flex;
    padding: 22px;
    flex-direction: column;
    gap: 40px;
    border-radius: 20px;
    border: 1px solid rgba(63, 63, 63, 0.48);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(22.069772720336914px);
}
.single-chatbox-feature .feature-details {
    display: flex;
    flex-direction: column;
    gap: 21px;
}
.feature-details h2 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}
.feature-details p {
    color: #CFD1D0;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 137.5%;
}

.single-chatbox-feature.top-gap {
    margin-top: 130px;
}

.chatbot-feature-wrapper .row {
    gap: 20px 0;
}

/*========= chatbot pricing area ========= */

.chatbot-pricing-area {
    padding-top: 140px;
    padding-bottom: 250px;
}


.chatbox-pricing-left .section-top {
    padding-bottom: 0;
    gap: 30px;
    align-items: start;
}
.chatbox-pricing-left .section-top p {
    max-width: 425px;
}

.chatbot-price-right .single-price-card {
    max-width: 370px;
    margin-inline: auto;
}

.chatbot-get-started .get-started-wrapper {
    max-width: fit-content;
}



/*======================================
 kick follower page style start hare 
====================================== */

.kick-hero .hero-wrapper {
    position: relative;
    max-width: 700px;
    align-items: start;
}

.kick-hero-wp {
    padding-left: calc((100vw - 1155px) / 2 );
    display: flex;
    gap: 44px;
    align-items: center;
}

.kick-hero .hero-wrapper h1 {
    text-align: left;
}
.kick-hero .hero-images img {
    width: 831px;
    height: 582px;
    object-fit: cover;
    object-position: left;
}

.kick-offer-wp {
    display: flex;
    align-items: stretch;
    gap: 55px;
}

.single-kick-offer {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(63, 63, 63, 0.48);
    backdrop-filter: blur(22.069772720336914px);
    border-radius: 15px;
}

.kick-offer-content {
    display: flex;
    flex-direction: column;
    gap: 21px;
}
.kick-offer-content h4 {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 116.667%; 
}
.kick-offer-content p {
    color: #CFD1D0;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 144.688%;
}
.kick-offer-one .kick-offer-content {
    padding-top: 42px;
    padding-left: 30px;
    padding-bottom: 42px;
    padding-right: 21px;
}

.kick-offer-two .kick-offer-content {
    padding-top: 35px;
    padding-left: 30px;
    padding-bottom: 42px;
    padding-right: 21px;
}
.kick-offer-two {
	padding-top: 20px;
}

.kick-feature-1 {
    padding: 52px 33px;
    padding-bottom: 0;
}

.kick-features .single-feature-card {
    gap: 20px;
}

.single-feature-card.kick-feature-3 {
	padding-top: 0;
    padding-bottom: 30px;
}

.kick-feature-4 .feautures-content {
    padding-top: 26px;
    padding-inline: 22px;
}

.single-feature-card.kick-feature-6 {
    padding-block: 26px;
    padding-left: 36px;
}

.kick-feature-6 .feautures-content {
	gap: 18px;
	max-width: 260px;
}

/*========= benefit area style ======= */

.kick-benefit {
    padding-top: 100px;
    padding-bottom: 140px;
}

.kick-benefit-left .section-top {
	align-items: start;
	gap: 16px;
	padding-bottom: 0;
    max-width: 461px;
}
.kick-benefit-left .section-top h1 {
	text-align: left;
}
.kick-benefit-left .section-top p {
	text-align: left;
}

.kick-benefit-right {
    display: flex;
    gap: 20px;
}

.single-benefit-card {
    padding: 36px 20px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-height: 261px;
}
.single-benefit-card h4 {
    color: #CFD1D0;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.single-benefit-card h4 span {
    font-weight: 600;
    color: #fff;
}






/*======== Dashbaord new style ======== */

.dashboard-actions-btn.active {
	border-color: rgba(255, 255, 255, 0.60);
}


.start-setting-pop .modal-content {
    border-radius: 20px;
    background: #262626;
    gap: 30px;
    padding: 30px;
}

.start-setting-pop .modal-dialog {
	max-width: 600px;
}

.popup-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    border: none;
    padding: 0;
}

.pop-btn-close {
    background: transparent;
    border: none;
}

.popup-title {
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.popup-title h4 {
    color: #F3FFEF;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.popup-title p {
    color: #CCC;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.auto-start-setting-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.start-setting-form-footer {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chatbot-left-action {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.chatbot-right-action {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.chatbot-right-action button {
    background: #3C3F41;
    color: #fff;
}

.select-version {
    gap: 12px;
}
.select-version select {
    padding: 6px 11px;
    border-radius: 9px;
    background: #282A2C;
    color: #fff;
    border: none;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.32px;
}

.mode-items .dynamic-viwer {
	min-width: 185px;
	justify-content: space-between;
}

.select-version label {
    color: rgba(255, 255, 255, 0.80);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.14px;
}

.ai-chat-form-b {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ai-chat-form-b  p {
    color: #53FC18;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.14px;
}


.view-right-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50%;
}

.important-instruction {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.important-instruction h4 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.2px;
}

.important-instruction ul {
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    list-style: disc;
    padding-left: 20px;
}
.important-instruction ul li {
    color: rgba(255, 255, 255, 0.60);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 141.667%;
    letter-spacing: -0.12px;
}


.page-title {
	max-width: 1300px;
	margin-inline: auto;
}

.auto-start-btn {
    max-width: 1300px;
    margin-inline: auto;
    padding-top: 20px;
}

.module-card {
	flex: 1;
	border: 1px solid rgba(182, 187, 255, 0.20);
	backdrop-filter: blur(6.5px);
	background: rgba(0, 0, 0, .2);
	padding-top: 21px;
	padding-left: 22px;
	padding-right: 24px;
	padding-bottom: 29px;
	border-radius: 25px;
	overflow: hidden;
}

.kick-aio-plan {
    display: none;
}

.pricing-list-area.aio-active .kick-aio-plan {
    display: flex;
}
.pricing-list-area.aio-active .kick-followers-plan {
    display: none;
}

.highlight-outline {
  border: 1px solid #00ff00;
  border-radius: 22.145px;
  background: radial-gradient(
      ellipse at right top,
      #02f90238 0%,
      rgba(135, 249, 80, 0.08) 40%,
      rgba(135, 249, 80, 0.08) 100%
  );
  animation: floatyMove 6s ease-in-out infinite;
}

@keyframes floatyMove {
  0% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(2px, -4px);
  }
  50% {
    transform: translate(-3px, 3px);
  }
  75% {
    transform: translate(2px, 2px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}

body,
*, 
a, 
button, 
input, 
textarea, 
select {
  cursor: none !important;
}

#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  pointer-events: none;
  border: 2px solid #00ff00;
  border-radius: 50%;
  box-sizing: border-box;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px #00ff00;
  background: radial-gradient(circle, rgba(0,255,0,0.15) 40%, transparent 80%);
  transition:
    transform 0.08s ease-out,
    width 0.2s ease,
    height 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

#custom-cursor.hover {
  width: 40px;
  height: 40px;
  background: rgba(0, 255, 0, 0.2);
  border-color: #00ff00;
  box-shadow: 0 0 15px #00ff00;
}

@media (hover: none) and (pointer: coarse) {
  #custom-cursor {
    display: none;
  }

  body,
  *, 
  a, 
  button, 
  input, 
  textarea, 
  select {
    cursor: auto !important;
  }
}

@keyframes liquidShimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

#hero-liquid {
  text-align: center;
  font-size: 80px;
  font-style: normal;
  font-weight: 500;
  line-height: 103.75%;
  letter-spacing: -3.2px;
  background: linear-gradient(
    270deg,
    #ffffff,
    rgba(255, 255, 255, 0.4),
    #ffffff,
    rgba(255, 255, 255, 0.4)
  );
  background-size: 400% 400%;
  animation: liquidShimmer 5s ease-in-out infinite;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  max-width: 983px;
  margin: 0 auto;
}

#pricing-float-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #43E50B, #23C000);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px #43E50B;
  transition: all 0.3s ease;
  z-index: 9999;
}

#pricing-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px #43E50B;
}

@media (hover: none) and (pointer: coarse) {
  #pricing-float-btn {
    display: none;
  }
}