.yearpicker-container {
	position: absolute;
	color: #555;
	width: 17rem;
	margin-left: 88px;
	border: 1px solid #ccc;
	border-radius: 3px;
	font-size: 1rem;
	background-color: #fff;
	z-index: 10;
	margin-top: 0.2rem;
}

.yearpicker-header {
	background: #e9e9e9;
	display: flex;
	width: 100%;
	height: 2.5rem;
	border-bottom: 1px solid #ccc;
	align-items: center;
	justify-content: space-around;
}

.yearpicker-current{
	color: black;
	font-weight: bold;	
}

.yearpicker-prev,
.yearpicker-next {
	cursor: pointer;
	font-size: 2rem;
}

.yearpicker-year {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0.2rem;
}

.yearpicker-items {
	list-style: none;
	padding: 1rem 0.5rem;
	flex: 0 0 33.3%;
	width: 100%;
	border: 1px solid #c5c5c5;
	background: #f6f6f6;
	font-weight: normal;
	color: #454545;
}

.yearpicker-items:hover {
	background-color: #e9e9e9;
	cursor: pointer;
}

.yearpicker-items.selected {
	color: #ffffff;
	background: #007fff;
	border: 1px solid #003eff;
	font-weight: normal;
}

.hide {
	display: none;
}

.yearpicker-items.disabled {
	pointer-events: none;
	color: #bbb;
}