.nc-vis-wrap {
    margin: 0 0 18px;
}

.nc-vis-heading {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
}

.nc-vis-title {
    font-weight: 600;
}

.nc-vis-current {
    font-size: 13px;
    opacity: .72;
}

.nc-vis-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nc-vis-item {
    width: 76px;
    padding: 5px;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    background: #fff;
    color: inherit;
    cursor: pointer;
    text-align: center;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.nc-vis-item:hover {
    border-color: #777;
    transform: translateY(-1px);
}

.nc-vis-item.is-selected {
    border-color: #111;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .12);
}

.nc-vis-thumb {
    display: block;
    width: 64px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 7px;
    background: #f5f5f5;
}

.nc-vis-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nc-vis-label {
    display: block;
    margin-top: 5px;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nc-vis-item.is-unavailable {
    position: relative;
    cursor: not-allowed;
    opacity: .38;
}

.nc-vis-item.is-unavailable::after {
    position: absolute;
    top: 50%;
    left: 8px;
    right: 8px;
    height: 1px;
    background: currentColor;
    content: '';
    transform: rotate(-35deg);
}

.nc-vis-native-row {
    display: none !important;
}

@media (max-width: 767px) {
    .nc-vis-list {
        gap: 8px;
    }

    .nc-vis-item {
        width: 68px;
    }

    .nc-vis-thumb {
        width: 56px;
    }
}
