
.dropdown-check-list {
  display: inline-block;
  width: 280px;

  .anchor {
    border: none;
    border-bottom: 1px solid #2d2d2d;
    box-shadow: none;
    color:#2d2d2d;
    font-family: $condensed;
    font-style: italic;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
    font-family: $condensed;
    padding: 8px 50px 8px 15px;
    position: relative;
    width: 280px;
  }

  .anchor:after {
    position: absolute;
    content: "";
    border-left: 1px solid #666;
    border-top: 1px solid #666;
    padding: 5px;
    right: 10px;
    top: 37%;
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  .anchor:active:after {
    right: 8px;
    top: 21%;
  }

  ul.items {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 0 0 5px 5px;
    border-top: none;
    display: none;
    padding: 10px;
    position: absolute;
    margin: 0;
    width: 280px;

    overflow-y: scroll;
    max-height: 200px;
    z-index: 99;
  }

  ul.items li {
    list-style: none;
    font-size: 14px;

    input {
      width: 30px;
    }

  }

  &.visible .anchor {
    color: $blue;
  }
  
  &.visible ul {
    display: block;
  }

}