.primary-sidebar {
    width: 225px;
    height: 100vh;
    background: transparent linear-gradient(169deg, #343379 0%, #089752 100%) 0% 0% no-repeat
        padding-box;
    box-shadow: 0px 0px 20px #0000002b;
    border-radius: 0px 20px 20px 0px;

    position: fixed;
    left: 0;
    top: 0;
    z-index: 3;

    .logo-container {
        height: 121px;
        width: 100%;
        background-color: white;
        border-top-right-radius: 20px;
        opacity: 1;
        padding: 15px 60px;
    }

    ul {
         overflow-y: auto;
        height: calc(100vh - 121px);
         overflow-x: hidden;

        padding: 20px 16px;
        li {
            list-style-type: none;
            width: 212px;
            height: 30px;
            color: white;
            padding: 3px 13px;
            margin-bottom: 16px;
            text-align: left;
            span {
                width: 27px;
                display: inline-block;
            }
            img {
                margin-bottom: 3px;
            }
        }
        li.active {
            background: transparent linear-gradient(289deg, #2d2ba8 0%, #089752 100%) 0% 0%
                no-repeat padding-box;
            box-shadow: 0px 0px 20px #0000002b;
            border-radius: 4px 0px 0px 4px;
        }
    }
}
*[dir="rtl"] .primary-sidebar {
    left: auto;
    right: 0;
    ul li {
        text-align: right;
    }
}

.top-navigation {
    position: fixed;
    top: 0;
    right: 0;
    padding: 22px 26px 22px calc(225px + 24px);
    width: 100%;
    z-index: 2;
    background-color: #f8f8f8;
    transition: all ease-in 100ms;
    margin-left: 24px;

    .avatar {
        display: inline-block;
        width: 28px;
        height: 28px;
        border-radius: 50%;

        @include BGImageCenterCover();
    }
}
*[dir="rtl"] .top-navigation {
    padding: 22px calc(225px + 24px) 22px 26px !important;
}
.scroll-active {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 3px 0px 15px #85858529;
}

main {
    margin-left: 208px;
    margin-top: 100px;
    padding: 0 24px;
    background: #f8f8f8;
    padding-bottom: 30px;
}
*[dir="rtl"] main {
    margin-left: 0;
    margin-right: 225px;
}

// secondary horizontal tabs
.secondary-horizontal-tabs {
    width: 371px;
    height: 45px;
    background: #ffffff 0% 0% no-repeat padding-box;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;

    li {
        color: #b9b9b9;
        list-style-type: none;
        cursor: pointer;
        white-space: nowrap;
    }

    li:not(:last-child) {
        margin-right: 45px;
    }

    &__current-tab {
        color: #089752 !important;
        font-weight: 500 !important;
    }
}

.secondary-tabs-boxed {
    .ant-tabs-nav::before {
        border: 0 !important;
    }
    .ant-tabs-tab {
        border: 0 !important;
        background: transparent !important;
        color: #c1c1c1 !important;
        .ant-tabs-tab-btn {
            color: #c1c1c1 !important;
        }
    }
    .ant-tabs-tab-active {
        height: 45px !important;
        background: #ffffff !important;
        box-shadow: 0px 3px 6px #aaaaaa29 !important;
        border: 1px solid #e3e3e3 !important;
        border-radius: 4px !important;
        color: #15152e !important;
        .ant-tabs-tab-btn {
            color: #15152e !important;
        }
    }
}

.border-right {
    border-right: 1px solid #d4d4d4;
}
