.wpb-dropdown-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.wpb-dropdown {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.wpb-dd-button:after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}

.wpb-dd-button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  border: 0;
  text-align: inherit;
}

.wpb-dd-button i {
  padding-left: 5px;
}

.wpb-dd-menu {
  position: absolute;
  margin: 0;
  list-style: none !important;
  z-index: 9;
  display: none;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: translateY(10px);
  overflow: hidden;
}

.wpb-dd-menu.wpb-dd-menu-right {
  top: 0;
  left: 100%;
}

.wpb-dd-menu.wpb-dd-menu-left {
  top: 0;
  right: 100%;
}

.wpb-dd-menu.wpb-dd-menu-top {
  bottom: 100%;
  left: 0;
  transform: translateY(-10px);
}

.wpb-dd-menu.wpb-dd-menu-bottom {
  top: 100%;
  left: 0;
}

.wpb-dropdown.is-open .wpb-dd-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.wpb-dd-menu li {
  white-space: nowrap;
}

.wpb-dd-menu li:last-child {
  border: none !important;
}

.wpb-dd-menu li a {
  display: block;
  transition: all 0.2s ease-in-out;
}

.wpb-extra-actions {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 20px;
  padding-left: 15px;
}

.wpb-extra-action {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #5a6067;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
}

.wpb-extra-action i {
  color: #000;
}

.wpb-extra-action:hover {
  color: #5a6067;
  text-decoration: none;
}