/* BULLETPROOF CUSTOM RADIO STYLING */

.radio-group { display: flex; gap: 35px; padding: 12px 0; align-items: center; }
.radio-item {
    display: flex;
    position: relative;
    padding-left: 35px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: #2d3748;
    user-select: none;
    align-items: center;
    height: 25px;
}

.radio-item input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #fff;
    border: 2px solid #2d3748;
    border-radius: 50%;
    transition: all 0.2s ease;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.radio-item:hover input ~ .checkmark { border-color: #3182ce; background-color: #f7fafc; }

.radio-item input:checked ~ .checkmark { border-color: #3182ce; background-color: #fff; }

.checkmark:after { content: ""; position: absolute; display: none; }

.radio-item input:checked ~ .checkmark:after { display: block; }

.radio-item .checkmark:after {
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3182ce;
}
