:root {
    --title-gray: #3F3F3F;
    --add-bg: #DBDBDB;
    --add-color: #A8A8A8;
    --action-green: #138891;
    --business-bg: #CDCDCD;
}

.business-desk .desk {
    border-radius: 30px;
}

.business-desk .upper-desk {
    background-color: var(--base-box-bg);
    min-height: 361px;
    max-height: 361px;
}

.business-desk .desk-content {
    border: 2.4px solid rgba(255, 255, 255, 0.3);
    background: radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(28.79px);
    --webkit-backdrop-filter: blur(28.79px); 
    opacity: 0.7;
    background-clip: padding-box;
    min-height: 250px;
}

.business-desk .desk-content.desk {
    max-height: 312px;
}

.business-desk .desk-content.desk.agent-desk {
    overflow-y: auto;
}

.business-desk .center-content-wrapper .desk-content {
    max-height: 260px;
}

.business-desk .desk-header {
    width: 40%;
    min-height: 80px;
    top: -14.5%;
}

.business-desk .desk-header .rounder {
    width: 18px;
    height: 21px;
}

.business-desk .desk-header .start-bottom-rounder {
    background-color: var(--base-box-bg);
    /* margin-top: 26.66px; */
    margin-top: 27.8px;
    margin-inline-start: -26px;
}

[dir="ltr"] .business-desk .desk-header .start-bottom-rounder {
    border-top-right-radius: 30px;
}

[dir="rtl"] .business-desk .desk-header .start-bottom-rounder {
    border-top-left-radius: 30px;
}

.business-desk .desk-header .start-top-rounder {
    background-color: var(--base-bg);
    margin-inline-start: -24px;
    margin-top: 27px;
}

[dir="ltr"] .business-desk .desk-header .start-top-rounder {
    border-bottom-left-radius: 30px;
}

[dir="rtl"] .business-desk .desk-header .start-top-rounder {
    border-bottom-right-radius: 30px;
}

.business-desk .desk-header .end-bottom-rounder {
    background-color: var(--base-bg);
    margin-inline-end: -24px;
    margin-top: 27px;
}

[dir="ltr"] .business-desk .desk-header .end-bottom-rounder {
    border-bottom-right-radius: 30px;
}

[dir="rtl"] .business-desk .desk-header .end-bottom-rounder {
    border-bottom-left-radius: 30px;
}

.business-desk .desk-header .end-top-rounder {
    background-color: var(--base-box-bg);
    /* margin-top: 27.5px; */
    margin-top: 27.8px;
    margin-inline-end: -26px;
}

[dir="ltr"] .business-desk .desk-header .end-top-rounder {
    border-top-left-radius: 30px;
}

[dir="rtl"] .business-desk .desk-header .end-top-rounder {
    border-top-right-radius: 30px;
}

.down-desk .business-list {
    grid-template-columns: repeat(auto-fill, minmax(44px, 1fr));
}

.down-desk .business-list {
    row-gap: 10px;
    column-gap: 6px;
    justify-items: center;
    overflow-y: auto;
}

.business-desk .desk-content-title {
    gap: 8px;
}

.business-desk .desk-content-title span {
    color: var(--title-gray);
    font-size: 14px;
}

.business-desk .desk-content-title i:not(.add-icon) {
    color: black;
}

.mobile-slider-container {
    align-items: center;
    width: 100%;
    max-width: 85%;
    overflow: hidden;
}

.business-desk .down-desk-content {
    background-color: var(--base-box-bg);
    min-height: 440px;
    max-height: 440px;
    overflow: hidden;
}

.business-desk .add-btn {
    background-color: var(--add-bg);
    color: var(--add-color);
}

.business-desk .add-btn.add-todo {
    width: 30px;
    height: 30px;
}

.business-desk .show-btn {
    color: var(--action-green);
    font-size: 11px;
}

@media (min-width: 992px) {
    /* .side-content {
        width: 30% !important;
    }
    .center-content {
        width: 40% !important;
    } */
}

@media (max-width: 991.98px) {
    .business-desk .desk-header {
        top: -8.5%;
        width: 70%;
    }
    .business-desk .upper-desk {
        max-height: none;
    }
}

@media (max-width: 767.98px) {
    .business-desk .desk-header {
        top: -5.7%;
        width: 65%;
    }
    .business-desk .down-desk-content {
        min-height: fit-content;
        max-height: none !important;
    }
    .business-desk .desk-content.desk {
        max-height: none;
    }
}

@media (max-width: 575.98px) {
    .business-desk .desk-header .start-top-rounder {
        margin-top: 6px;
    }
    .business-desk .desk-header .start-bottom-rounder {
        margin-top: 40px;
    }
    .business-desk .desk-header .end-top-rounder {
        margin-top: 40px;
    }
    .business-desk .desk-header .end-bottom-rounder {
        margin-top: 6px;
    }
    .desk-wrapper {
        max-width: calc(100% - 60px);
    }
    .business-desk {
        justify-content: flex-end;
    }
}