body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    font-family: "Open Sans", serif;
}

body,
html {
    scroll-behavior: smooth;
    position: relative;
}

ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
figure {
    margin: 0;
    padding: 0;
}

span {
    display: inline-block;
}

a {
    display: inline-block;
    text-decoration: none;
}

li {
    list-style: none;
}

section,
footer {
    position: relative;
}

/* login */
.login_main_wraper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.form_container {}

.form_wrapper {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 400px;
}

.form_wrapper .form_login {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 3px 5px 0 rgb(0 0 0 / 5%);
    border: 1px solid #ecf0ee;
    padding: 30px;
}

.login_form .input_box {
    margin-bottom: 16px;
}

.login_form input {
    padding: 10px 20px;
    border-radius: 2px;
}

.login_form .form-control:focus {
    box-shadow: none;
    border-color: #118bce;
}

.login_form .input_box input::placeholder {
    font-size: 13px;
}

.form_login .from_header {
    text-align: center;
    margin-bottom: 25px;
}

.form_login .from_header figure {
    max-width: 100px;
    margin: auto;
}

.form_login .from_header figure img {
    max-width: 100%;
}

.form_login .from_header h3 {
    font-size: 24px;
    font-weight: 700;
}

.input_box .form_lable {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.submit {
    width: 100%;
    background: #101a71;
    border: 1px solid #101a71;
    color: #fff;
    margin-top: 10px;
    font-weight: 600;
    transition: 0.5s all;
}

.submit:hover {
    background: #3e468d;
    border: 1px solid #3e468d;
}

/* scroll-bar */
/* width */
::-webkit-scrollbar {
    width: 7px;
    height: 100%;
}

/* Track */
::-webkit-scrollbar-track {
    background: #101a71;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #8A98AC;
    border-radius: 10px;
}

@media only screen and (max-width:767.98px) {}

@media only screen and (max-width:575.98px) {
    .form_wrapper {
        max-width: 350px;
    }

    .input_box .form_lable {
        font-size: 13px;
        margin-bottom: 7px;
    }

    .login_form .input_box input::placeholder {
        font-size: 12px;
    }

    .login_form input {
        padding: 7px 14px;
    }

    .submit {
        font-size: 13px;
    }
}

@media only screen and (max-width:375.98px) {

    .form_wrapper {
        max-width: 290px;
    }
}

/* home */
.sidebar {
    position: fixed;
    width: 100%;
    height: 100%;
    max-width: 280px;
    background: #101a71;
    overflow: scroll;
    overflow-x: hidden;
}

.logo {
    max-width: 120px;
    margin: auto;
    padding: 20px 0;
}

.header .logo {}

.logo a {}

.logo a img {
    background: #fff;
    width: 100%;
}

.nav-list li {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-list li:hover {
    background: #8a98ac36;
}

.nav-list li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-list li a {
    display: flex;
    align-items: start;
    gap: 15px;
    padding: 18px 0 18px 24px;
}

.nav-list li a svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.list_info {
    flex: none;
}

.list_info h4 {
    font-size: 17px;
    font-weight: 400;
    color: #fff;
}

.list_info span {
    font-size: 12px;
    font-weight: 400;
    padding-top: 5px;
    color: rgba(255, 255, 255, .5);
    overflow: hidden;
    white-space: nowrap;
    /* text-overflow: ellipsis; */
}

.setting_box svg {
    width: 21px;
    height: 21px;
    color: #fff;
}

@media only screen and (max-width:1500.98px) {
    .list_info h4 {
        font-size: 14px;
    }
}

/* page-content */
/* topbar */
.topbar {
    position: fixed;
    right: 0;
    background: #fff;
    left: 280px;
    transition: all 0.3s;
    box-shadow: 0px 0rem 1rem 7px rgb(146 146 146 / 22%);
    padding: 6px 25px;
}

.topbar_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin_box .dropdown-toggle::after {
    display: none;
}

.admin_box .btn-check:focus+.btn,
.btn:focus {
    box-shadow: none;
}

.admin_box a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin_box a figure img {
    height: 40px;
    width: 40px;
    background-color: #118bce;
    border-radius: 50%;
    padding: 3px;
}

.admin_box span {
    font-size: 18px;
    font-weight: 600;
    color: #111827
}

.admin_text {
    font-size: 17px;
    font-weight: 600;
    color: #111827;
    text-align: center;
    text-transform: capitalize;
}

.admin_box li {
    border-bottom: 1px solid #eff2f7;
}

.admin_box li:last-child {
    border-bottom: none;
}

.admin_box .dropdown-item {}

.admin_box .dropdown-item svg {
    width: 18px;
}

@media only screen and (max-width:1500.98px) {

    /* page-content */
    /* topbar */
    .topbar {
        padding: 0px 25px;
        left: 278px;
    }

    .admin_box span {
        font-size: 15px;
    }

    .admin_box span svg {
        width: 18px;
    }

    .admin_text {
        font-size: 15px !important;
    }

    .admin_box .dropdown-item {
        font-size: 13px;
    }

    .admin_box .dropdown-item svg {
        width: 15px;
    }
}

/* body_content */
.body_content {
    margin-top: 65px;
    margin-left: 281px;
    background: #d5d5d54d;
}

.body_wrap {
    padding: 24px;
}

.tab_dtls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 25px;
}

.card_dtls {
    width: 100%;
    height: 180px;
    background: #fff;
    padding: 25px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.card_dtls:last-child {
    margin-bottom: 0;
}

.tab_info p {
    font-size: 25px;
    color: #111827;
    font-weight: 600;
}

.tab_info h4 {
    font-weight: 700;
    font-size: 35px;
}

.tab_icon {
    background: #101a71;
    padding: 10px;
    border-radius: 7px;
}

.tab_icon svg {
    width: 35px;
    height: 35px;
    color: #fff;
}

.grap {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.grap_head {
    padding: 30px 25px 15px;
    border-bottom: 1px solid #eff2f7;
}

.grap_head h4 {
    font-size: 21px;
    font-weight: 600;
    color: #000;
}

.leave {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.leave_head {
    padding: 30px 25px;
    border-bottom: 1px solid #eff2f7;
}

.leave_head h4 {
    font-size: 21px;
    font-weight: 600;
    color: #2b3674;
}

.leave_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    gap: 20px;
    border-bottom: 1px solid #eff2f7;
}

.leave_dtls {
    display: flex;
    align-items: start;
    gap: 15px;
}

.leave_dtls figure {}

.leave_dtls figure img {
    max-width: 100%;
}

.leave_text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2b3674;
}

.leave_text p {
    font-size: 16px;
    font-weight: 500;
}

.leave_bttn p {
    font-size: 15px;
    color: #101a71;
    font-weight: 600;
}

.lev_bttn {
    display: table;
    margin: auto;
    font-size: 16px;
    font-weight: 600;
    color: #2b3674;
    padding: 15px 0;
    transition: 0.5s all;
}

.lev_bttn svg {
    width: 18px;
}

.leave_bttn {
    background: #101a7138;
    height: 33px;
    width: 100px;
    padding: 4px 13px;
    border-radius: 5px;
    text-align: center;
}

.apv_bttn {
    background: #00b07426 !important;
}

.apv_bttn p {
    color: #00b074 !important;
}

.rej_bttn {
    background: #ff151530;
}

.rej_bttn p {
    color: #FF1515;
}

@media only screen and (max-width:1500.98px) {
    .body_content {
        margin-top: 55px;
        margin-left: 263px;
    }

    .body_wrap {
        padding-left: 40px;
    }

    .tab_info p {
        font-size: 18px;
    }

    .tab_info h4 {
        font-size: 27px;
    }

    .card_dtls {
        height: 125px;
        padding: 18px;
    }

    .tab_icon svg {
        width: 23px;
        height: 23px;
    }

    .tab_icon {
        padding: 9px;
    }

    .tab_icon svg {
        width: 27px;
        height: 23px;
    }

    .grap_head {
        padding: 25px 18px 11px;
    }

    .grap_head h4,
    .leave_head h4 {
        font-size: 17px;
    }

    .leave_info {
        padding: 15px 18px;
    }

    .leave_dtls figure {
        max-width: 50px;
        width: 100%;
    }

    .leave_head {
        padding: 20px 18px;
    }

    .leave_text h4 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .leave_text p {
        font-size: 13px;
    }

    .leave_bttn p {
        font-size: 12px;
    }

    .leave_bttn {
        height: 28px;
    }

    .lev_bttn {
        font-size: 14px;
    }

    .lev_bttn svg {
        width: 16px;
    }
}

/* create-employee  */
.emp_heading {
    width: 100%;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 0rem 1rem 7px rgb(146 146 146 / 22%);
    border-radius: 5px;
    margin-bottom: 20px;
}

.emp_heading h4 {
    font-size: 22px;
    font-weight: 600;
    color: #111827;
}

.emp_body {
    padding: 40px 20px 20px;
    background: #fff;
    box-shadow: 0px 0rem 1rem 7px rgb(146 146 146 / 22%);
    border-radius: 5px;
}

.emp_info {
    display: flex;
    padding: 0 80px;
    align-items: center;
    justify-content: space-between;
}

.emp_info li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.emp_info li p {
    font-size: 17px;
    font-weight: 500;
    color: #ccc;
    margin-top: 5px;
}

.emp_info li.active figure {
    background: #101a71;
}

.emp_info li.active p {
    color: #111827;
    font-weight: 600;
}

.emp_info li figure {
    background: #ddd;
    padding: 15px;
    border-radius: 50%;
}

.emp_info li figure svg {
    color: #fff;
    height: 27px;
    width: 30px;
}

/* form */
.form_dtls {
    border: solid 1px #e4e5e7;
    padding: 15px;
    margin-top: 30px;
}

.form_dtls .form-control {
    box-shadow: none;
    border-radius: 2px;
    margin-bottom: 15px;
    padding: 10px 15px;

}

.form_dtls .form-control::placeholder {
    text-transform: capitalize;
    color: #8A98AC;
}

.form_lable {
    font-size: 18px;
    color: #111827;
    font-weight: 500;
    margin-bottom: 10px;
}

.form_dtls .form-select {
    color: #8A98AC;
}

.form_dtls .form-select option {
    font-size: 14px;
}

.form_group textarea {
    display: block;
    width: 100%;
    border-radius: 2px;
    border: 1px solid #ced4da;
}

@media only screen and (max-width:1500.98px) {
    .emp_heading {
        padding: 15px;
    }

    .emp_heading h4 {
        font-size: 15px;
    }

    .emp_info {
        padding: 0 40px;
    }

    .emp_info li figure {
        padding: 11px;
    }

    .emp_info li figure svg {
        height: 20px;
        width: 25px;
    }

    .emp_info li p {
        font-size: 13px;
    }

    /* form */
    .form_lable {
        font-size: 15px;
    }

    .form_dtls .form-control::placeholder {
        font-size: 13px;
    }

    .form_dtls .form-select {
        font-size: 13px;
        padding: 12px 15px;
    }


}

/* create-company */
.company_body .emp_body {
    padding: 20px;
}

.company_body .form_dtls {
    border: none;
    padding: 0;
    margin-top: 0;
}

.company_body .form_file {
    margin-bottom: 0;
}

.company_body .file_note {
    color: #8A98AC;
}

@media only screen and (max-width:1500.98px) {
    .company_body .file_note {
        font-size: 13px;
    }

    .company_body .form_time {
        padding: 6px 15px;
    }
}