#radio-gender{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #999999;
    border-radius: 50%;
    position: relative;
    margin-right: 10px;
    cursor: pointer;
    color: #1A004E;
    top: 15px;
    outline: none;
}

input[type="radio"]:checked::after{
    background-color: #5500ff;
    border-color: #1A004E;
    content:'';
    position: absolute;
    top: 2px;
    left: 3px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

label{
    margin: 10px;
    font-size: 15px;
    padding: 5px;
    margin-left: 0;
}

textarea{
    width: 80%;
    max-width: 400px;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 2px solid #999999;
    text-align: left;
    color: #1A004E;
}

.X{
    margin: 10px;
}

#biog{
    margin-top: 30px;
}

.mt-extra {
    margin-top: 2em;
}

.extra-height {
    min-height: 150px;
}



input[type=checkbox] {
    display: none;
    pointer-events: none;
}

input[type=checkbox] + label {
    cursor: pointer;
    display: grid;
    grid-template-columns: auto 3fr;
}

input[type=checkbox]:checked + label .check {
    stroke-dashoffset: 0;
}

svg {
    width: 2em;
    stroke: #1A004E;
    stroke-width: 5;
    fill: white;
}

.box {
    stroke-dasharray: 320;
    stroke-dashoffset: 0;
    fill: white;
    transition: stroke-dashoffset .3s linear;
}

.check {
    stroke-dasharray: 70;
    stroke-dashoffset: 70;
    fill: none;
    transition: stroke-dashoffset .3s linear;
}

.left-col span {
    padding-top: .4em;
    margin-left: .5em;
    font-weight: normal;
    color: #1A004E;
}