* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #379937;
}


.z_1{  z-index:1;}
.z_0{z-index:0;}
.dropdown {
  position: relative;
  font-size: 14px;
  color: #333;

  .dropdown-list {
    padding: 2px;
    background: #fff;
    position: absolute;
    top: 44px;
    left: 2px;
    right: 2px;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.15);
    transform-origin: 50% 0;
    transform: scale(1, 0);
    transition: transform 0.15s ease-in-out 0.15s;
    max-height: 66vh;
    /* overflow-y: scroll; */
  }

  .dropdown-option {
    display: block;
    padding: 6px 12px;
    opacity: 0;
    transition: opacity 0.15s ease-in-out;
  }

  .dropdown-label {
    display: block;
    height: 30px;
    background: #fff;
    /* border: 1px solid #ccc; */
    padding: 6px 12px;
    line-height: 1;
    cursor: pointer;

    /* &:before {
      content: "▼";
      float: right;
    } */
  }

  &.on {
    .dropdown-list {
      transform: scale(1, 1);
      transition-delay: 0s;

      .dropdown-option {
        opacity: 1;
        transition-delay: 0.2s;
      }
    }

    /* .dropdown-label:before {
      content: "▲";
    } */
  }

  [type="checkbox"] {
    position: relative;
    top: 2px;
    margin-right: 4px;
  }
}
.checktext{
  display:block;
  width: 100%;
  height: 32px;
  margin-top: 0.5rem;
}
