.custom-select {
width: 100%;
z-index: 2;
}
.custom-select select {
display: none;
}
.custom-select .select-selected {
width: calc(95% - 2px);
color: #000000;
background: #ffffff;
padding: 2.5%;
font-size: 1.2em;
}
.custom-select .select-items {
position: absolute;
width: calc(100% - 2px);
color: #000000;
background: #ffffff;
overflow: hidden;
transition: .3s;
}
.custom-select .select-items div {
width: 100%;
padding: 0 0 10px 0;
cursor: pointer;
}
.custom-select .select-items div:last-child {
padding: 0;
}
.custom-select .select-items .same-as-selected {
font-weight: 700;
}
.custom-select .select-items.select-hide {
height: 0;
border-width: 1px 2px;
}