.phd-options-group__options{
    display: flex;
    flex-direction: row;
    /*justify-content: center;*/
    /*align-items: center;*/
    gap: 1rem;
    margin: 1.5rem 0;
}

.phd-options-group__title-wrapper{
    display: flex;
    flex-direction: row;
    gap: .8em;
}
.phd-options-group__title-wrapper span{
    font-weight: 200;

}

.phd-option {
    background: none;
    color: inherit;
    border: none;
    font: inherit;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    flex-shrink: 1;
    justify-content: center;
    align-items: center;
    margin: 0;

    outline: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    padding: .8rem;
    font-size: .95rem;
}

.phd-option.selected {

    outline: 1px solid black;





}

.phd-option.selected:after {
    content: '\e802';
    font-family: "ph-4-icons";
    font-style: normal;
    font-weight: normal;
    speak: never;
    display: inline-block;
    text-decoration: inherit;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-45%, -45%);
    background-color: white;
    border-radius: 50%;
    padding: 1px;

}