:root {
    --background-color: #fff;
    --border-color: #ccc;
    --text-color: #555;
    --selected-text-color: black;
    --hover-background-color: #eee;
}
.cres-yearpicker-container * {
    font-family: 'NotoSansKR Regular','맑은 고딕','Malgun Gothic','돋움',Dotum,'굴림',Gulim,Helvetica,AppleGothic,sans-serif !important;
}
.cres-yearpicker-container {
    position: absolute;
    color: var(--text-color);
    /* width: 280px; */
    width: 187px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-size: 1rem;
    box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.2);
    background-color: var(--background-color);
    z-index: 10003;
    margin-top: 0.2rem;
}

.yearpicker-current {
	font-size: .9rem;
	height: 25px;
	font-weight: bold;
	margin-top: 2.5px;
}

.yearpicker-header {
    display: flex;
    width: 100%;
    height: 30px;
    /* height: 2.5rem; */
    border-bottom: 1px solid var(--border-color);
    align-items: center;
    justify-content: space-around;
}

.yearpicker-prev {
	left: 2px;
}

.yearpicker-next {
	right: 2px;
	
}

.yearpicker-prev,
.yearpicker-next {
	position: absolute;
	width: 20px;
	height: 20px;
	margin: 5px 10px;
	text-align: center;
	line-height: 12px;
	font-size: 1.5rem;
	border-radius: 3px;
	cursor: pointer;
	user-select: none;
}

.yearpicker-prev:hover,
.yearpicker-next:hover {
    border: 1px solid #cccccc;
    background: #ededed;
}

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

.yearpicker-items {
    list-style: none;
    /* padding: 1rem 0.5rem; */
    flex: 0 0 33.3%;
    /* width: 100%; */
    padding: 2px 0px;
    font-size: 0.9rem;
}

.yearpicker-items:hover {
    background-color: var(--hover-background-color);
    cursor: pointer;
}

.yearpicker-items.selected {
	background: #b7c0d0;
	color: #ffffff;
	border-radius: 4px;
}

.hide {
    display: none;
}

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