@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&display=swap');

body {
    font-family: 'Roboto Condensed', sans-serif;
    float: left;
    width: 100%;
    box-sizing: border-box;
}

ul {
    padding: 0px;
    margin: 0px;
}

.flt {
    float: left;
    width: 100%;
}

.filler {
    flex-grow: 1;
}

datalist {
    color: black;
    background-color: red !important;
}

/* login */
.login_container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/LoginBackground.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    position: relative;
}

.login_box {
    float: left;
    width: 350px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 13px rgba(20, 41, 84, 0.2);
    padding: 55px 35px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    margin-bottom: 10%;
}

.login_head {
    color: rgb(162, 71, 0);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.45px;
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}

.login_head::before {
    content: '';
    width: calc(100% - 90px);
    height: 1px;
    background-color: rgb(4, 36, 103);
    position: absolute;
    top: calc(50% - 1px);
    right: 0px;
}

.login_form .form-group {
    margin-bottom: 20px;
}

.login_form label {
    float: left;
    width: 100%;
    color: rgb(0 0 0);
    font-size: 17px;
    font-weight: 400;
}

.login_form input {
    color: rgb(0 0 0);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.45px;
    height: 50px;
}

.login_form input::placeholder {
    color: rgb(75 75 75);
}

.login_logo {
    margin-bottom: 25px;
}

.login_btn {
    margin-top: 20px;
}

.login_btn button {
    color: rgb(255, 255, 255);
    background-color: #2F99C8;
    font-weight: bold;
    border: none;
    padding: 17px 10px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}




.form--error {
    color: red;
}

/* profile */
.person_info p {
    font-size: 25px;
    font-weight: 400;
    font-family: Roboto;
    line-height: 29px;
}


.profile_search {
    display: flex;
    gap: 20px;
}

.panel-heading a:focus {
    text-decoration: none;
}

.profile_search .profile_submit button {
    padding: 6px 25px;
}

.profile_search .search_input {
    position: relative;
    /* width: 20%; */
}

.profile_search .search_input .form-control {
    padding: 5px 50px 5px 6px;
}

.profile_search .search_input #icon {
    position: absolute;
    top: 11px;
    right: 17px;

}

.need-improvement {
    color: red;
}

.need-improvements {
    color: #FF7A00;
}

.average {
    color: #FF7A00;

}

.good {
    color: #1CC480;
}

/* sidebar */
.sidebar {
    background: #246886;

    /* box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .22) !important; */
    transition: 0.3s all ease-in-out;
    width: 100%;
    height: 45px;
    /* display: flex;
    gap: 500px; */
    align-items: center;
    padding: 0 20px;

}

.sidebar_menu {
    padding: 0px 10px;
    margin: 10px 0px;
    height: calc(100vh - 77px);
    overflow-y: auto;
}

.sidebar_menu::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: rgb(245, 245, 245);
    border-radius: 10px;
}

.sidebar_menu::-webkit-scrollbar {
    width: 8px;
    background-color: rgb(245, 245, 245);
    border-radius: 10px;
}

.sidebar_menu::-webkit-scrollbar-thumb {
    background-color: rgb(4, 36, 103);
    border-radius: 10px;
    background-image: -webkit-linear-gradient(0deg,
            rgba(255, 255, 255, 0.5) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0.5) 75%,
            transparent 75%,
            transparent)
}

.sidebar_white .sidebar_logo img {
    width: 115px;
    height: 45px;
}

.sidebar_white .sidebar_logo button {
    background: transparent;
    border: none;
}

.sidebar_white .sidebar_logo button img {
    height: 30px;
    width: 30px;
}

.sidebar_logo {

    display: flex;
    justify-content: space-between;
    padding: 5px 20px;
}

.sidebar_text ul {
    list-style-type: none;
    color: white;
    display: flex;
    gap: 20px;

}

.sidebar_text li {
    padding: 13px 10px;
    font-size: 15px;
    line-height: 17px;
    font-weight: 500;
    cursor: pointer;
}

.sidebar_menu li {
    float: left;
    width: 100%;
    margin: 2px 0px;
    background-color: transparent;
    border: none !important;
    border-radius: 4px;
}

.sidebar_menu .panel-collapse {
    padding-left: 15px;
}

.sidebar_menu .panel-collapse li {
    list-style-type: none;
}

.sidebar_menu li a .fa-angle-left {
    float: right;
    margin-top: 4px;
    font-size: 13px;
    transition: 0.3s all ease-in-out;
}

.sidebar_menu li a[aria-expanded="true"] .fa-angle-left {
    transform: rotate(-90deg);
    transition: 0.3s all ease-in-out;
}

.sidebar_menu .panel-collapse li a.active {
    background-color: rgba(255, 255, 255, .1);
    color: rgb(255, 255, 255);
}

.sidebar_menu li a.active .fa-angle-left {
    transition: 0.3s all ease-in-out;
    transform: rotate(-90deg);
}

.sidebar_menu li a.collapsed .fa-angle-left {
    transition: 0.3s all ease-in-out;
    transform: rotate(0deg) !important;
}

.sidebar_menu li a[aria-expanded="true"] {
    background-color: rgb(223 224 223);
    color: rgb(0 0 0);
}

.sidebar_menu li a {
    float: left;
    width: 100%;
    color: rgb(194 199 208);
    font-size: 14px;
    padding: 10px;
    text-decoration: none;
    outline: none;
    border-radius: 4px;
}

.sidebar_menu li a.active {
    background-color: rgb(223 224 223);
    color: rgb(0 0 0);
}

.sidebar_menu li a:hover {
    background-color: rgba(255, 255, 255, .1);
    color: rgb(255, 255, 255);
}

.sidebar_menu li a .nav_icon {
    width: 20px;
    margin-right: 5px;
}

.sidebar_menu li a b {
    color: rgb(255, 255, 255);
    background-color: rgb(162, 71, 0);
    font-weight: bold;
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    float: right;
    border-radius: 0.25rem;
}

.page_container {
    float: left;
    width: calc(100% - 230px);
    transition: 0.3s all ease-in-out;
}

.profile_drop li {
    list-style-type: none;
}

.profile_drop li a {
    float: left;
    width: 100%;
    padding: 7px 15px;
    font-weight: 400;
    font-size: 14px;
    color: rgb(33 37 41);
    text-decoration: none;
}

.profile_drop li a i {
    margin-right: 10px;
}

.pagination li:first-child a,
.pagination li:last-child a {
    background-color: rgb(4, 36, 103);
    color: rgb(255 255 255);
}

.pagination li a {
    color: rgb(4, 36, 103);
}

.pagination_flex {
    display: flex;
    justify-content: flex-end;
}

.pagination {
    margin: 10px 0px;
}


.profile_txt {
    margin-left: 15px;
}

.profile_txt span {
    color: rgb(4, 36, 103);
    font-weight: 600;
    font-size: 16px;
}

.table_profile {
    display: flex;
    align-items: center;
}

.profile_image img {
    width: 45px;
    height: 45px;
}

/* .scroller {
    width: 100%;
    height: 200px;
    overflow-y: scroll;
  }
  

  ::-webkit-scrollbar {
    width: 5px;
  }

  ::-webkit-scrollbar-track {
    background: #eee;
  }
  

  ::-webkit-scrollbar-thumb {
    background: #ccc;
  }
  

  ::-webkit-scrollbar-thumb:hover {
    background: #ccc;
  }
   */
.logged_in_user {
    display: flex;
    align-items: center;
    gap: 20px;
}