﻿.tCInputs {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    font-family: sans-serif;
    user-select: none;
    color: #4B7A5B;
    font-weight: 500;
    font-size: 12px;
}
.tCInputs input[type="checkbox"],
.tCInputs input[type="radio"] {
    display: none;
}
.radio-btn {
    height: 20px;
    width: 20px;
    border: 2px solid #0E5927;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.2s ease;
}
.custom-radio-group {
    display: flex;
    flex-direction: column;
    background: #F9FEF7;
    border: 0px;
    border-bottom-width: 0.5px;
    border-top-width: 0.5px;
    border-style: solid;
    border-color: #2F9652;
}
.bt-1{
    border-top-width: 0.5px;
}
.radio-btn::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    height: 12px;
    width: 12px;
    background-color: #29B758;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.tCInputs input[type="checkbox"]:checked + .radio-btn::after,
.tCInputs input[type="radio"]:checked + .radio-btn::after {
    opacity: 1;
}