.sales-funnel-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    background-color: rgba(233, 233, 233, 1);
}

.sales-funnel {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    width: max-content;
    margin-top: 10px;
}

.sales-funnel .block {
    width: 300px;
    border-radius: 12px;
    background-color: #ffffff;
    min-height: 85vh;
    margin-right: 15px;
    flex-shrink: 0;
}

.sales-funnel .block .top-section {
    height: 90px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sales-funnel .block .top-section-1 {
    background-color: #B7AAFF;
}

.sales-funnel .block .top-section-2 {
    background-color: #9FCCFF;
}

.sales-funnel .block .top-section-3 {
    background-color: #FFDC6C;
}

.sales-funnel .block .top-section-5 {
    background-color: #90E3B5;
}

.sales-funnel .block .top-section-4 {
    background-color: #FFA251;
}

.sales-funnel .block .top-section-6 {
    background-color: #FF7D71;
}

.sales-funnel .block .top-section h2 {
    text-align: center;
    font-size: 18px;
    color: #021814;
    font-weight: 600;
}

.sales-funnel .block .main-section {
    padding: 25px 10px 10px 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.sales-funnel .block .main-section .sub-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    background-color: #ffffff;
    cursor: pointer;
}

.sales-funnel .block .main-section .identification-number {
    color: #0B8E7A;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

.sales-funnel .block .main-section .divider {
    color: #BDBDBD;
    font-weight: 500;
}

.sales-funnel .block .main-section .borrower_username {
    color: #222222;
    font-size: 15px;
    font-weight: 500;
    flex: 1 1 auto;
    min-width: 0;
    word-break: break-word;
}


/* Уведомление */
.export-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease;
    z-index: 4;
}

.export-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 690px;
    background-color: #FFFFFF;
    padding: 25px 50px;
    border-radius: 12px;
    transform: translate(-50%, -45%) scale(0.96);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
    z-index: 5;
}

.export-notification.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.export-overlay.active {
    opacity: 1;
    visibility: visible;
}

.export-notification * {
    -webkit-font-smoothing: antialiased;
}

.export-notification img {
    float: right;
    width: 16px;
    height: 16px;
    margin-right: -35px;
    margin-top: -5px;
    cursor: pointer;
}

.export-notification h2 {
    color: #021814;
    font-size: 26px;
    font-weight: 600;
    padding-top: 35px;
    text-align: center;
}

.export-notification .text {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 35px 0;
}

.export-notification .text span {
    color: #021814;
    font-size: 17px;
    font-weight: 450;
}

.export-notification .buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 15px;
}

.export-notification .buttons button {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    width: 220px;
    padding: 12px 0;
    border-radius: 100px;
    outline: none;
    border: none;
    cursor: pointer;
    background-color: #07584C;

    transition:
        background-color 0.25s ease,
        transform 0.2s ease,
        box-shadow 0.25s ease;
}

.export-notification .buttons button:hover {
    background-color: #0A6D5E;
}

.export-notification .buttons button.refuse {
    background-color: #FF311D;
}

.export-notification .buttons button.refuse:hover {
    background-color: #FF4A39;
}
