/* =========================
   TASKIX.ONLINE CUSTOM CSS
   Theme: #14B8A6 + #0F172A
========================= */

.base-color{
  color:#14B8A6 !important;
}

/* Copy Animation */
.copyInput{
	display:inline-block;
	line-height:50px;
	position:absolute;
	top:0;
	right:0;
	width:40px;
	text-align:center;
	font-size:14px;
	cursor:pointer;
	transition:all .3s;
}

.copied::after{
	position:absolute;
	top:8px;
	right:12%;
	width:100px;
	display:block;
	content:"COPIED";
	font-size:1em;
	padding:5px;
	color:#fff;
	background-color:#14B8A6;
	border-radius:5px;
	opacity:0;
	will-change:opacity,transform;
	animation:showcopied 1.5s ease;
	box-shadow:0 4px 12px rgba(20,184,166,.35);
}

@keyframes showcopied{
	0%{
		opacity:0;
		transform:translateX(100%);
	}
	50%{
		opacity:.7;
		transform:translateX(40%);
	}
	70%{
		opacity:1;
		transform:translateX(0);
	}
	100%{
		opacity:0;
	}
}

/* Cookies Card */

.cookies-card{
	width:520px;
	padding:30px;
	color:#334155;
	position:fixed;
	bottom:15px;
	left:15px;
	z-index:999999;
	transition:all .5s;
	background:#ffffff;
	border-radius:12px;
	border:1px solid rgba(20,184,166,.15);
	box-shadow:0 10px 30px rgba(15,23,42,.15);
}

.cookies-card.hide{
	bottom:-500px !important;
}

.radius--10px{
	border-radius:10px;
}

.cookies-card__icon{
	width:55px;
	height:55px;
	border-radius:50%;
	background:#14B8A6;
	color:#fff;
	font-size:32px;
	display:inline-flex;
	justify-content:center;
	align-items:center;
	box-shadow:0 4px 12px rgba(20,184,166,.35);
}

.cookies-card__content{
	margin-bottom:0;
}

.cookies-btn{
	background:#14B8A6;
	color:#fff;
	text-decoration:none;
	padding:10px 35px;
	margin:3px 5px;
	display:inline-block;
	border-radius:999px;
	font-weight:600;
	transition:.3s ease;
}

.cookies-btn:hover{
	background:#0f172a;
	color:#fff;
	transform:translateY(-2px);
}

/* Mobile Cookie */

@media(max-width:767px){
	.cookies-card{
		width:100%;
		left:0;
		bottom:0;
		font-size:14px;
		padding:15px;
		border-radius:15px 15px 0 0;
	}
}

/* Password Validation Popup */

.hover-input-popup{
	position:relative;
}

.input-popup{
	display:none;
}

.hover-input-popup .input-popup{
	display:block;
	position:absolute;
	bottom:130%;
	left:50%;
	width:280px;
	background:#0F172A;
	color:#fff;
	padding:20px;
	border-radius:10px;
	transform:translateX(-50%);
	transition:all .3s;
	box-shadow:0 10px 25px rgba(15,23,42,.35);
}

.input-popup::after{
	position:absolute;
	content:'';
	bottom:-19px;
	left:50%;
	margin-left:-5px;
	border-width:10px;
	border-style:solid;
	border-color:transparent transparent #0F172A transparent;
	transform:rotate(180deg);
}

.input-popup p{
	padding-left:20px;
	position:relative;
}

.input-popup p::before{
	position:absolute;
	font-family:'Line Awesome Free';
	font-weight:900;
	left:0;
	top:4px;
	line-height:1;
	font-size:18px;
}

.input-popup p.error{
	text-decoration:line-through;
}

.input-popup p.error::before{
	content:"\f057";
	color:#EF4444;
}

.input-popup p.success::before{
	content:"\f058";
	color:#22C55E;
}

/* Form */

.form-group{
	margin-bottom:15px;
}

.form-check-input{
	padding:0;
}

.c-pointer{
	cursor:pointer;
}

button.close{
	background-color:transparent;
}

/* Responsive Filter */

.show-filter{
	display:none;
}

@media(max-width:767px){
	.responsive-filter-card{
		display:none;
		transition:none;
	}
	.show-filter{
		display:block;
	}
}

/* =========================
   TASKIX EXTRA IMPROVEMENTS
========================= */

/* Logo */

.logo img,
.logo__is{
	filter:drop-shadow(0 3px 8px rgba(15,23,42,.15));
}

/* Cards */

.card{
	border:none;
	border-radius:16px;
	box-shadow:0 4px 20px rgba(15,23,42,.08);
	transition:.3s ease;
}

.card:hover{
	transform:translateY(-2px);
}

/* Buttons */

.btn{
	transition:.3s ease;
	font-weight:600;
}

.btn:hover{
	transform:translateY(-2px);
}

/* Tables */

.table{
	border-radius:12px;
	overflow:hidden;
}

/* Smooth Scroll */

html{
	scroll-behavior:smooth;
}

/* Selection */

::selection{
	background:#14B8A6;
	color:#fff;
}

/* Scrollbar */

::-webkit-scrollbar{
	width:8px;
}

::-webkit-scrollbar-track{
	background:#f1f5f9;
}

::-webkit-scrollbar-thumb{
	background:#14B8A6;
	border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
	background:#0f172a;
}

.counter-box{
    background:#fff;
    border-radius:15px;
    padding:25px 15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.counter-box:hover{
    transform:translateY(-3px);
}

.counter-box h3{
    font-size:32px;
    font-weight:700;
    color:#14B8A6;
    margin-bottom:5px;
}

.counter-box span{
    color:#64748B;
    font-size:14px;
    font-weight:600;
}

/* ===================================
   TASKIX LIVE PAYOUTS
=================================== */

.payment-proof-section{
    background:#07111d;
    padding:50px 0;
    overflow:hidden;
}

.proof-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(20,184,166,.15);
    color:#14B8A6;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.proof-title{
    color:#ffffff;
    font-size:42px;
    font-weight:700;
    margin-bottom:35px;
}

.proof-columns{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
}

.proof-column{
    height:220px; /* sirf 3 rows nazar aayengi */
    overflow:hidden;
    position:relative;
}

.proof-track{
    animation:scrollUp 45s linear infinite;
}

.proof-column:nth-child(2) .proof-track{
    animation-duration:50s;
}

.proof-column:nth-child(3) .proof-track{
    animation-duration:55s;
}

.proof-column:nth-child(4) .proof-track{
    animation-duration:60s;
}

@keyframes scrollUp{
    0%{
        transform:translateY(0);
    }

    100%{
        transform:translateY(-50%);
    }
}

.proof-card{
    background:#0d1724;
    border:1px solid rgba(20,184,166,.25);
    border-radius:10px;
    padding:8px 12px;
    margin-bottom:8px;
    transition:.3s;
}

.proof-card:hover{
    border-color:#14B8A6;
    box-shadow:0 0 15px rgba(20,184,166,.25);
}

.proof-user{
    color:#ffffff;
    font-size:13px;
    font-weight:600;
    line-height:1.3;
}

.proof-method{
    color:#9fb0c0;
    font-size:12px;
    margin-top:3px;
    line-height:1.3;
}

.proof-amount{
    color:#14B8A6;
    font-size:18px;
    font-weight:700;
    margin-top:3px;
    line-height:1;
}

/* Tablet */

@media(max-width:991px){

    .proof-columns{
        grid-template-columns:repeat(2,1fr);
    }

    .proof-column{
        height:220px;
    }
}

/* Mobile */

@media(max-width:575px){

    .proof-columns{
        display:block;
    }

    .proof-column{
        display:none;
    }

    .proof-column:first-child{
        display:block;
        width:100%;
        height:200px;
    }

    .proof-title{
        font-size:30px;
    }

}