.cls_label_for_dropdown {
	display: block;
	margin: 0 0 4px 6px;
	font-size: 12px;
	color: #565656;
}

.custom-dropdown {
	width: 100%;
	max-width: 400px;
	position: relative;
	user-select: none;
}

.dropdown-selected {
	background: #fff;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 6px;
	cursor: pointer;
	font-size: 12px;
	color: #676767;
}

.dropdown-selected::after {
	content: '▼';
	float: right;
	margin-left: 10px;
	color: #676767;
}

.dropdown-options {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #ccc;
	border-top: none;
	max-height: 220px;
	overflow-y: auto;
	z-index: 999;
}

.dropdown-option {
	padding: 12px 16px;
	font-size: 12px;
	cursor: pointer;
	color: #676767;
}

.dropdown-option:hover {
	background: #3498db;
	color: #fff;
}

.cls_textbox_v2{
	width: 100%;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 12px;
	box-sizing: border-box;
	color: #676767;
}

/* Mobile Adjustments 
@media (max-width: 480px) {
	.dropdown-selected,
	.dropdown-option {
		font-size: 14px;
		padding: 14px 15px;
	}

	label {
		font-size: 15px;
	}
}
*/