body {
  --o-m-primary: #165dff;
}

.o-m-year-picker {
  display: inline-flex;
  flex-direction: column;
  box-sizing: border-box;
}
.o-m-year-picker__input {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 4px 11px;
  color: rgba(0, 0, 0, 0.88);
  font-size: 14px;
  line-height: 1;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  transition: border 0.2s, box-shadow 0.2s;
}
.o-m-year-picker__input--active, .o-m-year-picker__input:hover {
  border-color: var(--o-m-primary);
  box-shadow: 0 0 0 2px rgba(5, 145, 255, 0.1);
}
.o-m-year-picker__input--has-value:hover .o-m-year-picker__input-clear {
  display: inline-block;
}
.o-m-year-picker__input-entry {
  width: 100%;
  color: rgba(0, 0, 0, 0.88);
  font-size: 14px;
  line-height: 1.5714;
  border: none;
  outline: none;
}
.o-m-year-picker__input-entry::placeholder {
  color: #a3b1bf;
}
.o-m-year-picker__input-icon {
  display: inline-block;
  color: rgba(0, 0, 0, 0.25);
  margin-inline-start: 4px;
}
.o-m-year-picker__input-clear {
  position: absolute;
  top: 50%;
  display: none;
  color: rgba(0, 0, 0, 0.25);
  background: #fff;
  transform: translateY(-50%);
  cursor: pointer;
  inset-inline-end: 11px;
}
.o-m-year-picker__drop {
  position: relative;
}
.o-m-year-picker__drop-picker {
  min-width: 280px;
  min-height: 305px;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}
.o-m-year-picker__drop-picker-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 40px;
  padding-right: 8px;
  padding-left: 8px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.06);
}
.o-m-year-picker__drop-picker-header-pre {
  min-width: 1.6em;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
.o-m-year-picker__drop-picker-header-pre:hover {
  color: rgba(0, 0, 0, 0.88);
}
.o-m-year-picker__drop-picker-header-pre > span {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  line-height: 40px;
  transform: rotate(-45deg);
}
.o-m-year-picker__drop-picker-header-pre > span::before {
  position: absolute;
  top: 0;
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 0 solid currentcolor;
  content: "";
  inset-inline-start: 0;
  border-block-start-width: 1.5px;
  border-block-end-width: 0;
  border-inline-start-width: 1.5px;
  border-inline-end-width: 0;
}
.o-m-year-picker__drop-picker-header-pre > span::after {
  position: absolute;
  top: 4px;
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 0 solid currentcolor;
  content: "";
  inset-inline-start: 4px;
  border-block-start-width: 1.5px;
  border-block-end-width: 0;
  border-inline-start-width: 1.5px;
  border-inline-end-width: 0;
}
.o-m-year-picker__drop-picker-header-info {
  flex: 1;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}
.o-m-year-picker__drop-picker-header-next {
  min-width: 1.6em;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
.o-m-year-picker__drop-picker-header-next:hover {
  color: rgba(0, 0, 0, 0.88);
}
.o-m-year-picker__drop-picker-header-next > span {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  line-height: 40px;
  transform: rotate(135deg);
}
.o-m-year-picker__drop-picker-header-next > span::before {
  position: absolute;
  top: 0;
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 0 solid currentcolor;
  content: "";
  inset-inline-start: 0;
  border-block-start-width: 1.5px;
  border-block-end-width: 0;
  border-inline-start-width: 1.5px;
  border-inline-end-width: 0;
}
.o-m-year-picker__drop-picker-header-next > span::after {
  position: absolute;
  top: 4px;
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 0 solid currentcolor;
  content: "";
  inset-inline-start: 4px;
  border-block-start-width: 1.5px;
  border-block-end-width: 0;
  border-inline-start-width: 1.5px;
  border-inline-end-width: 0;
}
.o-m-year-picker__drop-picker-body {
  display: grid;
  grid-template-rows: 24px 24px 24px 24px;
  grid-template-columns: 60px 60px 60px;
  gap: 60px 30px;
  height: calc(100% - 40px);
  padding: 20px;
}
.o-m-year-picker__drop-picker-body-button {
  width: 100%;
  height: 100%;
  color: rgba(0, 0, 0, 0.88);
  background-color: #fff;
  border: none;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  transition: all 0.2s;
}
.o-m-year-picker__drop-picker-body-button:not(.o-m-year-picker__drop-picker-body-button--active):hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.o-m-year-picker__drop-picker-body-button--active {
  color: #fff;
  background-color: var(--o-m-primary);
}
.o-m-year-picker__drop-picker-body-button--disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}