.settings-page-wrapper {
    display: flex;

    .settings-menu {
        background-color: white;
        margin-right: 20px;
        padding: 15px;
        border-radius: 10px;
        width: 30%;
        height: 100%;
        position:sticky;
        top: 40px;

        ul li {
            color: #4A5578;
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            padding: 10px;
            border-radius: 7px;
            cursor: pointer;
            border-left: 3px solid transparent;
            font-weight: 500;

            &.active {
                background-color: #ece0da;
                border-left-color: #fb6514;
                color: #fb6514;

                > span > svg {
                    fill: #fb6514;;
                }
            }

            > span {
                margin-right: 5px;
                display: flex;
                align-items: center;
                font-size: 14px;

                > img {
                    width: 18px;
                }
                > svg {
                    font-size: 18px;
                    width: 16px;
                    color: #4A5578;
                }
            }
        }
    }
    .license_page_wrap, .settings-content-wrap{
        width: 100%;
    }
}