/*
@copyright Fixfin Technologies Pvt. Ltd.  
@author Suraj Kumar S Mukhia
@package Signup page enrollment timer
@version 1.0.1 - 26-12-2024
*/

.cs_countdown_timer_dv{
	z-index: 998;
}

.cs_countdown_timer_dv .countdown_hd{
	color: var(--primary);
	font-size: 28px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	line-height: 32px;
}

#cs_countdown_timer_time {
	font-size: 4em;
	white-space: nowrap;
}

#cs_countdown_timer_time div {
	display: inline-block;
}

#cs_countdown_timer_time .c-bx {
	width: 90px;
	height: 80px;
	text-align: center;
	background: var(--primary);
	margin-right: 30px;
	border-radius: 4px;
	line-height: 80px;
	color: var(--white);
	font-weight: 600;
	position: relative;
}

#cs_countdown_timer_time .c-bx::before {
	content: ":";
	position: absolute;
	right: -20px;
	color: #999;
	font-size: 3rem;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

#cs_countdown_timer_time .c-bx.lst{
	margin-right: 0;
}

#cs_countdown_timer_time .c-bx.lst::before {
	content: "";
}

#cs_countdown_timer_time div span {
	color: #000;
	display: block;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	margin-top: 5px;
	width: 90px;
	text-transform: uppercase;
}

/*Responsive code #Start*/
@media screen and (max-width: 1199px){
	#cs_countdown_timer_time .c-bx {
		width: 86px;
		height: 80px;
	}

	#cs_countdown_timer_time div span{
		width: 86px;
	}
}

@media screen and (max-width: 991px){
	#cs_countdown_timer_time .c-bx {
		width: 75px;
		height: 74px;
		line-height: 75px;
	}

	#cs_countdown_timer_time div span{
		width: 75px;
	}
}
@media only screen and (max-width: 767px) {
	#cs_countdown_timer_time {
		font-size: 40px;
		white-space: nowrap;
	}
	#cs_countdown_timer_time .c-bx {
		width: 60px;
		height: 60px;
		line-height: 60px;
	}
	#cs_countdown_timer_time div span{
		width: 60px;
	}
}	



@media screen and (max-width: 575px) {
	.c-bx {
		width: 50px;
		height: 50px;
		line-height: 50px;
	}

	#timer div span{
		width: 50px;
		font-size: 12px;
	}

	#timer{
  		font-size: 2em;
  	}
}