
.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 3fr);
}

.image-container {
    position: relative;
}

.image-container input[type="checkbox"] {
    display: none;
}
.image-container label {
    cursor: pointer;
    display: block;
}
.image-container label img {
    max-width: 120px;
    max-height: 120px;
    transition: transform 125ms;
    border: 1px solid transparent;
}

.image-container input[type="checkbox"]:checked ~ label img {
    border-image-slice: 1;
    border-width: 4px;
    transform: scale(1.05);
    z-index: 999;
    border-image-source: linear-gradient(45deg, var(--sh-green) 50%, var(--sh-magenta) 50%);
}

.shotacaptcha-checkbox {
    max-width: 262px;
    position: relative;
    margin: auto auto;
    background-color: #111111;
    border-radius: 4px;
    outline: none;
    box-shadow: none;
}

.shotacaptcha-label{
    outline: 2px solid var(--sh-green);
    z-index: 99999;
}

.shotacaptcha-checkbox {
    border: none;
    outline: none;
    box-shadow: none;
}


.shotacaptcha-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    /*z-index: -1;*/
}

.shotacaptcha-checkbox label {
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.shotacaptcha-checkbox-icon {
    display: inline-block;
    margin-right: 10px;
    color: var(--sh-magenta);
    font-size: 32px;
    margin-bottom: 4px;
    margin-right: auto;
    border-radius: 2px;
    transition: transform 269ms linear;
}

.shotacaptcha-checkbox input[type="checkbox"]:checked + label .shotacaptcha-checkbox-icon {
    transform: rotateZ(90deg);
}

.shotacaptcha-checkbox-labels {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-right: 10px;
}

.shotacaptcha-checkbox-image {
    position: relative;
    margin-left: auto;
    text-align: right;
    float: right;
    height: 64px;
}

.shotacaptcha-checkbox-reveal {
    position: absolute;
    background-color: #111111;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    z-index: 999;
    color: #ffffff;
    border: 1px solid var(--sh-magenta);
    min-width: 400px;
    top: 100%;
    left: 0;
    pointer-events: none;
    max-height: 0;
    visibility: hidden;
    overflow: hidden;
    transition: visibility, max-height, 600ms linear;
}

.shotacaptcha-checkbox input[type="checkbox"]:checked ~.shotacaptcha-checkbox-reveal {
    pointer-events: auto;
    max-height: 69vh;
    visibility: visible;
    transition: visibility, max-height, 400ms linear;
}

.shotacaptcha-checkbox-reveal p {
    color: #ffffff;
}