.ArtistProfileCheckable {
    &-item-content {
        flex: 1;
        min-width: 0;
    }

    &-item-wrapper {
        align-items: center;
        border: 1px solid var(--koala);
        border-radius: 4px;
        display: flex;
        padding: 15px;

        & + .ArtistProfileCheckable-item-wrapper {
            margin-top: 10px;
        }

        &-checked {
            background-color: var(--bluejay-light);
            border-color: var(--bluejay);
        }

        &-overclick {
            cursor: pointer;
        }
    }

    &-item-check {
        padding-left: 10px;
    }

    &-check-round {
        height: 28px;
        position: relative;
        width: 28px;
    }

    &-label {
        background-color: var(--white);
        border: 1px solid var(--koala);
        border-radius: 50%;
        cursor: pointer;
        height: 28px;
        left: 0;
        position: absolute;
        top: 0;
        transition: all 200ms ease-in;
        width: 28px;

        &::after {
            border: 2px solid var(--white);
            border-right: none;
            border-top: none;
            content: '';
            height: 6px;
            left: 7px;
            opacity: 0;
            position: absolute;
            top: 8px;
            transform: rotate(-45deg);
            transition: all 200ms ease-in;
            width: 12px;
        }
    }

    &-input {
        visibility: hidden;
    }

    &-input:checked + .ArtistProfileCheckable-label {
        background-color: var(--bluejay);
        border-color: var(--bluejay);

        &::after {
            opacity: 1;
        }
    }
}
