.items,
.open {
  border-radius: 5px;
}
.items > input,
.open {
  display: flex;
  appearance: none;
  cursor: pointer;
  x-height: 32px;
  width: 100%;
  margin: 0;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  background: #fff;
	line-height: 0px;

height: 24px;
    padding: 0px;
    border-radius: 4px;
    background-color: #9e5924;
    font-size: 8px;
	text-align: center;
font-weight: normal;

}
.items > input:before,
.open:before {
  content: attr(data-text);
  font-size: 14px;
  padding: 12px;
}
.dropdown {
  z-index: 10000;
  width: 120px;
  position: relative;
  user-select: none;
}
.items {
  position: absolute;
  width: 100%;
  pointer-events: none;
  transform: translateY(-24px);
  transition: 0.3s all;
  z-index: 1;
  overflow: hidden;
x-box-shadow: 5px 5px 10px rgb(0 0 0 / 90%);
}
.items > input {
  transition: 0.3s all;
}
.items > input:not(:checked) {
  height: 0;
  opacity: 0;
}
.close {
  margin: 0;
  appearance: none;
  position: fixed;
  top: 0;
  left: 0;
}
.open {
    color: #fff;
    font-weight: normal;
}
.open::after {
  font-size: 32px;
  position: absolute;
  top: 6px;
  right: 6px;
  transition: 0.3s all;
  pointer-events: none;
  z-index: 10000;
}
.open:checked::after {
  transform: rotate(180deg) scaleX(-1);
}
.open:checked + .close {
  width: 100%;
  height: 100%;
  z-index: 1;
}
.open:checked ~ .items {
  transform: translateY(1px);
}
.open:checked ~ .items > input {
pointer-events: all;
    height: 24px;
    opacity: 1;
    line-height: 0px;
    margin-bottom: 1px;
    font-weight: normal;
    text-align: center;
box-shadow: 5px 5px 10px rgb(0 0 0 / 90%);
}
.open:checked ~ .items > input:hover {
	background: #009 !important;
}

#selectfade
{
	display: none;
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: #f996;
}

.open:checked > #selectfade
{
	display: block;
}
