.left_sidebar{
    height: 100vh;
    border-right:1px solid white;
}
.bg-nav{
    /*background-color: #00064a;*/
    background-color: #f93;
}
.container-fluid.content-view {
    background-color: #00064a;
}
.text-right{
    text-align: right;
}

.question_div{
    background: white;
    color: white;
}
.question_div ul{
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background:#00064a;
    /*background: #f93;*/
}
.question_div ul li{
    width: 10%;
    display: flex;    
    height: 40px;
    text-align: center;
    border:1px solid #f93;
    background-color: #00064a;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    cursor:pointer;
}

/* Active question - currently viewing */
.question_div ul li.active{
    background-color: #f93 !important;
    color: #000 !important;
    font-weight: bold;
}

/* Answered question - has a green indicator */
.question_div ul li.answered{
    background-color: #28a745 !important;
    color: white !important;
    border: 1px solid #28a745;
}

/* Both active and answered */
.question_div ul li.active.answered{
    background-color: #ffc107 !important;
    color: #000 !important;
}
.question_div ul li span{
    margin: auto;
    
}


.question_right{
    list-style: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.question_right li{
    width: 50%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.left_panel_number li.match{
    background-color: yellow!important;
    color: black;
    border: 1px solid black;
}

.login_div{
    width: 800px;
    overflow:hidden;
    height: 350px;
    background-color: white;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}