.radioBTN{
    position: relative;
    width: fit-content;
    /* border-radius: 1rem; */
}
.radioBTN label{
    padding: 2rem;
    border: 1px solid var(--primary);
    /* border-radius: 1rem; */
    cursor: pointer;
    background-color: #f5f4fc84;
}
.radioBTN input{
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}



/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: -10px;
    right: -10px;
    height: 40px;
    width: 40px;
    /* background-color: #eee; */
    /* border: 1px solid var(--primary); */
    border-radius: 50%;
  }
  
  /* On mouse-over, add a grey background color */
  .radioBTN:hover{
    background-color: #84eca74b;

  }
  .radioBTN:hover input ~ .checkmark {
    /* background-color: var(--accentLight); */
  }
  
  /* When the checkbox is checked, add a blue background */
  .radioBTN input:checked ~ .checkmark {
    background-color: var(--accent);
  }
  .radioBTN label:checked {
    background-color: var(--accent);
  }

  .checkedBG{
    background-color: var(--accent);
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .radioBTN input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .radioBTN .checkmark:after {
    left: 17px;
    top: 14px;
    width: 5px;
    height: 10px;
    border: solid var(--primary);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }