.wrap_custom_select * {
			box-sizing: border-box;
		}

		.wrap_custom_select {
			width: 300px;

		}

		.wrap_custom_select select {
			/* display: none; */
		}

		.custom_select {
			margin: 0;
			width: 100%;
			padding: 10px;
			border: 1px solid #1414141a;
			position: relative;
			cursor: pointer;
			border-radius: 6px;
			color: #fff;
			background: #4F4F4F;
		}

		.arrow-bottom-1 {
			transform: rotate(-90deg);
			width: 15px;
			height: 15px;
		}

		.select_flex {
			display: flex;
			align-items: center;
			justify-content: space-between;
		}

		.arrow-bottom-1 path {
			fill: #BFE2FF;
		}

		.wrap_custom_option {
			position: absolute;
			left: 0;
			right: 0;
			max-height: 150px;
			overflow-y: auto;
			top: 100%;
			border: 1px solid #ccc;
			display: none;
			z-index: 999;
		}

		.custom_select.active .wrap_custom_option {
			display: block;
		}

		.wrap_custom_option>div {
			padding: 10px;
			border-bottom: 1px solid #ccc;
			cursor: pointer;
			background: #4F4F4F;
		}

		.wrap_custom_option>div:hover,
		.wrap_custom_option>div.active {
			background: #181818;
		}

		.wrap_custom_option>div:last-child {
			border-bottom: 0px solid #000;
		}