*,
*:after,
*:before {
  box-sizing: border-box;
}
p{
    margin: 20px 0;
}

.dropdown-wrapper {
  position: relative;

  padding: 17px 15px;

  border-radius: 12px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  outline: none;
  border: 1px solid #773dbd;
  transition: all 0.3s ease-out;

}

.dropdown-wrapper:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: #fff transparent;
}
.dropdown-wrapper.is-active {
  /*
  border-radius: 5px 5px 0 0;
  background: #fff;
  box-shadow: none;
  border-bottom: none;
  color: white;
  */
}
.dropdown-wrapper.is-active:after {
  border-color: #ffffff transparent;
  transform: rotate(180deg);
}
.dropdown-wrapper.is-active .dropdown-list {
  border-bottom: 1px solid #773dbd;
  max-height: 400px;
  z-index: 1000;
}

.dropdown-list {
  /* Size & position */
  position: absolute;
  top: calc(100% - 10px);
  left: -1px;
  right: -1px;
  /* Styles */
  z-index: 1000;
  
  background: #27213C;
  border-radius: 0 0 5px 5px;
  border: 1px solid #773dbd;
  border-top: none;
  border-bottom: none;
  list-style: none;
  transition: all 0.3s ease-out;
  /* Hiding */
  max-height: 0;
  overflow: hidden;
}
.dropdown-list li {
  padding: 0 10px;
}
.dropdown-list li:hover a {
  color: #773dbd;
}
.dropdown-list li:last-of-type a {
  border: none;
}
.dropdown-list a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 10px 0;
  transition: all 0.3s ease-out;
  border-bottom: 1px solid #773dbd;
}


.dropdown-wrapper ul
{
  padding:0px;
}