/* SELECTION */
div#selection-field {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin: auto;
    margin-bottom: 16px;
}

div#selection-field div.field-wrapper {
    width: fit-content;
}

div#selection-field input.page-type {
    display: none;
}

div#selection-field label {
    background-color: white;
    border: 8px solid white;
    border-radius: 16px;
    padding: 16px;
    display: block;
    position: relative;
    margin: 10px;
    cursor: pointer;
    width: fit-content;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: background-color ease 0.4s;
}

div#selection-field 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);
}

div#selection-field label img {
    height: 200px;
    /* width: 5%; */
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
}

div#selection-field :checked+label {
    background-color: transparent;
}

div#selection-field :checked+label::before {
    content: "✓";
    background-color: grey;
    transform: scale(1);
}

div#selection-field :checked+label img {
    transform: scale(0.9);
    filter: drop-shadow(0 0 5px #333);
    z-index: -1;
}

div#selection-field p.page-type {
    /* font-family: 'medium'; */
    /* font-size: 20px; */
    margin: 0;
    text-align: center;
}