/*logo text fix*/
#logo {
    text-decoration: none;
    color: white;
}

/*ARROWS CSS*/
.btn-arrow-right,
.btn-arrow-left,
.btn-arrow-start,
.btn-arrow-end {
    position: relative;
    padding-left: 18px;
    padding-right: 18px;
    margin-right: 1px;
}

.btn-arrow-right[disabled],
.btn-arrow-left[disabled],
.btn-arrow-start[disabled],
.btn-arrow-end[disabled] {
    opacity: 1.00;
}

.btn-arrow-right:before, .btn-arrow-right:after,
.btn-arrow-left:before, .btn-arrow-left:after,
.btn-arrow-start:after,
.btn-arrow-end:before {
    content: "";
    position: absolute;
    background: inherit;
    /* use parent background */
    border: inherit;
    /* use parent border */
    border-left-color: transparent;
    /* hide left border */
    border-bottom-color: transparent;
    /* hide bottom border */
    border-radius: 0 !important;
}


.btn-arrow-right.btn-arrow-right:before, .btn-arrow-right.btn-arrow-right:after,
.btn-arrow-left.btn-arrow-right:before, .btn-arrow-left.btn-arrow-right:after,
.btn-arrow-start.btn-arrow-start:before, .btn-arrow-start.btn-arrow-start:after,
.btn-arrow-end.btn-arrow-end:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    /* rotate right arrow squares 45 deg to point right */
}

.btn-arrow-right:after, .btn-arrow-left:before,
.btn-arrow-start:after, .btn-arrow-left:before {
    /* bring arrow pointers to front */
    z-index: 3;
}

.btn-arrow-right:before, .btn-arrow-left:after,
.btn-arrow-start:before, .btn-arrow-left:after,
.btn-arrow-end:before {
    /* hide arrow tails background */
    background-color: white;
}

/* Large */
.btn-lg.btn-arrow-right,
.btn-lg.btn-arrow-left,
.btn-group-lg > .btn-arrow-left,
.btn-group-lg > .btn-arrow-right {
    padding-left: 10px; /* Adjust the padding-left as desired */
    padding-right: 10px; /* Adjust the padding-right as desired */
    margin-right: 6px;
}

.btn-lg.btn-arrow-start,
.btn-group-lg > .btn-arrow-start {
    padding-left: 22px;
    padding-right: 78px;
    margin-right: 9px;
}

.btn-lg.btn-arrow-end,
.btn-group-lg > .btn-arrow-end {
    padding-left: 78px;
    padding-right: 78px;
    margin-right: 40px;
}

.btn-lg.btn-arrow-right:before, .btn-lg.btn-arrow-right:after,
.btn-lg.btn-arrow-left:before, .btn-lg.btn-arrow-left:after,
.btn-lg.btn-arrow-start:before, .btn-lg.btn-arrow-start:after,
.btn-lg.btn-arrow-end:before, .btn-lg.btn-arrow-end:after,
.btn-group-lg > .btn-arrow-left:before,
.btn-group-lg > .btn-arrow-left:after,
.btn-group-lg > .btn-arrow-right:before,
.btn-group-lg > .btn-arrow-right:after,
.btn-group-lg > .btn-arrow-start:before,
.btn-group-lg > .btn-arrow-start:after,
.btn-group-lg > .btn-arrow-end:before,
.btn-group-lg > .btn-arrow-end:after {
    top: 17px;
    /* move it down because of rounded corners */
    height: 81px;
    /* button_inner_height / sqrt(2) */
    width: 84px;
    /* same as height */
}

.btn-lg.btn-arrow-right:before,
.btn-lg.btn-arrow-left:before,
.btn-lg.btn-arrow-start:before,
.btn-lg.btn-arrow-end:before,
.btn-group-lg > .btn-arrow-left:before,
.btn-group-lg > .btn-arrow-right:before,
.btn-group-lg > .btn-arrow-start:before,
.btn-group-lg > .btn-arrow-end:before {
    left: -40px;
}

.btn-lg.btn-arrow-right:after,
.btn-lg.btn-arrow-left:after,
.btn-lg.btn-arrow-start:after,
.btn-lg.btn-arrow-end:after,
.btn-group-lg > .btn-arrow-left:after,
.btn-group-lg > .btn-arrow-right:after,
.btn-group-lg > .btn-arrow-start:after,
.btn-group-lg > .btn-arrow-end:after {
    right: -38px;
}

.btn-lg.btn-arrow-right.btn-arrow-left,
.btn-lg.btn-arrow-left.btn-arrow-left,
.btn-lg.btn-arrow-start.btn-arrow-left,
.btn-lg.btn-arrow-end.btn-arrow-left,
.btn-group-lg > .btn-arrow-left.btn-arrow-left,
.btn-group-lg > .btn-arrow-right.btn-arrow-left,
.btn-group-lg > .btn-arrow-start.btn-arrow-left,
.btn-group-lg > .btn-arrow-end.btn-arrow-left {
    padding-right: 44px;
}

.btn-lg.btn-arrow-right.btn-arrow-right,
.btn-lg.btn-arrow-left.btn-arrow-right,
.btn-lg.btn-arrow-start.btn-arrow-right,
.btn-lg.btn-arrow-end.btn-arrow-right,
.btn-group-lg > .btn-arrow-left.btn-arrow-right,
.btn-group-lg > .btn-arrow-right.btn-arrow-right,
.btn-group-lg > .btn-arrow-start.btn-arrow-right,
.btn-group-lg > .btn-arrow-end.btn-arrow-right {
    padding-left: 70px;
}


/* Button Groups */
.btn-group > .btn-arrow-left:hover, .btn-group > .btn-arrow-left:focus,
.btn-group > .btn-arrow-right:hover, .btn-group > .btn-arrow-right:focus,
.btn-group > .btn-arrow-start:hover, .btn-group > .btn-arrow-start:focus,
.btn-group > .btn-arrow-end:hover, .btn-group > .btn-arrow-end:focus {
    z-index: initial;
}

.btn-group > .btn-arrow-right + .btn-arrow-right,
.btn-group > .btn-arrow-left + .btn-arrow-left,
.btn-group > .btn-arrow-start + .btn-arrow-start,
.btn-group > .btn-arrow-end + .btn-arrow-end {
    margin-left: 0px;
}

.btn-group > .btn:not(.btn-arrow-right):not(.btn-arrow-left),
.btn-group > .btn:not(.btn-arrow-start):not(.btn-arrow-left) {
    z-index: 1;
}

.btn-group-lg > .btn, .btn-lg {
    --bs-btn-padding-y: 9px;
    --bs-btn-padding-x: 1rem;
    --bs-btn-font-size: 1.25rem;
    --bs-btn-border-radius: 0.5rem;
}

.btn-st-arrow.btn-arrow-start,
.btn-st-arrow.btn-arrow-right,
.btn-st-arrow.btn-arrow-end {
    background-color: #fff;
}

.btn-st-arrow.btn-arrow-start:hover,
.btn-st-arrow.btn-arrow-right:hover,
.btn-st-arrow.btn-arrow-end:hover,
.btn-st-arrow.btn-arrow-right:hover {
    background-color: #70B6C1;
    color: #fff;
}

.btn-st-arrow.btn-arrow-start.selected,
.btn-st-arrow.btn-arrow-right.selected,
.btn-st-arrow.btn-arrow-end.selected {
    background-color: #70B6C1;
    color: #fff;
}

.btn-st-arrow {
    --bs-btn-color: #000;
    --bs-btn-bg: #fff;
    --bs-btn-border-color: #83D7CF;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #70B6C1;
    --bs-btn-hover-border-color: #83D7CF;
    --bs-btn-focus-shadow-rgb: 11,172,204;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #3dd5f3;
    --bs-btn-active-border-color: #25cff2;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #0dcaf0;
    --bs-btn-disabled-border-color: #0dcaf0;
}
/* Adjustments to the first and last arrows */
.btn-lg.btn-arrow-start,
.btn-group-lg > .btn-arrow-start {
    padding-left: 20px; /* Adjust the padding-left as desired */
    padding-right: 20px; /* Adjust the padding-right as desired */
    margin-right: 9px;
}

.btn-lg.btn-arrow-end,
.btn-group-lg > .btn-arrow-end {
    padding-left: 74px; /* Adjust the padding-left as desired */
    padding-right: 74px; /* Adjust the padding-right as desired */
    margin-right: 40px;
}

.btn-st-arrow.active {
    background-color: #70B6C1;
    color: #fff;
}

/*EDITOR CSS*/
/*!
 * http://suyati.github.io/line-control
 * LineControl 1.1.0
 * Copyright (C) 2014, Suyati Technologies
 * This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 *
*/

@charset "utf-8";
/* base styles */
.jumbotron {
    background-color: #67A754;
    background-image: url(images/radial_bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background: -webkit-gradient(radial, center center, 0, center center, 460, from(#B3ECFF), to(#7EDEFF)); /* Safari 4-5, Chrome 1-9 */ /* Can't specify a percentage size? Laaaaaame. */
    background: -webkit-radial-gradient(circle, #B3ECFF, #7EDEFF); /* Safari 5.1+, Chrome 10+ */
    background: -moz-radial-gradient(circle, #B3ECFF, #7EDEFF); /* Firefox 3.6+ */
    background: -ms-radial-gradient(circle, #B3ECFF, #7EDEFF); /* IE 10 */
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2) inset, 0 -3px 7px rgba(0, 0, 0, 0.2) inset;
    color: #FFFFFF;
    padding: 40px 0;
    position: relative;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.075);
}

    .jumbotron h1 {
        font-family: 'Roboto', sans-serif !important;
        font-size: 45px;
        font-weight: 300;
        border-bottom: 1px solid rgba(255,255,255,0.4);
        padding-bottom: 20px;
    }

        .jumbotron h1 span {
            color: rgba(0,0,0,0.4);
        }

    .jumbotron p {
        font-family: 'Roboto', sans-serif !important;
        font-size: 30px;
        font-weight: 300;
        line-height: 1.25;
        color: #444;
    }

    .jumbotron .container {
        position: relative;
        z-index: 2;
    }

    .jumbotron:after {
        background: url("../images/pattern.png") repeat scroll center center transparent;
        bottom: 0;
        content: "";
        display: block;
        left: 0;
        opacity: 0.4;
        position: absolute;
        right: 0;
        top: 0;
    }

    .jumbotron:after {
        background-size: 400px 400px;
    }

.masthead {
    color: #FFFFFF;
    margin-bottom: 0;
    padding: 30px 0 10px;
}

h2.demo-text {
    font-family: 'Roboto', sans-serif !important;
    font-size: 45px;
    font-weight: 300;
    color: #51D2FF;
    text-align: center;
    margin: 20px 0;
    line-height: 40px;
}

.features {
    padding: 20px 0 10px 0;
    background: #EEE;
    font-family: 'Roboto', sans-serif !important;
    font-size: 25px;
    line-height: 35px;
    text-align: center;
    font-weight: 300;
}

.footer {
    border-top: 1px solid #DDD;
    margin: 20px 0 10px 0;
    padding-top: 10px;
    font-size: 12px;
}

/* Editor Styles */

.Editor-container {
    margin-top: 10px;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.line-control-menu-bar {
    background-color: #f5f5f5;
    *background-color: #e6e6e6;
    background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
    background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
    background-repeat: repeat-x;
    border: 1px solid #cccccc;
    *border: 0;
    border-color: #e6e6e6 #e6e6e6 #bfbfbf;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    border-bottom-color: #b3b3b3;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    *zoom: 1;
}

.line-control-status-bar {
    background-color: #f5f5f5;
    *background-color: #e6e6e6;
    background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
    background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
    background-repeat: repeat-x;
    border: 1px solid #cccccc;
    *border: 0;
    border-color: #e6e6e6 #e6e6e6 #bfbfbf;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    border-bottom-color: #b3b3b3;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    *zoom: 1;
}

.line-control-menu-bar {
    border-radius: 3px 3px 0 0;
    border-bottom: none;
    min-height: 25px;
    padding: 5px 0;
}

    .line-control-menu-bar div:first-child {
        margin-left: 3px;
    }

    .line-control-menu-bar .dropdown {
        float: left;
    }

    .line-control-menu-bar .dropdown-toggle {
        font-size: 14px;
    }

        .line-control-menu-bar .dropdown-toggle .caret {
            margin-left: 5px;
            border-top-color: #999;
        }

    .line-control-menu-bar a.btn {
        position: relative;
        margin-bottom: 3px;
    }

#paletteCntr {
}

select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
    height: auto;
    margin-bottom: 10px;
}

.line-control-status-bar {
    min-height: 30px;
    border-radius: 0 0 3px 3px;
    border-top: none;
    line-height: 30px;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
}

    .line-control-status-bar .label {
        float: right;
        margin: 6px 10px 0 0;
        background: #BBB;
        text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
        padding: 2px 4px;
        font-size: 11.844px;
        line-height: 14px;
    }

.Editor-editor {
    height: 150px;
    padding: 1%;
    border: 1px solid #EEE;
    border-radius: 0;
    word-wrap: break-word;
}

#paletteCntr ul {
    width: 145px;
    float: left;
    z-index: 999;
    margin: 0 10px;
}

#paletteCntr li {
    cursor: pointer;
    display: block;
    height: 16px;
    float: left;
    margin: 0;
    padding: 0;
    width: 16px;
    margin: 1px;
}

    #paletteCntr li div {
        text-align: left;
        margin: 0;
        font-size: 12px;
    }

div.activeColour {
    position: absolute;
    display: inline;
    left: 0;
    top: 30px;
    background: #E8E8E8;
    padding-bottom: 10px;
    z-index: 10000;
}

#colorpellete, #bg_colorpellete {
    float: left;
}

.bg_activeColour {
    position: absolute;
    display: inline;
    float: left;
}

.specialCntr {
    background-color: #E8E8E8 !important;
    display: inline;
    position: absolute;
    width: 176px;
    top: 30px;
    left: 0;
}

    .specialCntr ul {
        float: left;
        margin: 10px;
        white-space: normal;
        -webkit-padding-start: 0px;
        -moz-padding-start: 0px;
    }

        .specialCntr ul li {
            list-style: none;
            float: left;
            font-size: 12px;
            width: 20px;
            height: 20px;
            background: #FFF;
            margin: 3px;
            color: #333;
            text-align: center;
            font-weight: bold;
            cursor: pointer;
        }

            .specialCntr ul li:hover {
                background: #666;
                color: #FFF;
            }

pre {
    white-space: pre-wrap; /* css-3 */
    white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
    white-space: -pre-wrap; /* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    word-wrap: break-word; /* Internet Explorer 5.5+ */
}

.on {
    display: block;
    position: relative;
}

.fullscreen {
    position: fixed;
    background: #FFF;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    margin: 0;
}

    .fullscreen .line-control-status-bar {
        position: fixed;
        bottom: 0;
        border-top: 1px solid #DDD;
    }

    .fullscreen #contentarea {
        border: none;
    }

/***Custome Added Css for Left Tabs***/
.tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
    border-bottom: 0;
}

.tabs-left ul {
    -webkit-padding-start: 0px;
}

.tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li {
    float: none;
}

    .tabs-left > .nav-tabs > li > a,
    .tabs-right > .nav-tabs > li > a {
        min-width: 74px;
        margin-right: 0;
        margin-bottom: 3px;
    }

.tabs-left > .nav-tabs {
    float: left;
    margin-right: 19px;
    border-right: 1px solid #ddd;
}

    .tabs-left > .nav-tabs > li > a {
        margin-right: -1px;
        -webkit-border-radius: 4px 0 0 4px;
        -moz-border-radius: 4px 0 0 4px;
        border-radius: 4px 0 0 4px;
    }

        .tabs-left > .nav-tabs > li > a:hover,
        .tabs-left > .nav-tabs > li > a:focus {
            border-color: #eeeeee #dddddd #eeeeee #eeeeee;
            outline: none;
        }

    .tabs-left > .nav-tabs .active > a,
    .tabs-left > .nav-tabs .active > a:hover,
    .tabs-left > .nav-tabs .active > a:focus {
        border-color: #ddd transparent #ddd #ddd;
        *border-right-color: #ffffff;
        color: rgb(0, 176, 245) !important;
        outline: none;
    }
/**form control width**/
@-moz-document url-prefix() {
    .form-control {
        padding: 6px 12px 10px 12px;
    }
}

.form-control-width {
    width: 100px;
}

.form-control-link {
    width: 204px;
    display: inline-block;
    margin-bottom: 5px;
    margin-right: 5px;
}

.form-control-button-right {
    width: 204px;
}

.inline-form-control {
    display: inline !important;
}

.btn-group + .btn-group {
    margin-left: 5px;
}

.activeColour ul {
    -webkit-padding-start: 0px;
    -moz-padding-start: 0px;
}

h1 {
    margin-top: 10px;
    line-height: 40px;
}

.col-lg-6 nth:child(1) {
    margin-left: 0px;
}

.nopadding {
    padding: 0px;
}

.nopadding-right {
    padding-right: 0px;
}

.modal {
    overflow-y: auto;
}

.padding-top {
    padding-top: 10px;
}
/*** Drop Down Menu***/
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -6px;
        margin-left: -1px;
        -webkit-border-radius: 0 6px 6px 6px;
        -moz-border-radius: 0 6px 6px 6px;
        border-radius: 0 6px 6px 6px;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu > a:after {
        display: block;
        content: " ";
        float: right;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 5px 0 5px 5px;
        border-left-color: #cccccc;
        margin-top: 5px;
        margin-right: -10px;
    }

    .dropdown-submenu:hover > a:after {
        border-left-color: #ffffff;
    }

    .dropdown-submenu.pull-left {
        float: none;
    }

        .dropdown-submenu.pull-left > .dropdown-menu {
            left: -100%;
            margin-left: 10px;
            -webkit-border-radius: 6px 0 6px 6px;
            -moz-border-radius: 6px 0 6px 6px;
            border-radius: 6px 0 6px 6px;
        }

    .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .dropdown-submenu:hover > a, .dropdown-submenu:focus > a {
        color: #fff;
        text-decoration: none;
        background-color: #0081c2;
        background-image: -moz-linear-gradient(top,#08c,#0077b3);
        background-image: -webkit-gradient(linear,0 0,0 100%,from(#08c),to(#0077b3));
        background-image: -webkit-linear-gradient(top,#08c,#0077b3);
        background-image: -o-linear-gradient(top,#08c,#0077b3);
        background-image: linear-gradient(to bottom,#08c,#0077b3);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0077b3',GradientType=0);
    }

.dropdown-menu > li > a {
    cursor: pointer;
}

/*SIDEBAR CSS*/
body {
    min-height: 100vh;
    font-family: Inter;
    background-color: #F9F9F9;
    color: #202020;
}

html {
    height: -webkit-fill-available;
}

a {
    color: #898989
}

main {
    display: flex;
    flex-wrap: nowrap;
    height: 100vh;
    height: -webkit-fill-available;
    max-height: 100vh;
    overflow-x: auto;
    overflow-y: hidden;
}

.study-tracker {
    color: #fff;
    font-family: Inter;
    font-size: 20px;
    line-height: 26px;
    text-align: left;
}

.study-tracker-sm {
    color: #fff;
    font-family: Inter;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
}

.page-layout-wrapper::after {
    content: '';
    display: block;
    clear: both;
}

#main-sidebar {
    float: left;
    width: 320px;
}

.sidenav {
    --bs-nav-link-padding-x: 0rem;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight:;
    --bs-nav-link-color: var(--bs-link-color);
    --bs-nav-link-hover-color: var(--bs-link-hover-color);
    --bs-nav-link-disabled-color: #6c757d;
    padding-left: 0;
    padding-top: 0;
    margin-bottom: 0;
    list-style: none;
    font-size: 14px;
    width: 320px;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 5%), 0 2px 10px 0 rgb(0 0 0 / 5%);
    background-color: #fff;
    overflow-x: hidden;
}

.content 
{
    margin-left: 340px;
    padding: 20px;
}

.nav-link.active.selector {
    background-color: #EEEBF4;
    border-radius: 12px;
    color: #000;
    font-size: 14px;
}

.active.selector {
    background-color: #EEEBF4;
    border-radius: 12px;
    text-align: left;
    font-weight: bold;
}

i {
    -webkit-text-stroke: .5px;
}

.active i {
    color: #775DA6;
}

li .modal-active {
    background-color: #EEEBF4;
    text-align: left;
    font-weight: bold;
}

.modal-active i {
    color: #775DA6;
}

.dropdown-toggle {
    outline: 0;
}

.nav-flush .nav-link {
    border-radius: 0;
}

.btn-toggle {
    display: inline-flex;
    align-items: center;
    padding: .25rem .5rem;
    font-weight: 600;
    color: rgba(0, 0, 0, .65);
    background-color: transparent;
    border: 0;
}

.btn-toggle-hidden {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    font-weight: 600;
    color: rgba(0, 0, 0, .65);
    background-color: transparent;
    border: 0;
}

.btn-toggle:hover,
.btn-toggle:focus {
    color: rgba(0, 0, 0, .85);
    background-color: #EEEBF4;
}

.btn-toggle-hidden:hover,
.btn-toggle-hidden:focus {
    color: rgba(0, 0, 0, .85);
    background-color: #EEEBF4;
}

.btn-toggle::after {
    width: 100%;
    line-height: 0;
    content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
    transition: transform .35s ease;
    transform-origin: .5em 50%;
    text-align: right;
}


.btn-toggle[aria-expanded="true"]::after {
    color: rgba(0, 0, 0, .85);
    transform: rotate(90deg);
    display: inline-flex !important;
    text-align: right;
}

.btn-toggle-nav a {
    display: inline-flex;
    padding: .1875rem .5rem;
    margin-top: .125rem;
    margin-left: 1.25rem;
    text-decoration: none;
}

    .btn-toggle-nav a:hover,
    .btn-toggle-nav a:focus {
        background-color: #EEEBF4;
    }

.scrollarea {
    overflow-y: auto;
}

.fw-semibold {
    font-weight: 600;
}

.lh-tight {
    line-height: 1.25;
}

.dashboard-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
    padding: 2rem;
}

.card-header {
    color: #202020;
    font-family: Inter;
    font-size: 16px;
    line-height: 19px;
    text-align: left;
}

.bg-info {
    background-color: rgba(119, 93, 166, 0.58) !important;
}

.table-active {
    --bs-table-accent-bg: #f9f9f9;
}

td {
    padding-top: .75rem !important;
    padding-bottom: .75rem !important;
}

tbody, td, tfoot, th, thead, tr {
    border-color: inherit;
    border-style: none;
    border-width: 0;
    margin-bottom: 12px;
}

th {
    border-bottom: solid;
    border-color: inherit;
    border-width: 0;
}

.status-active-btn {
    border-radius: 4px;
    --bs-btn-color: #000;
    --bs-btn-bg: #E8F1F2;
    --bs-btn-border-color: none;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #31d2f2;
    --bs-btn-hover-border-color: #25cff2;
    --bs-btn-focus-shadow-rgb: 11,172,204;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #3dd5f3;
    --bs-btn-active-border-color: #25cff2;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #0dcaf0;
    --bs-btn-disabled-border-color: #0dcaf0;
    --bs-btn-font-size: .75rem;
    color: #70B6C1;
    font-color: #79BAC4;
}

.status-draft-btn {
    border-radius: 4px;
    --bs-btn-color: #000;
    --bs-btn-bg: #E8F1F2;
    --bs-btn-border-color: none;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #31d2f2;
    --bs-btn-hover-border-color: #25cff2;
    --bs-btn-focus-shadow-rgb: 11,172,204;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #3dd5f3;
    --bs-btn-active-border-color: #25cff2;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #0dcaf0;
    --bs-btn-disabled-border-color: #0dcaf0;
    --bs-btn-font-size: .75rem;
    color: #989898;
}

.pagination {
    --bs-pagination-color: #898989;
    --bs-pagination-bg: none;
    --bs-pagination-border-color: none;
}

.pagination-sm {
    --bs-pagination-padding-x: 0.75rem;
}

.pagination .bi {
    vertical-align: 0em;
}

.active > .page-link, .page-link.active {
    border: 1px solid #775DA6;
    border-radius: 8px;
    color: #898989;
    background-color: #FFF;
}

.btn-db {
    border: 1px solid #775DA6;
    border-radius: 8px;
    color: #775DA6;
    background-color: #FFF;
    font-size: 14px;
}

    .btn-db:hover {
        border: 1px solid #DCDCDC;
        border-radius: 8px;
        color: #775DA6;
        background-color: #E5E1EE;
    }

.btn-st {
    padding: 8px 22px;
    border: 1px solid #DCDCDC;
    border-radius: 8px;
    color: #fff;
    background-color: #775DA6;
    font-size: 14px;
}

    .btn-st:hover {
        padding: 8px 22px;
        border: 1px solid #DCDCDC;
        border-radius: 8px;
        color: #898989;
        background-color: #E5E1EE;
    }

.btn-db .bi {
    color: #898989;
}

.login_oueter {
    width: 360px;
    max-width: 100%;
}

.logo_outer {
    text-align: center;
}

    .logo_outer img {
        width: 120px;
        margin-bottom: 40px;
    }

.badge-eligible {
    background-color: #E8F1F2;
    border-radius: 4px;
    --bs-badge-padding-x: 1.65em;
    --bs-badge-padding-y: 1em;
    --bs-badge-font-size: 0.75em;
    --bs-badge-font-weight: 700;
    --bs-badge-color: #70B6C1;
}

.badge-not-eligible {
    background-color: #FEF0EF;
    border-radius: 4px;
    --bs-badge-padding-x: 1.65em;
    --bs-badge-padding-y: 1em;
    --bs-badge-font-size: 0.75em;
    --bs-badge-font-weight: 700;
    --bs-badge-color: #989898;
}

.badge-enrolled {
    background-color: #E9E6EF;
    border-radius: 4px;
    --bs-badge-padding-x: 1.65em;
    --bs-badge-padding-y: 1em;
    --bs-badge-font-size: 0.75em;
    --bs-badge-font-weight: 700;
    --bs-badge-color: #775DA6;
}

.btn-eligible {
    background-color: #fff;
    border-radius: 8px;
    padding: 10px 50px;
    font-size: 14px;
    font-weight: 700;
    color: #70B6C1;
    border: 1px solid #6B6B6B;
}

.btn-not-eligible {
    background-color: #fff;
    border-radius: 8px;
    padding: 10px 50px;
    font-size: 14px;
    font-weight: 700;
    color: #F9837C;
    border: 1px solid #F9837C;
}


.btn-check-el + .btn:hover {
    border: 1px solid #775DA6;
    border-radius: 8px;
    color: #775DA6;
    background-color: #E5E1EE;
    font-size: 14px;
}

.btn-check-not-el + .btn:hover {
    border: 1px solid #775DA6;
    border-radius: 8px;
    color: #F9837C;
    background-color: #E5E1EE;
    font-size: 14px;
    border: 1px solid #F9837C;
}



.search {
    position: relative;
    box-shadow: 0 0 40px rgba(51, 51, 51, .1);
}

    .search input {
        text-indent: 25px;
        border: 1px solid #d6d4d4;
    }


        .search input:focus {
            box-shadow: none;
            border: 1px solid #775DA6;
        }

    .search .bi-search {
        position: absolute;
        top: 4px;
        left: 8px;
    }


* {
    box-sizing: border-box
}

/* Style the tab */
.tab {
    float: left;
    width: 240px;
    height: 100%;
}

    /* Style the buttons that are used to open the tab content */
    .tab button {
        display: block;
        background-color: inherit;
        color: black;
        padding: 22px 16px;
        width: 100%;
        border: none;
        outline: none;
        text-align: left;
        cursor: pointer;
        transition: 0.3s;
    }

        /* Change background color of buttons on hover */
        .tab button:hover {
            background-color: #ddd;
        }

        /* Create an active/current "tab button" class */
        .tab button.active {
            background-color: #ECE9F3;
        }

/* Style the tab content */
.tabcontent {
    margin: 20px 10px;
}

.btn-group-st > .btn-group-st:not(:last-child) > .btn, .btn-group-st > .btn.dropdown-toggle-split:first-child, .btn-group-st > .btn:not(:last-child):not(.dropdown-toggle) {
    border-radius: 8px;
}

.btn-group-st > .btn-group-st:not(:first-child) > .btn, .btn-group-st > .btn:nth-child(n+3), .btn-group-st > :not(.btn-check) + .btn {
    border-radius: 8px;
}

.btn-group-st > .btn-group-st:not(:first-child), .btn-group-st > :not(.btn-check:first-child) + .btn {
    margin-left: 10px;
}

.btn-check-el:checked + .btn {
    background-color: #E8F1F2;
    border-radius: 8px;
    padding: 10px 50px;
    font-size: 14px;
    font-weight: 700;
    color: #70B6C1;
    border: 1px solid #6B6B6B;
}

.btn-check-not-el:checked + .btn {
    background-color: #FDD8D5;
    border-radius: 8px;
    padding: 10px 50px;
    font-size: 14px;
    font-weight: 700;
    color: #F9837C;
    border: 1px solid #F9837C;
}

.btn-check {
    position: absolute;
    clip: rect(0,0,0,0);
    pointer-events: none;
}

.btn-check-el, .btn-check-not-el {
    position: absolute;
    clip: rect(0,0,0,0);
    pointer-events: none;
}

/* Additional CSS */

.google-tooltip {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

    .google-tooltip .tooltip-inner {
        background-color: #775DA6;
        color: white;
    }

.rotate {
    display: inline-block;
    transform: rotate(90deg);
}

.form-group.required .control-label:after {
    content: "*";
    color: red;
}

div.tabcontent 
{
    list-style-type: none;
    counter-reset: css-counter 0;
}

div.tabcontent p.candidateProperty 
{
    counter-increment: css-counter 1; /* Increase the counter by 1. */
}

div.tabcontent p.candidateProperty::before 
{
    content: counter(css-counter) ". "; /* Apply counter before children's content. */
}

.select2-container {
    width: 100% !important; /* Ensure the container takes the full width */
}

.select2-selection__arrow {
    height: 100% !important; /* Ensure the arrow stays within the bounds */
    right: 10px !important; /* Adjust spacing for better alignment */
}

.select2-container .select2-selection--single {
    border: 1px solid #ced4da; /* Match Bootstrap's border */
    border-radius: 0.375rem; /* Match Bootstrap's border radius */
    padding: 0.375rem 0.75rem; /* Match Bootstrap's padding */
    height: auto;
}

/* Fix for dropdown missing border-bottom */
.select2-container--open .select2-dropdown--above {
    border-bottom: 1px solid #ced4da; /* Matches Bootstrap's border */
    border-radius: 0 0 0.375rem 0.375rem; /* Matches Bootstrap's border-radius for inputs */
}

/* Ensure consistent border for the dropdown */
.select2-container--open .select2-dropdown {
    border: 1px solid #ced4da; /* Matches Bootstrap's border color */
    border-radius: 0.375rem; /* Matches Bootstrap border-radius */
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1); /* Add shadow for consistency with Bootstrap */
}

.filters-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px; /* adjust as needed */
    overflow-x: hidden;
}

.filters-row > li {
    list-style: none;
}
