
label {
    font-size: 0.6em;
    margin: 1%;
    text-align: center;
    padding: 0.5em;
    display: flex;
    position: relative;
}
label div{
    margin: auto;
    margin-left: 1em;
    width: 99%;
}
label p{
    font-size: 0.65em;
    word-break: break-word;
    margin: 0;
}

label:before {
    background-color: white;
    color: white;
    content: " ";
    display: block;
    border-radius: 50%;
    border: 1px solid grey;
    position: absolute;
    top: -5px;
    left: -5px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 28px;
    transition-duration: 0.4s;
    transform: scale(0);
}

label img {
    margin-bottom: 0.25em;
    background-color: white;
    height: 24px;
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
    border-radius: 0.25em;
}

:checked + label {
    border-color: #ddd;

}

:checked + label:before {
    content: "✓";
    background-color: grey;
    transform: scale(1);
    z-index: 1;
}

:checked + label img {

    /*border-radius: 0.45em;*/
    transform: scale(1.1);
    border: 1px solid grey;
    /*box-shadow: 0 0 5px #333;*/
    margin-left: 2em;
}