.postprocess-icon
{
    width: 100%;
    height: 100%;
    position: relative;
    border: 1px solid #08f0;
    background-color: #7771;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    .thumb
    {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .title
    {
        background-color: #111c;
        border-radius: 4px;
        padding: 5px 10px;
        font-size: 10px;
        font-weight: 500;
        font-family: Poppins;
        max-width: 90%;
        position: absolute;
        bottom: 6px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        color: #cdf;
    }

    .checkbox
    {
        position: absolute;
        top: 6px;
        right: 6px;
        width: 22px;
        height: 22px;
        border-radius: 4px;
        border: 2px solid #ffffff22;
        background-color: #0008;
        cursor: pointer;
        justify-content: center;
        align-items: center;

        .checkmark
        {
            font-size: 14px;
            color: transparent;
        }

        &.on
        {
            border-color: #0af8;
            background-color: #0af3;

            .checkmark { color: white; }
        }

        &.loading
        {
            opacity: 0.5;
            pointer-events: none;
        }

        &:hover
        {
            border-color: #0aff;
            background-color: #0af5;
        }
    }

    &.selected
    {
        border: 1px solid #08f;
    }

    &:hover
    {
        border: 1px solid #08f8;
        background-color: #7773;

        .title
        {
            color: white;
            background-color: #0003;
        }
    }
}
