.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;
        }
        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);
    }

    .restricted-button.open, button.open {
        background: none;
        border: 2px solid var(--border-grey3);
        color: var(--primary);
    }

    .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;
    }
}