.box-select input[type="radio"] {
    display: none;
    &:not(:disabled) ~ label {
    }
    &:disabled ~ label {
        color: hsla(150, 5%, 75%, 1);
        border-color: hsla(150, 5%, 75%, 1);
        box-shadow: none;
        cursor: not-allowed;
    }
}
.box-select input[type="checkbox"] {
    display: none;
    &:not(:disabled) ~ label {
    }
    &:disabled ~ label {
        color: hsla(150, 5%, 75%, 1);
        border-color: hsla(150, 5%, 75%, 1);
        box-shadow: none;
        cursor: not-allowed;
    }
}
.box-select label {
    display: block;
    background: black;
    /*border: 2px solid hsl(185 100% 50% / 0.85);*/
    /*border-radius: 20px;*/
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    box-shadow: 0px 3px 10px -2px hsla(150, 5%, 65%, 0.5);
    position: relative;
}
.box-select input[type="radio"]:checked + label {
    background: hsl(0 2% 25%) !important;
    color: hsla(215, 0%, 100%, 1);
    box-shadow: 0px 0px 20px hsl(185 100% 50% / 0.85);
}
.box-select input[type="checkbox"]:checked + label {
    background: hsl(0 2% 25%) !important;
    color: hsla(215, 0%, 100%, 1);
    box-shadow: 0px 0px 20px hsl(185 100% 50% / 0.85);
}
.selectable-character {
    display: block;
    width: 140px;
    height: 140px;
    margin: 0 auto;
    position: relative;
}

.selectable-character div:first-child {
    position: absolute;
    bottom: 0;
    right: 0;
}
