:root{
	--opt-color: #4caf50;
}

.custom-select {
	position: relative;
	font-size: 15px;
	color: #191919;
}

.selected-option {
	border: 1px solid #454545;
	border-radius: 4px;
	padding: 11px 0px 11px 20px;
	background: #fff;
	cursor: pointer;
	align-items: center;
	width: calc(100% - 19px);
	display: flex;
}

.selected-option img {
	width: 24px;
	height: 24px;
	margin-right: 8px;
}

.selected-option span::after {
	content: "";
	width: 12px;
	height: 12px;
	float: right;
	background: url(../images/default/arrow/bg_next-arrow-on.svg) no-repeat;
	background-size: 11px 13px;
	margin-top: 4px;
	position: absolute;
	right: 10px;
}

.selected-option.open span::after{
	transform: rotate(182deg);
}

.selected-option.color::after{
	content: '';
	width: 15px;
	height: 15px;
	background-color: var(--opt-color, #fff);
	display: inline-flex;
	border-radius: 100%;
	margin-left: 6px;
	border: 1px solid #fff;
	outline: 1px solid #e6e7ea;
}

.custom-select .options {
	position: absolute;
	width: 100%;
	max-height: 360px;
	overflow-y: auto;
	border: 1px solid #454545;
	background: #fff;
	display: none;
	z-index: 100;
	top: 47px;
	border-radius: 4px;
}

.custom-select .option {
	padding: 13px 20px;
	display: grid;
	cursor: pointer;
	width: calc(100% - 40px);
	font-size: 14px;
	font-weight: 500;
}

.custom-select .option.color{
	display: inline-flex;
}

.custom-select .option > span{
	/* align-items: center; */
	/* display: flex; */
}

.custom-select .option.selected img{
	border: 1px solid #454545;
}

.custom-select .option:hover {
	background: #F4F4F4;
}

.custom-select .option img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 10px 0;
}

.custom-select .option img + span{
	margin-bottom: 7px;
}

.custom-select .option.selected {
	background-color: #F4F4F4;
}

.custom-select .option.color::after {
	content:'';
	width: 15px;
	height: 15px;
	background-color: var(--opt-color, #ccc);
	display: inline-flex;
	border-radius: 100%;
	border: 1px solid #fff;
	outline: 1px solid #e6e7ea;
	margin-left: 7px;
	margin-top: 1px;
}

.custom-select .options.icon .option{
	display: block;
	position: relative;
}

.custom-select .options.icon .option span{
	line-height: 50px;
}

.custom-select .options.icon .option img{
	width: auto;
	position: absolute;
	right: 20px;
	top: 16px;
	border: none;
	margin: 0px;
}

.custom-select .pannel {
	width:100%;
	height:100%;
}