﻿/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700&display=swap");


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Mulish", sans-serif;
}

:root {
    --white-color: #fff;
    --blue-color: #98272B;
    --grey-color: #FFFFFF;
    --grey-color-light: #aaa;
}

body {
    transition: all 0.5s ease;
}

    body.dark {
        background-color: #333;
    }

    body.dark {
        --white-color: #333;
        --blue-color: #fff;
        --grey-color: #f2f2f2;
        --grey-color-light: #aaa;
    }

/* navbar */
.navbar1 {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    z-index: 1000;
    box-shadow: 0 0 2px var(--grey-color-light);
    border-radius: 8px 8px 0px 0px;
}

.logo_item {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 22px;
    font-weight: 600;
    color: black;
}

.navbar1 img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.search_bar {
    height: 47px;
    max-width: 430px;
    width: 100%;
}

    .search_bar input {
        height: 100%;
        width: 100%;
        border-radius: 25px;
        font-size: 18px;
        outline: none;
        background-color: var(--white-color);
        color: var(--grey-color);
        border: 1px solid var(--grey-color-light);
        padding: 0 20px;
    }

.navbar_content {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

    .navbar_content i {
        cursor: pointer;
        font-size: 20px;
        color: var(--grey-color);
    }

/* sidebar */
.sidebar {
    background-color: black;
    width: 20%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    padding: 80px 10px;
    z-index: 100;
    overflow-y: scroll;
    box-shadow: 0 0 1px var(--grey-color-light);
    transition: all 0.5s ease;
}

    .sidebar.close {
        padding: 60px 0;
        width: 80px;
    }

    .sidebar::-webkit-scrollbar {
        display: none;
    }

.menu_content {
    position: relative;
}

.menu_title {
    margin: 15px 0;
    padding: 0 20px;
    font-size: 18px;
}

.sidebar.close .menu_title {
    padding: 6px 30px;
}

.menu_title::before {
    color: var(--grey-color);
    white-space: nowrap;
}

.menu_dahsboard::before {
    content: "Dashboard";
}

.menu_editor::before {
    content: "Editor";
}

.menu_setting::before {
    content: "Setting";
}

.sidebar.close .menu_title::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 18px;
    border-radius: 12px;
    background: var(--grey-color-light);
}

.menu_items {
    padding: 0;
    list-style: none;
}

.navlink_icon {
    position: relative;
    font-size: 22px;
    min-width: 50px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 6px;
}

    .navlink_icon::before {
        content: "";
        position: absolute;
        height: 100%;
        width: calc(100% + 100px);
        left: -20px;
    }

    .navlink_icon:hover {
        background: var(--blue-color);
    }

.sidebar .nav_link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 4px 0px;
    border-radius: 5px;
    text-decoration: none;
    color: var(--grey-color);
    white-space: nowrap;
    font-size: 0.8rem;
}

.sidebar.close .navlink {
    display: none;
}

.nav_link:hover {
    color: var(--white-color);
    background: var(--blue-color);
}

.sidebar.close .nav_link:hover {
    background: var(--white-color);
}

.submenu_item {
    cursor: pointer;
}

.submenu {
    display: none;
}

.submenu_item .arrow-left {
    position: absolute;
    right: 10px;
    display: inline-block;
    margin-right: auto;
}

.sidebar.close .submenu {
    display: none;
}

.show_submenu ~ .submenu {
    display: block;
}

.show_submenu .arrow-left {
    transform: rotate(90deg);
}

.submenu .sublink {
    padding: 15px 15px 15px 52px;
}

.bottom_content {
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 260px;
    cursor: pointer;
    transition: all 0.5s ease;
}

.bottom {
    position: absolute;
    display: flex;
    align-items: center;
    left: 0;
    justify-content: space-around;
    padding: 18px 0;
    text-align: center;
    width: 100%;
    color: var(--grey-color);
    border-top: 1px solid var(--grey-color-light);
    background-color: var(--white-color);
}

    .bottom i {
        font-size: 20px;
    }

    .bottom span {
        font-size: 18px;
    }

.sidebar.close .bottom_content {
    width: 50px;
    left: 15px;
}

.sidebar.close .bottom span {
    display: none;
}

.sidebar.hoverable .collapse_sidebar {
    display: none;
}

#sidebarOpen {
    display: none;
}
.username{
    color:black;
    font-weight:600;
}

@media screen and (max-width: 768px) {
    #sidebarOpen {
        font-size: 25px;
        display: block;
        margin-right: 10px;
        cursor: pointer;
        color: var(--grey-color);
    }

    .sidebar.close {
        left: -100%;
    }

    .search_bar {
        display: none;
    }

    .sidebar.close .bottom_content {
        left: -100%;
    }
}
.master{
    margin-left:21%;
    margin-top:4.6%;
}
.titleemp{
    font-size:x-large;
}
.btnstyle {
    padding: 0.5rem 1rem !important; 
}

.cont {
    overflow-x: hidden;
    background-color: #f9f7f7;
}

.bgColor {
    background-color: #EAEAEA !important
}
.btnStyle {
    padding: 0 20px !important;
    background-color: #98272B !important;
    font-size: 0.9rem !important;
    color:white !important;
}

.textalign{
    text-align:center;
    background-color:white;
}
.symbol{
    font-size:17px;
}
.page {
    border-radius: 8px;
    border: 1px solid #e9e0e0;
    background-color: white;
    border-top: none;
}
.back {
    height: 30px;
    margin-bottom: 1.5%;
}
.backlink{
    text-decoration:none;
}
.topmargin{
    margin-top:3%;
}
..pagination > li > span {
    background-color: white !important;
    color: brown !important;
    border: 1px solid brown !important;
    font-weight: 600 !important;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    background-color: white !important;
    color: brown !important;
    border: 1px solid brown !important;
    font-weight: 600 !important;
}
.pagination > .active > span{
    background-color:white;
}
.pagination > li > a, .pagination > li > span {
    font-weight: 700 !important;
    color: black !important;
    margin: 0 5px !important;
    border-radius:7px;
}
.widthform{
    width:97%;
}
input[type="radio"] {
    accent-color: #98272B
}
.formdepartment {
    width: 95%;
    background: white;
    margin-left: 30px;
}
.paginations {
    margin-left: 0.1% !important;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    width: 99%;
    background-color: white
}
.box {
    margin-left: 2% !important;
    width: 95%;
    background: white;
}
.bodyColor {
    background-color: #f9f7f7;
}
.Addbtn {
    padding: 9px 7px !important;
    background-color: black !important;
    font-size: 0.9rem !important;
    color: white !important;
}
.active {
    background-color: #98272B;
    border-radius:5px
}
.titleemp1{
    font-size:inherit;

}

.imgs {
    position: absolute;
    left: 40%;
    top: 15%;
}
.head {
    position: absolute;
    left: 33%;
    top: 37%;
    font-weight: 700;
}
.username label {
    position: absolute;
    width: 66px;
    height: 16px;
    left: 122px;
    top: 300px;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 600;
    font-size: 14.4898px;
    line-height: 16px;
    letter-spacing: 0.06em;
    text-transform: capitalize;
    color: black;
}

.username .form-control {
    box-sizing: border-box;
    position: absolute;
    width: 476px;
    height: 48px;
    left: 122px;
    top: 320px;
    border: 1px solid black;
    border-radius: 8.32653px 0px;
}

.password label {
    position: absolute;
    width: 65px;
    height: 16px;
    left: 122px;
    top: 411px;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 600;
    font-size: 14.4898px;
    line-height: 16px;
    letter-spacing: 0.06em;
    text-transform: capitalize;
    color: black;
}

.password .form-control {
    position: absolute;
    width: 476px;
    height: 48px;
    left: 122px;
    top: 431px;
    border: 1px solid black;
    border-radius: 8.32653px 0px;
}

.captcha label {
    position: absolute;
    width: 65px;
    height: 16px;
    left: 122px;
    top: 411px;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 600;
    font-size: 14.4898px;
    line-height: 16px;
    letter-spacing: 0.06em;
    text-transform: capitalize;
    color: black;
}
.captcha .form-control {
    position: absolute;
    width: 476px;
    height: 48px;
    left: 122px;
    top: 431px;
    border: 1px solid black;
    border-radius: 8.32653px 0px;
}

.btn-login {
    position: absolute;
    width: 475px;
    height: 39.55px;
    left: 123px;
    top: 505px;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 700;
    font-size: 12.4898px;
    line-height: 16px;
    /* identical to box height */
    text-align: center;
    letter-spacing: 0.06em;
    text-transform: capitalize;
    color: #F8F9FF;
    background: #6E79D9;
    border-radius: 8.32653px 0px;
    border-color: #6E79D9;
    cursor: pointer;
}
.loginbtn {
    border-top-left-radius: 15px;
    height: 7%;
    border-bottom-right-radius: 15px;
    background-color: black !important;
    border: none;
    font-size:1rem;
    color:white !important;
}
.errorpassword {
    position: absolute;
    top: 67%;
    left: 18%;
}
.errorcaptcha {
    position: absolute;
    top: 67%;
    left: 18%;
}
.erroruserid {
    position: absolute;
    top: 51.5%;
    left: 18%;
}
.invalid {
    position: absolute;
    top: 83%;
    left: 18%;
    color: red;
}