verdocs-dropdown {
  height: 26px;
  display: block;
  position: relative;
  font-family: "Inter", "Barlow", sans-serif;
}
verdocs-dropdown .arrow {
  height: 26px;
  padding: 0 4px;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  align-items: center;
  display: inline-flex;
  border: 1px solid #cccccc;
  justify-content: center;
}
verdocs-dropdown .arrow svg {
  fill: #55bc81;
  transition: 0.3s;
}
verdocs-dropdown.open .arrow {
  background: #4c56cb;
  border: 1px solid #707ae5;
}
verdocs-dropdown.open .arrow svg {
  transform: scaleY(-1);
  fill: #fff;
}

#verdocs-dropdown-menu-items {
  width: 200px;
  z-index: 10000;
  position: absolute;
  border-radius: 5px;
  background: #33354c;
  border: 1px solid #654dcb;
}

.verdocs-dropdown-menu-separator {
  height: 1px;
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.3725490196);
}

.verdocs-dropdown-menu-option {
  width: 100%;
  color: #fff;
  border: none;
  display: block;
  text-align: left;
  background: none;
  text-wrap: nowrap;
  padding: 10px 20px;
}

.verdocs-dropdown-menu-option:hover {
  cursor: pointer;
  background: #55bc81;
}

.verdocs-dropdown-menu-option[disabled] {
  color: #aaaaaa;
}

.verdocs-dropdown-menu-option[disabled]:hover {
  cursor: inherit;
  background: transparent;
  color: #aaaaaa;
}