/*the container must be positioned relative:*/
.kai-custom-select, .kai-custom-select-ondemand {
  position: relative;
  width: 100%;
  max-width: 370px;
  font-family: 'Noto Sans','Noto Sans JP','Noto Sans SC','Noto Sans KR',sans-serif;
  font-size: 1.125rem;
}

.kai-custom-select:focus, .kai-custom-select-ondemand:focus {
    outline: 1px solid #000;
}

.kai-custom-select select, .kai-custom-select-ondemand select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: #fff;
  border: solid 1px #000;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 12px;
  right: 10px;
  width: 0;
  height: 0;
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  position: absolute;
  content: "";
  top: 19px;
  right: 10px;
  width: 0;
  height: 0;
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

/*style the items (options), including the selected item:*/
.select-items div {
  color: #000;
  padding: 8px 18px 8px 10px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0) transparent;
  cursor: pointer;
  user-select: none;
}

.select-selected {
  color: #000;
  padding: 8px 18px 8px 10px;
  border: 1px solid #000;
  border-color: #000 #000 rgba(0, 0, 0, 1) #000;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border: solid 1px #000;
  max-height: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.kaiformcol50 {
float:left; 
margin-right: 2%; 
width: 48%;
}
#kcs-product-category { width: 375px; }
#kcs-title {width: 371px }
#kcs-country { width: 150px }
#kai-custom-state { width: 318px; }

@media screen and (max-width: 920px) {
.kaiformcol50 {
float:none; 
margin-right: 0; 
width: 100%;
}
}