.timeselector {
	padding: 2px;
	line-height: 100%;
	color: #333;
	border: solid 1px #f1f1f1;
	border-radius: 6px;
	background: #ffffff;
	position: absolute;
	overflow: hidden;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.10);
}

.timeselector-item,
.timeselector-separator {
	float: left;
}

.timeselector-value,
.timeselector-button {
	padding: 2px 8px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
}
input[name=time]{
	text-transform: lowercase;
}
.timeselector-value {
	display: block;
	color: #444;
	border: solid 1px #fff;
	/* background: #eee; */
}

.timeselector-separator {
	padding: 0 2px;
	margin-top: 26%;
}

.timeselector-button {
	display: block;
	text-decoration: none;
	color: #3383bb;
	/* border: solid 1px #ccc; */
	/* background: #eee; */
}

.timeselector-button:hover {
	color: #599fcf;
	border-color: #bbb;
	background: #f8f8f8;
}

.timeselector-up {
	border-width: 1px 1px 0;
	border-radius: 4px 4px 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
}
.timeselector-up:hover {
	text-decoration: none !important;
}
.timeselector-up::after{
	content: "\F286";
	font-family: "bootstrap-icons";
	font-size: 16px;
	color: #292A69;
}
.timeselector-down {
	border-width: 0 1px 1px;
	border-radius: 0 0 4px 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
}
.timeselector-down:hover {
	text-decoration: none !important;
}
.timeselector-down::after{
	content: "\F282";
	font-family: "bootstrap-icons";
	font-size: 16px;
	color: #292A69;
}