.check-container {
  position: relative;
  padding-left: 48px;
  padding-right: 16px;
  margin: 10px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: #000;
  user-select: none;
  height: 30px;

  i {
    margin-right: 4px;
  }

  &:last-child {
    margin-bottom: 0;
  }

  input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;

    &[type="checkbox"][disabled]:checked ~ .checkmark {
      background: #ABB5CA;
      border: none;
    }

    &:checked ~ .checkmark:after {
      opacity: 1;
      background-color: var(--main-color);
    }
  }

  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: 30px;
    background: #ffffff;
    border: 1px solid #7B7B7B;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;

    &:after {
      content: '';
      width: 16px;
      height: 16px;
      background-repeat: no-repeat;
      background-size: cover;
      background-color: transparent;
      mask-repeat: no-repeat;
      mask-position: center;
      mask-size: cover;
      mask-image: url("../../../assets/check.svg");
      opacity: 0;
      transition: opacity .25s ease;
    }
  }
}
