
    .wrapper-dropdown {
      /* Size and position */
      position: relative;
      width: auto;
      margin: 0 auto;
      padding: 12px 14px;
      text-align: left;

      /* Styles */
      background: #fff;
      border: 1px solid #d6d6d6;
      cursor: pointer;
      outline: none;
      font-weight: bold;
      font-size: 12px;
      color:#414141;
  }

  .wrapper-dropdown:after {
      content: "";
      width: 0;
      height: 0;
      position: absolute;
      right: 10px;
      top: 50%;
      margin-top: -3px;
      border-width: 6px 6px 0 6px;
      border-style: solid;
      border-color: #333 transparent;
  }

.wrapper-dropdown .dropdown-content {
    /* Size & position */
    position: absolute;
    z-index: 9999999;
    top: 100%;
    margin-top: 1px;
    left: -1px;
    right: -1px;
    padding: 0px;
    margin: 0px;
    width: 100%;
	min-width: 200px;

    /* Styles */
    background: white;
    border: inherit;
    border-top: none;
    list-style: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;

    /* Hiding */
    opacity: 0;
    pointer-events: none;
    border-top: 1px solid #fff;
    -moz-box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
    -webkit-box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
    box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
}


.wrapper-dropdown .dropdown-content li:first-child {
	border-top: 1px solid #d6d6d6;
}

.wrapper-dropdown .dropdown-content li {
    position: relative; /* Enable absolute positioning for checkboxes */
    display: block;
    width: 100%;
    text-align: left;
    padding: 0;
    margin: 0;
}

.wrapper-dropdown .dropdown-content li label {
    display: block;
    padding: 20px 5px 15px 5px; /* Same padding as the button */
    border-bottom: 1px solid #d6d6d6;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    height: 21px;
    font-size: 13px;
    text-transform: capitalize;
    padding-left: 15px;
    font-weight: 700;
   	color: #49546a;
}

.wrapper-dropdown .dropdown-content li:last-of-type label {
    border: none;
}

/* Hover state */

.wrapper-dropdown .dropdown-content li:hover label {
    background: #f0f0f0;
    cursor: pointer;
}

/* Checked state */

.wrapper-dropdown .dropdown-content li input:checked ~ label {
    color: grey;
}

/* Active state */

.wrapper-dropdown.active:after {
    border-width: 0 6px 6px 6px;
}

.wrapper-dropdown.active .dropdown-content {
    opacity: 1;
    pointer-events: auto;
}
