.page.cooperation_request-page {
    grid-template-columns: 1fr !important;
}

#cooperation_request-main {
    align-items: center;
}

#cooperation_request-main > .breadcrumb,
#cooperation_request-main > .cooperation_request-title,
#cooperation_request-main > .cooperation_request-subtitle {
    width: 100%;
    max-width: 640px;
    align-self: center;
}

#cooperation_request-main > .breadcrumb {
    padding: 0;
}

.cooperation_request-title {
    margin-top: 1.5rem;
    margin-bottom: 0.25rem;
}

.cooperation_request-form-wrapper {
    width: 100%;
    max-width: 640px;
}

.cooperation_request_form-step {
    margin-top: 1.5rem;
}

.cooperation_request-step-header {
    background-color: var(--system-color-primary);
    color: #fff;
    padding: 0.75rem 1.25rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 6px 6px 0 0;
}

.cooperation_request-step-body {
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 6px 6px;
    padding: 1.25rem;
}

.cooperation_request-field {
    margin-bottom: 1rem;
}

.cooperation_request-field:last-child {
    margin-bottom: 0;
}

.cooperation_request-spinner {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
    display: flex;
}

.cooperation_request-spinner__circle {
    width: 1.75rem;
    height: 1.75rem;
    border: 3px solid #e0e0e0;
    border-top-color: var(--system-color-primary);
    border-radius: 50%;
    animation: cooperation_request-spin 0.7s linear infinite;
}

.cooperation_request-spinner p {
    margin: 0;
    font-size: 0.875rem;
}

@keyframes cooperation_request-spin {
    to {
        transform: rotate(360deg);
    }
}

.cooperation_request-form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.25rem;
}

#product_formset #non_field_errors {
    margin: 1rem;
    margin-bottom: 0;
}

#product_formset .column:has(.choices) {
    flex: none;
    width: 55%;
}

#product_formset .column:not(:has(.choices)):not(.is-narrow) {
    flex: none;
    width: 45%;
}
