.sales-representative__text {
    color: var(--bg-bg-button-chips);
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.02em;
}

.sales-representative__text b {
    font-weight: 600;
}

.sales-representative__text a {
    text-decoration: underline;
    color: var(--bg-bg-accent);
}

.sales-representative__text h4 {
    margin-bottom: 12px;
}

.categories {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.categories__item-input {
    display: none;
}

.categories__item-inner {
    display: inline-flex;
    align-items: flex-start;
    gap: 4px;
    background: var(--bg-bg-on-secondary);
    padding: 5px 6px;
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 12px;
    line-height: 128%;
    text-transform: uppercase;
    color: var(--tx-tx-secondary);
    white-space: nowrap;
    cursor: pointer;
}

.categories__item-input:checked + .categories__item-inner {
    background: var(--bg-bg-button-chips);
    color: var(--bg-bg-primary);
}

.categories__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    flex: none;
}

.categories__item-icon img {
    max-width: 100%;
    max-height: 100%;
}

.application {
    padding: 36px 32px;
    background: var(--bg-bg-secondary);
}

.application__title {
    margin-top: 0;
    margin-bottom: 8px;
}

.application__text {
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: var(--bg-bg-button-chips);
    margin-bottom: 32px;
}

.application__subtitle {
    font-size: 20px;
    line-height: 120%;
    margin-top: 32px;
    margin-bottom: 16px;
}

.application .form-footer {
    margin-top: 32px;
}

.application__fields {
    margin-bottom: -10px;
}

.application .form-agree {
    margin-top: 12px;
    width: 513px;
    max-width: 100%;
}

@media (max-width: 767px) {
    .application {
        padding: 24px 20px 28px;
    }

    .application__title {
        font-size: 24px;
        line-height: 120%;
    }

    .application .form-agree {
        width: 100%;
    }

    .application__subtitle {
        font-size: 20px;
        line-height: 112%;
    }

    .application .form-footer .button {
        width: 100%;
    }
}