/*
* {
    box-sizing: border-box;
  }
  
a {
text-decoration: none;
color: #379937;
}

body {
margin: 40px;
} */
  
.dropdown, .cbd {
    position: relative;
    font-size: 14px;
    color: #333;

    [type="checkbox"] {
        position: relative;
        top: -1px;
        margin-right: 4px;
      }
}  
.dropdown .dropdown-list, .cbd .cbd-list {
      padding: 12px;
      background: #fff;
      position: absolute;
      z-index:999;
      top: 30px;
      left: 2px;
      right: 2px;
      box-shadow: 0 1px 2px 1px rgba(0, 0, 0, .15);
      transform-origin: 50% 0;
      transform: scale(1, 0);
      transition: transform .15s ease-in-out .15s;
      max-height: 66vh;
      overflow-y: scroll;
    }
    
.dropdown .dropdown-option {
      display: block;
      padding: 8px 12px;
      opacity: 0;
      transition: opacity .15s ease-in-out;
    }
    
.dropdown .dropdown-label, .cbd .cbd-label {
      display: block;
      height: 30px;
      background: #fff;
      border: 1px solid #ccc;
      padding: 6px 12px;
      line-height: 1;
      cursor: pointer;
    }
.dropdown .dropdown-label:before {
        content: '▼';
        float: right;
      }
    
    
.dropdown.on .dropdown-list {
        transform: scale(1, 1);
        transition-delay: 0s;
    } 
.dropdown.on .dropdown-list .dropdown-option {
          opacity: 1;
          transition-delay: .2s;
        }
      
      
.dropdown.on .dropdown-label:before {
        content: '▲';
      }
    
    
    
