@font-face {
    font-family: 'Times New Roman Tj';
    src: url('../fonts/TimesNewRomanTj.woff2') format('woff2'),
    url('../fonts/TimesNewRomanTj.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


body {
    background-color: #fff;
}

.page-login {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 85vh;
}

.btn-login {
    background: #8FAC7F;
    border: 1px solid #CED4DA;
    box-sizing: border-box;
    border-radius: 15px;
    color: #fff;
    padding: 12px 22px;
    text-transform: uppercase;
}

.btn-login:hover {
    border: 1px solid #CED4DA;
    color: #fff;
}


.btn-home {
    background: #8FAC7F;
    border: 1px solid #CED4DA;
    box-sizing: border-box;
    border-radius: 30px;
    color: #fff;
    padding: 12px 40px;
    text-transform: uppercase;
}

.btn-home:hover {
    border: 1px solid #CED4DA;
    color: #fff;
}

.home-login-card {
    text-align: center;
    background: rgba(196, 196, 196, 0.05);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    background: #fff;
}

.navbar-light {
    background: #FFFFFF;
    box-shadow: 0px 2px 4px rgba(187, 222, 251, 0.2), 0px 4px 5px rgba(187, 222, 251, 0.14), 0px 1px 10px rgba(0, 0, 0, 0.12);
    height: 70px;
}

.footer {
    background: #FFFFFF;
    border: 2px solid #EAEAEA;
}

.login-input {
    height: 45px;
    border-radius: 15px;
    background: #F5F5F5;
    border: 1px solid #CED4DA;
    color: #777776;
}

.logo-color {
    border-bottom: 3px solid #8FAC7F;
    width: 60px;
    height: 70px;
}


.navbar-vertical.navbar-expand-lg {
    position: relative;
}

.btn-personal {
    background: #8FAC7F;
    border: 1px solid #CED4DA;
    box-sizing: border-box;
    border-radius: 30px;
    color: #fff;
    padding: 12px 40px;
    text-transform: uppercase;
}

.btn-personal:hover {
    border: 1px solid #CED4DA;
    color: #fff;
}

.personal-menu-item {
    padding: 20px 25px;
    background-color: #8FAC7F;
    color: #fff;
    margin-bottom: 10px;
}

.logo-personal {
    padding: 30px 10px;
    text-align: center;
    border-bottom: 1px solid #ccc;

}

.logo-personal img {
    max-width: 100%;
}

.nav-item {
    border-bottom: 1px solid #EDEDED;
}

.personal-user {
    background-color: #8FAC7F;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    height: 70px;
}

.personal-user svg {
    width: 2rem;
    height: 2rem;
    margin-right: 15px;
}

.personal-user__user {
    text-transform: uppercase;
    margin-bottom: 6px;

}

.personal-user__position {

}

.navbar-vertical.navbar-expand-md {
    position: relative;
    border-right: 1px solid #eaeaea;
}

.employee-wrapper {
    display: flex;
}

.employee-wrapper aside {
    padding-top: 0px;
}

.navbar-expand-md.navbar-vertical ~ .navbar, .navbar-expand-md.navbar-vertical ~ .page-wrapper {
    margin-left: 0px;
}

.navbar-vertical.navbar-expand-md .navbar-collapse .navbar-nav .nav-link {
    padding: 0.8rem 1.5rem;
}

.header-filter {
    display: flex;
}

.header-filter .input-icon {
    margin-right: 15px;
}

.header-filter .input-icon input {
    border: 2px solid #8FAC7F;
}

.header-filter .employee-btn {
    margin-right: 25px;
}

.header-filter .action-btn {
    margin-right: 10px;
}

.header-filter .employee-select {
    margin-right: 15px;
    border: 2px solid #8FAC7F;
    width: auto;
}

.header-filter .employee-print {
    margin-right: 5px;
}

.header-filter .employee-print svg, .header-filter .employee-export svg {
    width: 2.5rem;
    height: 2.5rem;
}

.header-chairman {
    padding: 0px 5px;
    border-bottom: 1px solid #eaeaea;
}


.error-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 3rem;
    text-align: center;
}

.content-chairman {
    padding-top: 20px;
    font-family: "Times New Roman Tj";
}

.content-chairman h1 {
    margin-bottom: 10px;
}


/* Sticky Table */

.table-container {
    position: relative;
    overflow-x: scroll;
}

table#stickyHeader td,
table#stickyHeader th {
    padding: 0.5rem 1rem;
    border: 1px solid #c6c3c3;
}

table#stickyHeader thead th {
    padding: 3px;
    background: white;
    border: 1px solid #c6c3c3;
}

table#stickyHeader td {
    background: #fff;
    padding: 4px 5px;
    border: 1px solid #c6c3c3;
}


table#stickyHeader thead th {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
}

table#stickyHeader thead tr:first-child > th:first-child {
    left: 0;
    z-index: 3;

    border: 1px solid #c6c3c3;
}


table#stickyHeader tbody {
    overflow: scroll;
    height: 200px;
}

/* MAKE LEFT COLUMN FIXEZ */
table#stickyHeader thead tr:first-child > :first-child {
    position: -webkit-sticky;
    position: sticky;
    /*background: #f2f3f4;*/
    left: 0;

    border: 1px solid #c6c3c3;
}

table#stickyHeader tbody tr > :first-child {
    position: -webkit-sticky;
    position: sticky;
    /*background: #f2f3f4;*/
    left: 0;

    border: 1px solid #c6c3c3;
}


/* End Sticky Table */



/* Sticky Opposite Table */

.table-container {
    position: relative;
    overflow-x: scroll;
}

table#stickyOpposite td,
table#stickyOpposite th {
    padding: 0.5rem 1rem;
    border: 1px solid #c6c3c3;
}

table#stickyOpposite thead th {
    padding: 3px;
    background: white;
    border: 1px solid #c6c3c3;
}

table#stickyOpposite td {
    background: #fff;
    padding: 4px 5px;
    border: 1px solid #c6c3c3;
}


table#stickyOpposite thead th {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
}

table#stickyOpposite thead tr:first-child > th:first-child {
    left: 0;
    z-index: 3;

    border: 1px solid #c6c3c3;
}


table#stickyOpposite tbody {
    overflow: scroll;
    height: 200px;
}

/* MAKE LEFT COLUMN FIXEZ */
table#stickyOpposite thead tr:first-child > :first-child {
    position: -webkit-sticky;
    position: sticky;
    left: 0;

    border: 1px solid #c6c3c3;
}

table#stickyOpposite thead tr .isFixed{
    position: -webkit-sticky;
    position: sticky;
    left: 20px;
    z-index:  3!important;

    border: 1px solid #c6c3c3;
}

table#stickyOpposite tbody tr > :first-child {
    position: -webkit-sticky;
    position: sticky;
    left: 0;

    border: 1px solid #c6c3c3;
}

table#stickyOpposite tbody tr > .isFixed {
    position: -webkit-sticky;
    position: sticky;
    left: 20px;

    border: 1px solid #c6c3c3;
}


/* End Sticky Opposite Table */

/* xl <= Extra extra large (xxl) */
@media (max-width: 1400px) {

}

/* lg <= Extra large (xl) */
@media (max-width: 1200px) {

}

/* md <= Large (lg) */
@media (max-width: 992px) {

}

/* sm <= Medium (md) */
@media (max-width: 768px) {
    .mobileContainer {
        align-items: end!important;
    }
    .navbar-light {
        height: auto!important;
        padding-bottom: 0px!important;
    }

    .personal-user {
        height: auto!important;
        max-width: 260px;
    }

    .employee-wrapper {
        display: block;
    }


    .navbar {
        padding-top: 30px;
    }
}

/* xs <= Small (sm) */
@media (max-width: 576px) {

}

.table thead th {
    font-size: .75rem;
}

.health-title {
    text-align: center;
}

.footerPadding {
    display: flex;
    justify-content: space-between;
}

.isGree {
    background: #f2f3f4 !important;
}

.isGrey {
    background: #2fb344 !important;
    color: #fff !important;
}


.isYellow {
    background: #ffeb3b !important;
    color: #000000 !important;
}

.isCenter {
    text-align: center;
}

#tableStatistics {
    border-collapse: collapse;
    border: 1px solid #c6c3c3;
}

#tableStatistics td, #tableStatistics th {
    border: 1px solid #c6c3c3;
}

/* Category */
.category {
    height: 18rem;
    background: #ffffff;
    -webkit-box-shadow: 0 0.125rem 3.25rem rgba(95, 127, 190, 0.2);
    -moz-box-shadow: 0 0.125rem 3.25rem rgba(95, 127, 190, 0.2);
    box-shadow: 0 0.125rem 3.25rem rgba(95, 127, 190, 0.2);
    overflow: hidden;
    padding-top: 3rem;
    position: relative;
}

.category__link {
    height: 100%;
    width: 100%;
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    z-index: 5;
}

.category__count {
    color: #b4b5d0;
    display: block;
    font-size: 1.25rem;
    font-weight: 500;
    padding: 0.875rem 1rem 0.375rem 1rem;
    position: absolute;
    top: 0;
    right: 0;
    text-align: right;
}

.category__image {
    height: 8.25rem;
    width: 100%;
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    padding: 0 0 0.75rem 0;
    text-align: center;
}

.category__image img {
    height: auto;
    max-height: 7.5rem;
    width: auto;
    max-width: 10rem;
    color: transparent;
    display: block;
    margin: 0 auto;
}


.category__title {
    height: 6.3rem;
    color: #000000;
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
    overflow: hidden;
    padding: 0.875rem 1rem 0.875rem 1rem;
    text-align: center;
}

.category__title * {
    width: 100%;
    color: inherit !important;
    display: block;
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

.category__title > * {
    height: 4.55rem;
    overflow: hidden;
}

@media screen and (min-width: 576px) {
    .category__title {
        font-size: 1.625rem;
    }
}

@media screen and (min-width: 768px) {
    .category__title {
        font-size: 1.1rem;
    }
}

@media screen and (min-width: 992px) {
    .category__title {
        font-size: 1.1rem;
    }
}

@media screen and (min-width: 1200px) {
    .category__title {
        font-size: 1.1rem;
    }
}

@media screen and (min-width: 1440px) {
    .category__title {
        font-size: 1.1rem;
    }
}

/* End Category */


.content-type {
    font-family: 'Times New Roman Tj';
}


/*  */


.content-text table {
    border-collapse: collapse;
}
.content-text table td {
    padding: 5px;
}
.content-text table thead td {
    color: #636363;
    font-weight: bold;
    border: 1px solid #c6c3c3;
}
.content-text table tbody td {
    color: #636363;
    border: 1px solid #c6c3c3;
}

#loginBg {
    background: url(../img/singin-bg.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center top;
}

.infoBadgeCall {
    width: fit-content;
    padding: 8px 18px;
    background-color: #ebd1d0;
    border-radius: 12px;
    border: 1px solid #c4babb;
}
.infoBadgeCall img {
    max-height: 40px;
    margin-right: 5px;
}
.infoBadgeCall span {
    font-size: 16px;
    font-weight: bold;
    color: #af352a;
}

.infoBadgeAndroid {
    display: flex;
    max-width: 260px;
    padding: 8px 18px;
    background-color: #d3e0ff;
    border-radius: 12px;
    border: 1px solid #c4babb;
}
.infoBadgeAndroid img {
    max-height: 40px;
    margin-right: 5px;
}
.infoBadgeAndroid .titleAndroid {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #0a365d;
}

.infoBadgeAndroid .subTitleAndroid {
    display: block;
    font-size: 13px;
    color: #21384a;
}

.infoBadgeTitle {
    max-width: 260px;
    font-size: 16px;
    color: #0a365d;
    font-weight: bold;
}

.contentBox {
    margin: 0 auto;
    max-width: 270px;
}
.contentBox a:hover {
    text-decoration: none;
}
