.app-checky {
  .checky-list-selector * {
    display: inline-block;
  }

  .checky-list-selector h2 {
    margin-right: 8px;
  }

  .checky-list-selector button {
    font-size: 20px;
    padding: 4px;

    background-color: transparent;
    opacity: .6;

  }

  .checky-list-selector:hover button {
    opacity: 1;
  }


  h2 {
    font-size: 32px;
    font-weight: 600;
  }

  .help {
    opacity: .75;
    font-size: 12px;
  }

  .checky {
    font-size: 20px;
    margin-top: 24px;
    margin-left: 24px
  }

  .checky * {
    list-style: none;
  }


  .checky * .checky-item {
    font-size: 20px;
    margin-top: 12px;
    display: flex;
    flex-direction: row;
  }

  .checky * .checky-item i {
    font-size: 27px;
    margin-right: 8px;
  }

  .checky * .checky-item.checked{ 
    *,*::before {
    color: lab(60 -4.49 15.06) !important;
    }

    span {    
      text-decoration-line: line-through;
    }
  }

  .checky-add-btn-list {
    margin-top: 16px;
  }

  #checky-add-btn {
    opacity: .8;
  }

  #checky-add-btn:hover {
    opacity: 1;
  }

  .checky-radio {
    visibility: hidden; 
    width: 20px;
    height: 20px;
    
    accent-color: lab(100 -10 24);
  }

  .checky-radio + .checky-label::before {
    content: '';
    position: absolute;
    left: -28px;
    top: calc((100% - 20px) / 2);
    visibility: visible;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background-color: lab(100 -10 24);
  }

  .checky-radio + .checky-label::after {
    content: '';
    position: absolute;
    left: -23px;
    top: calc((100% - 10px) / 2);
    visibility: visible;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: lab(90 -10 24);
    opacity: 0;
  }
  .checky-radio:checked + .checky-label::after {
    opacity: 1;
  }

  .checky-label {
    position: relative;
    display: inline-block;
    font-size: 20px;
    margin-left: 8px;
    padding-left: 16px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: calc(100% - 28px);
    background-color: lab(100 -10 24);
    border-radius: 12px;
    margin-top: 10px;
  }

  .checky-list-picker {
    height: 100%;
  }

  .checky-list-picker-div {
    height: calc(100% - 60px);
    overflow: scroll;
  }

  .checky-list-picker-btn {
    height: 60px;
    padding: 10px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }

  .checky-list-picker-btn * {
    height: 40px;
    margin-left: 20px;
    width: 80px;
    font-size: 16px;
    border-radius: 12px;
    background-color: lab(100 -10 24);
  }

  .checky-list-picker-btn *:hover {
    height: 40px;
    margin-left: 20px;
    width: 80px;
    font-size: 16px;
    border-radius: 12px;
    background-color: lab(96 -10 24);
  }

  .checky-list-picker-btn *:disabled {
    pointer-events: none;
    height: 40px;
    margin-left: 20px;
    width: 80px;
    font-size: 16px;
    border-radius: 12px;
    background-color: lab(95 -10 24);
    opacity: .8;
  }

  .checky-list-picker input[type="text"] {
    width: calc(100%);
    font-size: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 4px;
    padding-bottom: 4px;
    outline: none;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
  }
  
  .checky-list-picker input[type="text"]:focus {
    border-color: lab(50 -4 15);
  }
}