
/* selectbox wrapper */
.styled-select {
  background-color:white;
  display:block;
  height:48px;
  color:black;
  position:relative;
  border-radius: 6px;
  width: 100%;
  border: 0;
  font-size: var(--font-size-16);
}

.styled-select,
.styled-select .curr {padding:0 30px 0 10px}

/* select element inside the custom selectbox */
.styled-select select {
  padding:0 0;
  margin:0 0;
  height:0;
  visibility:hidden;
  border: 0;
  width: 100%;
}

/* selectbox button (current value holder) */
.styled-select .curr {
  display:block;
  position:absolute;
  top:0;
  right:0;
  left:0;
  bottom: 0;
  cursor:pointer;
  line-height:48px;
  white-space: nowrap;
  overflow: hidden;
}
.styled-select .curr:before {
  content: '';
  display: block;
  height: 100%;
  width: 50px;
  right: 0;
  position: absolute;
  top: 0;
  z-index: 0;
  border-radius: 0 4px 4px 0;
  background: rgb(255,255,255);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 40%);
}

/* arrow down */
.styled-select .curr:after {
  content:"";
  display:block;
  width:12px;
  height:7px;
  background: url(../img/select-arrow.svg) no-repeat;
  position:absolute;
  top:22px;
  z-index: 1;
  right:15px;
}
.styled-select .curr.focused:after {
  transform: rotate(180deg);
}
/* drop down menu (fake option list) */
.styled-select ul {
  background-color:white;
  margin:0 0;
  padding:0 0;
  position:absolute;
  border-radius: 6px;
  overflow: hidden;
  top:100%;
  right:-1px;
  left:-1px;
  z-index:99;
  -webkit-box-shadow:0 14px 16px -2px rgba(0,0,0,.16);
  -moz-box-shadow:0 14px 16px -2px rgba(0,0,0,.16);
  box-shadow:0 14px 16px -2px rgba(0,0,0,.16);
}

/* option item (fake option item) */
.styled-select li {
  list-style:none;
  cursor:pointer;
  padding:10px 10px;
  margin:0 0;
  border-bottom: 1px solid var(--border-color);
}
.styled-select li:last-child{
  border-bottom: 0;
}
.styled-select li:hover {
  background-color:var(--background-secondary);
  color:var(--text-primary-color);
}

/* selected option */
.styled-select li.selected{
  background:var(--background-secondary);
  color: var(--text-primary-color);
}

/* disabled option */
.styled-select li.disabled,
.styled-select li.disabled:hover {
  color:#bbb;
  font-style:italic;
  background:none;
  cursor:text;
}
p.acknowledge-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 700;
}

p.acknowledge-info input {    height: 18px;
  width: 18px;
  margin-right: 10px;
}