.split{
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-flex-pack: distribute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    /* margin-bottom: 10px; */
    gap: 8px;
    grid-column: 1 / -1;
}
.twoOptions{
    display:flex;
    align-items: center;
    justify-content:space-between;
    width: 100%;
    gap:5px;
}

.split p{
    padding: 5px 10px;
    color: #2f1e01;
    font-weight: 700;
    font-size: clamp(0.875rem, 0.842rem + 0.175vw, 1rem);
    opacity: .8;
}
.genderType{
    position: relative;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    background-color: #fff;
    text-align: center;
}
.genderType img {
    height: 60px;
    max-width: 70px;
    margin: auto auto 10px auto;
}

.genderType input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
}

.genderType input[type=radio]:checked {
    border-color: #db9e30;
    background-color: rgba(219, 158, 48, .2);
}

.btn-add{
    max-height: 47px
}
.tableScroll p{
    margin-bottom: 15px;
}

@media(max-width:380px){
    .twoOptions{
        flex-flow:wrap;
    }
}