.custom-slider-product .productImage 
{
	cursor: pointer;
	border-radius: 10px;
	overflow: hidden;
}

.codex-progress-wrapper .progressBG
{
	width:100%;
    background:#f1f1f1;
    height:10px;
    border-radius:10px;
    overflow:hidden;
}

.group-buy-countdown
{
	display: flex;
	justify-content: center;
	align-items: center;
}

.group-buy-countdown h3
{
	font-size: 16px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
}

.group-buy-countdown h3 span
{
	font-size: 34px;
	background: #f1f1f1;
	padding: 10px 40px;
	border-radius: 10px;
	color: #015DDE;
	text-transform: uppercase;
}

.close-offer
{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	font-size: 18px;
	color: red;
	user-select: none;
	pointer-events: none;
	text-align: center;
}

.already_ordered
{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	font-size: 18px;
	color: green;
	user-select: none;
	pointer-events: none;
	text-transform: capitalize;
	text-align: center;
}

.already_sold
{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	font-size: 18px;
	color: green;
	user-select: none;
	pointer-events: none;
	text-transform: capitalize;
	text-align: center;
}


.group-buy-box
{
    width: 100%;
}


.codex-qty-box
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #F7FAFD;
    border: 1px solid rgb(228, 228, 228);
    padding: 6px;
    border-radius: 30px;
}

.codex-qty-box button
{

    color: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    background: #015dde;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
    outline: none;
    height: 35px;
    width: 35px;
}

.codex-qty-box button:focus
{
	background: #015dde;
}

.codex-qty-box button:hover
{
    background: #015dde;
}

.codex-qty-box input
{
    width: 100%;
    height: 20px;
    text-align: center;
    border: none !important;
    background: transparent;
    font-size: 18px;
    font-weight: bold;
    outline: none !important;
    font-weight: 400;
}

.codex-qty-box input[type="number"]::-webkit-outer-spin-button,
.codex-qty-box input[type="number"]::-webkit-inner-spin-button 
{
    -webkit-appearance: none;
    margin: 0;
}

.codex-qty-box input[type="number"] 
{
    -moz-appearance: textfield;
    appearance: textfield;
}


.gb-btn
{
    width: 100% !important;
    margin-top: 16px;
    padding: 16px !important;
    border: none !important;
    border-radius: 12px !important;
    background: #015dde !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: bold !important;
    cursor: pointer !important;
}

.gb-btn:hover
{
    box-shadow: 0 8px 20px rgba(1,93,222,0.3);
}

.codex-max-limit
{
    color: #101010;
    user-select: none;
	pointer-events: none;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	margin: 10px 0px;
	text-transform: capitalize;
	font-family: inter;
	font-weight: 500;
}

#codex-offer-countdown
{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
}


#codex-offer-countdown .countdown-item
{
	background: #015DDE;
	padding: 10px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 70px;
}

#codex-offer-countdown .countdown-item .countdown-number
{
	font-family: inter;
	font-size: 22px;
	font-weight: 700;
	color: #FFF;
	text-transform: uppercase;
}

#codex-offer-countdown .countdown-item .countdown-label
{
	font-family: inter;
	font-size: 10px;
	font-weight: 400;
	color: #FFF;
}