:root{
    --sidebar-default-width: 314px;
    --topbar-default-height: 80px;

    --primary-color: #6E34FF;
}

body{
    --sidebar-width: var(--sidebar-default-width);
    --topbar-height: var(--topbar-default-height);

    color: #ffffff;
    --bs-body-color: #FFFFFF;

    --bs-link-color: var(--primary-color);
    --bs-link-color-rgb: 110, 52, 255;

    --bs-primary: var(--primary-color);
    --bs-primary-rgb: 110, 52, 255;
}

.sidebarToggleButton{
    all: unset;
    display: inline-flex;
    cursor: pointer;
    padding: 8px;
    margin-right: 20px;
    font-size: 30px;
}

.sidebar-overlay{display: none;}


@media (max-width: 991px) {
    body{
        --sidebar-width: 0px;
    }
    .show-sidebar{
        overflow: hidden;
    }

    .sidebar{
        width: var(--sidebar-default-width)!important;
        z-index: 20;
        transition: 0.3s;
        left: calc(-2 * var(--sidebar-default-width))!important;
    }

    .sidebar-overlay{
        position: fixed;
        left: calc(-2* var(--sidebar-default-width)) !important;
        top: 0;
        right: 0;
        bottom: 0;

        display: block;
        width: 0;

        background: rgba(0, 0, 0, 0.8);
        z-index: 19;
        transition: 0.3s;
    }

    .show-sidebar .sidebar{
        left: 0!important;
        padding-bottom: 100px;
        padding-bottom: calc(100px + env(safe-area-inset-bottom));
    }
    .show-sidebar .sidebar-overlay{
        left: 0!important;
        width: auto;
    }

    .show-sidebar .site-main{
        pointer-events: none;
    }
}



a.page-number {
    color: #fff;
    text-decoration: none;
}



.btn{
    padding: 14px 20px;
    display: inline-flex;
    gap: 10px;
    font-weight: 500;
    font-size: 1rem;

    align-items: center;
    justify-content: center;
    line-height: 130%;
}
.btn .icon{
    font-size: 20px;
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #FFFFFF;
    --bs-btn-hover-bg: var(--primary-color);
    --bs-btn-hover-border-color: #var(--primary-color);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #var(--primary-color);
    --bs-btn-active-border-color: var(--primary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--primary-color);
    --bs-btn-disabled-border-color: var(--primary-color);
}
.btn-outline-primary {
    --bs-btn-color: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primary-color);
    --bs-btn-hover-border-color: var(--primary-color);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--primary-color);
    --bs-btn-active-border-color: var(--primary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--primary-color);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--primary-color);
    --bs-gradient: none;
}


.page-title,
.page-title h1{
    font-size: 30px;
}


table a{
    color: #8252fb;
}
.table-pill{
    text-decoration: none;
    color: #8252fb;
    border: 1px solid #8252fb;
    /* background-color: #6E34FF; */
    border-radius: 1000px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 400;
}
.table-pill.fill{
    color: #FFFFFF;
    background-color: #6E34FF;
}

/*.disabled-link {*/
/*    pointer-events: none;*/
/*    color: gray;*/
/*    cursor: not-allowed;*/
/*    text-decoration: none;*/
/*}*/

.number-pill{
    text-decoration: none;
    display: inline-flex;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    height: 30px;
    width: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    cursor: pointer;

    font-weight: 400;
    transition: 0.3s;
}
.number-pill:hover{
    background: rgba(255, 255, 255, 0.1);
}





/* Tabs */
.tabs{
    display: flex;

    justify-content: space-around;

    width: 100%;
    background: #090909;
    border-radius: 100px;
    padding: 4px;
}

.tabs button,
.tabs .tab-item {
    border: none;
    border-radius: 100px;
    background: transparent;

    display:flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);

    font-weight: 600;

    line-height: 21.6px;

    padding: 12px;

    width: 100%;

    cursor: pointer;
}

.tabs button.active-tab,
.tabs .tab-item.active-tab {
    background: #6E34FF;
    color: rgba(255, 255, 255, 1);
}




/* Modals */
.modal{
    --bs-modal-bg: #212121
}
.modal-content{

}

.event-success-modal .modal-dialog{
    max-width: 600px;
}

.btn-close{
    --bs-btn-close-color: #FFFFFF
}