*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
a{
	color: #000;
	text-decoration: none;
}
img{
    max-width: 100%;
    display:block;
}
body{
font-family: Inter, sans-serif;
font-size: 16px;
line-height: 26px;
font-weight: 400;
color: #000;
background: #fff;
margin: 0;
overflow-x: hidden;
}
.container{
max-width: 1400px;
padding: 0 20px;
margin: 0 auto;
}

.hidden-desktop{
	display: none;
}
.timer{
	padding: 120px 0;
}
.timer-row{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.timer-img-col{
	width: 42%;
}
.product-nav{
	display: flex;
	justify-content: space-between;
	position: absolute;
	width: auto;
	top: 0;
	bottom: 0;
	left: 15px;
	right: 15px;
	margin-top: auto;
	margin-bottom: auto;
	z-index: 2;
	height: 35px;
}
.product-button-prev,
.product-button-next{
	display: flex;
	width: 35px;
	height: 35px;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
	background: #FFF;
	cursor: pointer;
}
.timer-content-col{
	width: 51%;
}
.timer-top-info{
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.timer-rate{
	display: flex;
	align-items: center;
	gap: 10px;
}
.timer-content-col h2{
	font-size: 52px;
	font-style: normal;
	font-weight: 700;
	line-height: 120%;
}
.timer-price-row{
	margin: 0 0 30px;
	display: flex;
	gap: 20px;
}
.timer-price{
	color: #42A4C8;
	font-size: 24px;
	font-weight: 500;
	line-height: 24px; 
}
.timer-price.old{
	color: rgba(66, 164, 200, 0.50);
}
.desc{
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
	margin: 0 0 40px;
}

.timer-action{
	display: flex;
	align-items: flex-start;
	gap: 20px;
}
 .quantity-container {
 	flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 100px;
	border: 1px solid rgba(0, 0, 0, 0.20);
	padding: 15px 25px;
	width: 141px;
}
.quantity-container button{
	background: transparent;
	padding: 0;
	border: 0;
}
.quantity-container input {
    width: auto;
    height: 30px;
    text-align: center;
    font-size: 16px;
    border: 0;
    background: transparent;
    font-weight: 500;
    width: 100%;
}

.btn-primary{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 62px;
	width: 100%;
	font-weight: 700;
	line-height: 16px; /* 100% */
	text-transform: uppercase;
	color: #FFF;
	border-radius: 100px;
	background: #42A4C8;
}
.timer-btn-col{
	width: 100%;
}
.timer-btn-col p{
	font-size: 20px;
	line-height: 120%;
	margin: 24px 0;
	text-align: center;
}
.countdown{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
}
.ct-item{
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: center;

}
.ct-item span{
	font-size: 34px;
	font-weight: 500;
	line-height: 34px;
}
.ct-item span.ct-title{
	font-size: 18px;
	line-height: 18px;
	font-weight: 400;
}
.ct-divider{
	width: 1px;
	height: 42px;
	background: #000;
}

@media (max-width: 1280px){
.countdown{
	gap: 15px;
}
.ct-item span{
	font-size: 24px;
}
.ct-item span.ct-title{
	font-size: 16px;
}
}


@media (max-width: 992px){
.hidden-desktop{
	display: block;
}
.hidden-mobile{
	display: none;
}
.timer-row{
	flex-direction: column;
	gap: 40px;
}
.timer-img-col,
.timer-content-col{
	width: 100%;
}
.timer-info-bottom{
	text-align: center;
	margin: 24px 0 0;
}
}

@media (max-width: 768px){
}

@media (max-width: 479px){
.timer{
	padding: 50px 0;
}
.timer-content-col h2{
	font-size: 32px;
}
}