
div.calamity-gravity, div.apo_count-value, div.apo_threshold-value, div.contract_strength-value, div.contract_dodge-value, div.contract_influence-value, div.contract_magic-value, div.contract_gold-value, .hp-value {
    font-size: 5em;
}

div.calamity-gravity {
    color: red;
}

a {
    touch-action: manipulation;
}

ul.image-checkbox {
    list-style-type: none;
}

ul.image-checkbox > li {
    display: inline-block;
}

ul.image-checkbox input[type="checkbox"] {
    display: none;
}

ul.image-checkbox label {
    border: 1px solid #fff;
    padding: 10px;
    display: block;
    position: relative;
    margin: 10px;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

ul.image-checkbox 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);
}

ul.image-checkbox label img {
    height: 100px;
    width: 100px;
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
}

ul.image-checkbox :checked+label {
    border-color: #ddd;
}

ul.image-checkbox :checked+label::before {
    content: "✓";
    background-color: grey;
    transform: scale(1);
}

ul.image-checkbox :checked+label img {
    transform: scale(0.9);
    box-shadow: 0 0 5px #333;
    z-index: -1;
}
