.custom-select {
  position: relative;
  font-family: inherit;
  width: 100%;
  cursor: pointer;
}
.select-selected {
  width: 80%;
  border: 1px solid #C9E8FF;
  border-radius: 6px;
  color: #4b5b63;
  font-family: 'work-sans-regular', 'sans-serif';
  font-size: 16px;
  height: 50px;
  margin-bottom: 7px;
  outline: none;
  padding-left: 14px;
  background-image: url(https://9471087.fs1.hubspotusercontent-na1.net/hubfs/9471087/header/xenonstack-downarrow.png);
  background-position-x: 98%;
  background-position-y: 16px;
  background-repeat: no-repeat;
  background-size: 20px;
  resize: vertical;
  padding: 12px 10px 10px 14px;
  border-radius: 8px;
}
.select-items {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: white;
  border: 1px solid #C9E8FF;
  border-radius: 8px;
  max-height: 550px;
  overflow-y: auto;
  z-index: 99;
}
.select-items div{
  font-size: 16px;
  padding: 5px 20px;
}
.select-hide {
  display: none;
}
.select-items div:hover {
  background-color: #f2f2f2;
}
@media(max-width:1023px){
  .select-selected {
    width: 100%;
    font-size: 14px;
  }
  .select-items div {
    font-size: 14px !important;
  }