.charlett-menu-cart {
	color: #DB3332;
    font-size: 16px;
    font-weight: 500;
	cursor: pointer;
}
.charlett-header-action {
	display: flex;
    align-items: center;
    gap: 24px;
	font-family: 'IBM Plex Mono';
}
.charlett-header-action .action-item,
.charlett-header-action .action-item a {
	font-size: 1rem;
    color: #000000;
    text-transform: uppercase;
    font-weight: 500;
	cursor: pointer;
}
.range-slider-wrapper {
	margin-top: 35px;
}
.rangeslider {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), rgba(208, 208, 208, 0.5);
    background-blend-mode: luminosity, color-burn;
    box-shadow: inset 0px -0.5px 1px rgba(255, 255, 255, 0.3), inset 0px -0.5px 1px rgba(255, 255, 255, 0.25), inset 1px 1.5px 4px rgba(0, 0, 0, 0.08), inset 1px 1.5px 4px rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    height: 12px;
}
.rangeslider span.point:first-child,
.rangeslider span.point:last-child {
	position: absolute;
    top: -25px;
    left: 0;
    font-size: 16px;
    font-weight: 500;
    font-family: 'IBM Plex Mono';
}
.rangeslider span.point:last-child {
	left: unset;
	right: -8px;
}
.rangeslider:before {
	content: "";
    width: 3px;
    height: 3px;
    background: linear-gradient(0deg, rgba(94, 94, 94, 0.13), rgba(94, 94, 94, 0.13)), rgba(255, 255, 255, 0.07);
    background-blend-mode: color-dodge, lighten;
    position: absolute;
    display: inline-block;
    top: 5px;
    left: 5px;
    z-index: 999;
    border-radius: 100%;
}
.rangeslider:after {
	content: "";
    width: 3px;
    height: 3px;
    background: linear-gradient(0deg, rgba(94, 94, 94, 0.13), rgba(94, 94, 94, 0.13)), rgba(255, 255, 255, 0.07);
    background-blend-mode: color-dodge, lighten;
    position: absolute;
    display: inline-block;
    top: 4px;
    right: 5px;
    z-index: 999;
    border-radius: 100%;
}
.rangeslider .rangeslider__handle {
	background: rgb(255, 255, 255);
    border-radius: 100px;
    height: 10px;
    width: 10px;
    box-shadow: none;
    border: 0;
	top: -8px;
	position: relative;
}
.rangeslider .rangeslider__handle:before {
	content: "";
    width: 100px;
    height: 60px;
    background: #E5E5E5;
    mix-blend-mode: overlay;
    opacity: 0.4;
    filter: blur(20px);
    border-radius: 500px;
    position: absolute;
    left: calc(50% - 100px / 2);
    top: calc(50% - 60px / 2);
}
.rangeslider .rangeslider__handle:after {
	display: none;
}
.rangeslider .rangeslider__handle .current-value {
	position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    font-weight: 500;
    font-family: 'IBM Plex Mono';
	color: #fff;
	line-height: 30px;
}
.rangeslider .rangeslider__fill {
	background: transparent;
	box-shadow: none;
}
@media only screen and (max-width: 921px) {
	.charlett-header-action {
		flex-direction: column;
		align-items: flex-start;
		color: #fff;
		padding: 0 20px;
		gap: 10px;
		margin-bottom: 12px;
	}
	.charlett-header-action .action-item,
	.charlett-header-action .action-item a {
		color: #fff;
	}
	.rangeslider .rangeslider__handle {
		top: -6px;
	}
	.rangeslider .rangeslider__handle .current-value {
		line-height: 28px;
	}
}