.cascading-root {
  display: flex;
  flex-direction: column;
  margin: 10px;
}

.cascading-root .cascading-label-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cascading-root .cascading-label-wrapper p {
  font-size: 20px;
  margin: 0px;
}

.cascading-input {
  width: 100%;
  border: 1px solid rgb(151, 151, 151);
  border-radius: 5px;
  padding: 5px;
  font-size: 16px;
  outline: none;
  opacity: 1;
}

.list-wrapper {
  max-height: 180px;
  overflow-y: auto;
  border: 1px solid rgb(151, 151, 151);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.list-wrapper-no-data {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.list-item {
  height: 45px;
  font-size: 16px;
  padding-left: 5px;
  border-bottom: 1px solid #979797;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
}

.list-item-no-data {
  border-bottom: unset;
  cursor: inherit;
  opacity: 0.4;
}

.cas-input-wrapper{
  display: flex;
  height: 45px;
}