.box-select{
  /* background:#2d2d2d; */
  display:flex;
  justify-content: left;
  align-items:left;
  flex-wrap:wrap;
  padding:0;
  margin:0;
  color:#FFF;
}

.box-select .select {
  display:flex;
  flex-direction: column;
  position:relative;
  width: 100%;
  height:35px;
}

.box-select .option {
  padding:0 30px 0 10px;
  min-height:35px;
  display:flex;
  align-items:center;
  background: #d0a755;
  border:1px solid #FFF;
  position:absolute;
  top:0;
  width: 100%;
  pointer-events:none;
  order:2;
  z-index:1;
  transition:background .2s ease-in-out;
  box-sizing:border-box;
  overflow:hidden;
  white-space:nowrap;
  border-radius: 1rem;
  margin-bottom: 0px;
}

.box-select .option:hover {
  background:#FFF;
  color: #495057;
  border:1px solid #d0a755;
}

.box-select .select:focus .option {
  position:relative;
  pointer-events:all;
}

.box-select input {
  opacity:0;
  position:absolute;
  left:-99999px;
}

.box-select input:checked + label {
  order: 1;
  z-index:2;
  color: #495057;
  background: #fff;
  border:1px solid #d0a755;
  position:relative;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.box-select input:checked + label:after {
  content:'';
  width: 0; 
	height: 0; 
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #d0a755;
  position:absolute;
  right:15px;
  top:calc(50% - 2.5px);
  pointer-events:none;
  z-index:3;
}

.box-select input:checked + label:before {
  position:absolute;
  right:0;
  height: 40px;
  width: 40px;
  content: '';
  background:#fff;
}