.select-box {
	display: flex;
	width: 100%;
	/* width: 400px; */
	flex-direction: column;
	position: relative;
}

.select-box .options-container {
	/* background: #2f3640;
    color: #f5f6fa; */
	background-color: #fff;
	box-shadow: 0 0 0 1px rgba(68, 68, 68, .11);
	max-height: 0;
	width: 100%;
	opacity: 0;
	transition: all 0.4s;
	/* border-radius: 8px; */
	overflow: hidden;

	order: 1;

	top: 110%;
	position: absolute;
	z-index: 9;
}

.selected {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.1);
	/* background: #2f3640; */
	/* border-radius: 8px; */
	/* margin-bottom: 8px; */
	color: #f5f6fa;
	position: relative;

	order: 0;
}

.selected::after {
	content: "";
	/* background: url("img/arrow-down.svg"); */
	background: url('../Images/All/arrow-down.svg');
	background-size: contain;
	background-repeat: no-repeat;

	position: absolute;
	height: 100%;
	width: 32px;
	right: unset;
	top: 4px;
	left: 10px;
	transition: all 0.4s;
}

.select-box .options-container.active {
	max-height: 240px;
	opacity: 1;
	overflow-y: scroll;
}

.select-box .options-container.active + .selected::after {
	transform: rotateX(180deg);
	top: -6px;
}

.select-box .options-container::-webkit-scrollbar {
	width: 8px;
	background: #292929;
	/* background: #0d141f; */
	border-radius: 0 8px 8px 0;
}

.select-box .options-container::-webkit-scrollbar-thumb {
	background: #525861;
	border-radius: 0 8px 8px 0;
}

.select-box .option {
	position: relative;
}

.select-box input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.select-box .option,
.selected {
	padding: 8px 24px;
	cursor: pointer;
}

.select-box .option:hover {
	/* background: #414b57; */
	background: #c19d60;
	color: #fff;
}

.select-box label {
	cursor: pointer;
}

.select-box label .Value {
	font-size: 18px;
	font-weight: 600;
}
.select-box label .Price {
	float: left;
	font-size: 18px;
	direction: ltr;
}
.selected .Price {
	float: left;
	font-size: 16px;
	margin-left: 10%;
	direction: ltr;
}
.selected .Value {
	font-size: 16px;
}



