.cv-data-restrictions {
    h2 i {
        color: var(--primary);
    }
    ul {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        li:not(:last-child) {
            border-bottom: 2px solid var(--border-grey3);
        }
    }
    ul.blocked {
        li {
            padding-inline: 1rem;
            margin-bottom: 1rem;
            color: var(--medium-grey-text);
            border: 1px solid var(--border-grey3);
            background-color: rgba(233, 233, 233, 0.3);
            border-radius: 5px;
            cursor: pointer;
        }
        li span:last-child {
            text-align: end;
        }
    }
    ul li {
        padding: 16px 0;
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        align-items: center;
    }

    button, .restricted-button {
        background: var(--primary);
        padding: 0.5rem 1.2rem;
        border-radius: 5px;
        font-weight: 600;
        cursor: pointer;
        border: none;
        color: var(--white);
        transition: all 0.2s ease;
    }

    .restricted-button:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.10);
        filter: brightness(0.90);
    }

    .restricted-button:active {
        transform: translateY(0);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    }

    .restricted-button.open, button.open {
        background: none;
        border: 2px solid var(--border-grey3);
        color: var(--primary);
        transition: all 0.2s ease;
        cursor: pointer;
    }

    .restricted-button.open:hover, button.open:hover {
        transform: translateY(-1px);
        background: rgba(19, 170, 165, 0.08);
        border-color: #13aaa5;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    }

    .restricted-button.open:active, button.open:active {
        transform: translateY(0);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
    }


    .text-primary {
        color: var(--primary)!important;
    }

    .wa {
        padding: 0.2rem 1rem;
        color: #25D366 !important;
    }

    .wa i {
        font-size: 1.7em;
    }
}

.restrictions-side-box {
    .blocked-title, .title {
        font-weight: 600;
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    .blocked-title i {
        color: var(--primary);
        background-color: var(--primary-transparent);
        padding: 0.6rem;
        border-radius: 50%;
    }
    .title {
        color: #198754;
    }
    .title i {
        font-size: 2em;
        color: #00c853;
    }
    .info {
        font-size: 1.1rem;
        font-weight: 600;
    }
    .info span {
        color: var(--primary);
    }
    p:last-child {
        display: flex;
        gap: .5rem;
        font-size: 0.8em;
    }
    p:last-child i {
        color: var(--primary);
        font-size: 2em;
    }

    .buttons-box {
        background-color: var(--light-grey4);
        border-radius: 5px;
        padding: 1rem;
        font-weight: 600;
    }

    .buttons-box .item:first-child {
        border-bottom: 2px solid var(--border-grey2);
    }

    .buttons-box .item {
        padding-block: 1rem;
        display: flex;
        gap: 1rem;
        align-items: center;
        justify-content: space-between;
    }

    .buttons-box .item span:last-child {
        color: var(--primary);
    }
}

.restrictions-list {
    display: flex;
    gap: 1rem;

    label {
        font-weight: 600;
    }
}