/* Color my css */
.bg-mygray {
    background-color: rgb(227, 227, 227);
}

.text-xs {
    font-size: 11px !important;
}

.text-xxs {
    font-size: 10px !important;
}

.cursor-pointer {
    cursor: pointer;
}

.bg-light-dark {
    background-color: rgb(241, 241, 241);
}

.btIcon {
    background-color: rgb(247, 247, 247);
    padding: 2px 8px 2px 8px;
    font-size: 15px;
    border-radius: 3px;
    box-shadow: 1px 1px 10px 1px rgb(219, 219, 219);
}

/* Basic styling for the dropdown container */
.searchingSelectDropDown {
    position: relative;
    /* width: 200px; */
}

/* Styling for the input search box */
.searchingSelectDropDown input {
    width: 100%;
    box-sizing: border-box;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    font-size: 14px;
    /* text-align: center; */
}

/* Styling for the dropdown options container */
.searchingSelectDropDown .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 150px;
    overflow-y: auto;
    border: 1px solid #ccc;
    background-color: white;
    border-radius: 4px;
    display: none;
    z-index: 100;
    font-size: 12px;
}

/* Styling for individual options */
.searchingSelectDropDown .dropdown-content div {
    padding: 8px;
    cursor: pointer;
}

.searchingSelectDropDown .dropdown-content div:hover {
    background-color: #ddd;
}




.fontS1 {
    font-size: 13px;
}

.sideNavbarDiv {
    position: relative;
    z-index: 2;
    background-color: black;
}

.sideNavbarDiv::-webkit-scrollbar {
    width: 10px;
}

.sideNavbarDiv::-webkit-scrollbar-thumb {
    background: rgb(79, 79, 79);
    border-radius: 10px;
}

.sideNavbarDiv::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 30px;
}

@media(max-width:1199px) {
    .sideNavbarDiv {
        height: auto;
    }
}

@media(min-width:1200px) {
    .sideNavbarDiv {
        height: 100vh;
        overflow-y: scroll;
        width: 310px !important;
    }
}

.sideNavbarDiv .nav-item .nav-link span {
    font-size: 11px;
    font-weight: normal;
    cursor: pointer;
}

.detailsDiv {
    height: 100vh;
}

.MainpageContent {
    height: 100vh;
    z-index: -1;
}

.upperNavBarDiv {
    position: fixed;
    right: 0;
    width: 100%;
    z-index: 1;
    background-color: rgb(23, 168, 212);
}

.upperNavBarDiv .nav-item {
    color: white;
}

.sidebar .nav-item .nav-link[data-toggle=collapse]::after {
    width: 1rem;
    text-align: center;
    float: right;
    vertical-align: 0;
    border: 0;
    font-weight: 900;
    content: '\2756';
    font-family: 'Font Awesome 5 Free'
}

.sidebar .nav-item .nav-link[data-toggle=collapse].collapsed::after {
    content: '\27A9'
}

.sidebar .nav-item .collapse .collapse-inner a {
    cursor: pointer;
}

@media (max-width:768px) {
    .upperNavBarDiv .menuDiv {
        margin-left: 100px;
    }
}

.bellIcon {
    background-color: rgba(255, 255, 255, 0.196);
    padding: 5px 8px;
    border-radius: 5px;
    color: white;
}

.bellIcon2 {
    background-color: rgba(255, 255, 255, 0.196);
    padding: 2px 5px;
    border-radius: 5px;
    color: white;
}

.MainpageContent .div1 {
    margin-top: 95px;
}

.sidebar-brand-icon {
    width: 100px;
    height: 100px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar-brand-icon img {
    width: 100%;
    opacity: 0.8;
}

@media (min-width:768px) {
    .divMainTxt {
        right: 0px;
    }

    .dataTable_search {
        display: flex;
        justify-content: end;
        align-items: center;
    }
}

@media (min-width:992px) {
    .divMainTxt {
        right: 60px;
    }
}

@media (min-width:1200px) {
    .divMainTxt {
        right: 100px;
    }
}

.dataTable_length {
    padding-top: 6px;
}

.dataTable_length select {
    width: max-content;
}


.dataTable_search label {
    padding-top: 10px;
    margin-right: 10px;
}

.dataTable_search input {
    width: 250px;
}

.table_text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.table_pagination {
    padding-top: 11px;
    padding-bottom: 0px;
    right: 10px;
}

.table_action_btn,
.correct,
.cancel {
    width: max-content;
    padding: 5px 10px;
    border: 1px solid rgba(171, 171, 171, 0.707);
    cursor: pointer;
}

.table_action_btn_div{
    display: flex;
    padding: 2px;
}

.correct{
    border: 1px solid rgba(111, 169, 106, 0.334);
    box-shadow: 1px 1px 2px 1px rgb(111, 169, 106);
    background-color:rgb(6, 153, 18);
    border-radius: 2px;
    color: white;
}

.cancel{
    border: 1px solid rgba(139, 4, 4);
    box-shadow: 1px 1px 2px 1px rgba(139, 4, 4, 0.411);
    background-color:rgb(139, 4, 4);
    border-radius: 2px;
    color: white;
    margin-left: 3px;
}

.correct:hover {
    background-color: rgb(3, 116, 13);
}

.cancel:hover {
    background-color: rgb(98, 4, 4);
}

.table_action_btn a {
    color: rgb(43, 43, 43);
    text-decoration: none;
}

.table_action_btn .resubmit {
    font-weight: bold;
    color: red;
}

.table_pagination .pagination .page-item a {
    color: rgb(80, 80, 80);
}

.addNew_btn {
    background-color: rgb(17, 167, 221);
    border: 1px solid rgb(63, 160, 205);
    color: white;
    padding: 3px 10px;
    font-size: 14px;
}

.addNew_btn:hover {
    background-color: rgb(7, 140, 188);
}

.rowElementMake {
    width: 10px;
}

.rowElementMake label {
    display: block;
    justify-content: center;
    width: max-content;
    font-size: 12px;
}

.table_body tr td {
    vertical-align: middle;
    text-align: center;
}

.table th {
    font-size: 14px;
}

.table td {
    font-size: 13px;
}

.table .id {
    width: 120px;
}

.table .action {
    width: 110px;
}

.table .status span {
    padding: 3px 8px;
    width: max-content;
    color: white;
    border-radius: 5px;
}

.empProfileImgdIV {
    display: flex;
    justify-content: center;
    align-items: center;
}

.empProfiledIV {
    font-size: 14px;
}

.empProfiledIV label {
    font-weight: bold;
}

.bg-login-image {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: auto;
}

.bg-login-image img {
    width: 60%;
}

.bg-red-ligth {
    background-color: rgb(255, 245, 245);
}

.loginDiv {
    box-shadow: 2px 2px 20px 2px rgb(182, 182, 182);
}

.tableDiv {
    height: 55vh;
    overflow-y: scroll;
}

.cardHeaderTitle h6 {
    cursor: pointer;
    background-color: rgb(225, 225, 225);
    /* width: max-content; */
    padding: 8px 5px;
    text-align: center;
    text-shadow: 2px 1px 1px white;
}

.cardHeaderTitle h6:hover {
    background-color: rgb(212, 212, 212);
    /* width: max-content; */
    text-align: center;
}

/* 
.cardHeaderTitle .active {
    background-color: rgb(233, 233, 233);
    max-width: max-content;
} */

/* ///// Pre loader Animation Css Start  /// */
.loader-container {
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    width: 90vw;
    height: 100vh;
    z-index: 1058;
}

.loadingDiv {
    width: fit-content;
    font-weight: bold;
    font-family: monospace;
    font-size: 30px;
    clip-path: inset(0 100% 0 0);
    animation: l5 1.6s steps(30) infinite alternate;
    margin: auto;
    transform: translate(0%, 500%);
}

.loadingDiv:before {
    content: "Requesting...";
    color: black;
}

@keyframes l5 {
    to {
        clip-path: inset(0 -1ch 0 0)
    }
}

/* ///// Pre loader Animation Css End  /// */
.profimgDiv {
    width: 150px;
    height: 150px;
    overflow: hidden;
    margin: auto;
    position: relative;
}

.profimgDiv img {
    height: 100%;
}

.profimgDiv i {
    position: absolute;
    color: black;
    background-color: rgb(252, 252, 252);
    border: 1px solid rgb(233, 230, 230);
    padding: 1px 5px;
    border-radius: 5px;
    bottom: 0;
    right: 0;
    transform: translate(-80%, -10%);
    cursor: pointer;
}

.profimgDiv i:hover {
    background-color: rgb(233, 233, 233);

}

.profileSubDetails p {
    font-size: 13px;
}

.profileDetailsDiv {
    font-size: 13px;
}

.profileDetailsDiv input {
    font-size: 12px;
}

.profileHistoryOfficerDiv {
    background-color: rgb(255, 255, 255);
    text-align: center;

}

.profileHistoryOfficerDiv .txt1 {
    font-weight: bold;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.profileHistoryOfficerDiv .txt2 {
    font-size: 10px;
    margin: 0;
    padding: 0;
    margin-top: -5px;
    color: rgb(166, 166, 166);
}

.profileHistoryOfficerDiv .txt3 {
    font-size: 12px;
    font-weight: bold;
}

.profileUpdateBtn {
    text-align: end;
}

.profileUpdateBtn button {
    border: 1px solid rgb(173, 210, 247);
    padding: 5px 8px;
    border-radius: 4px;
    font-weight: bold;
    background-color: rgb(17, 159, 210);
    color: white;
    cursor: pointer;
}

.profileUpdateBtn button:hover {
    background-color: rgb(34, 155, 199);
}

/* ///////////// user profile css */
.submitBtn {
    padding-top: 6px;
    cursor: pointer;
}

.submitBtn:hover {
    background-color: rgb(240, 240, 240);
}

.adminIcon {
    background-color: rgb(6, 107, 147);
    width: max-content;
    padding: 5px 12px;
    border-radius: 50%;
    color: white;
}

.userdashDiv {
    padding: 8px 8px;
}

.userdashDiv i {
    font-size: 18px;
}

.empDPaddDiv {
    background-color: rgb(245, 251, 252);
    border: 1px solid rgb(213, 207, 207);
    border-radius: 5px;
}

.empDPaddDiv table tr {
    cursor: pointer;
}

.empDPaddDiv input {
    height: 25px;
    font-size: 14px;
}

.empDPaddDiv table tbody {
    line-height: 10px;
}

.empDPaddDiv table thead {
    line-height: 10px;
}

.secHeadEmpstatus {
    padding: 4px 30px;
    padding-top: 7px;
    font-weight: bold;
    color: white;
    border-radius: 50px;
    font-size: 11px;
}

.pending {
    background-color: rgba(224, 169, 75, 0.237);
    border-radius: 50px;
    padding: 1px 5px;
    color: rgb(191, 133, 33);
}

.approved {
    background-color: rgba(107, 246, 92, 0.299);
    color: rgb(30, 134, 18);
    border-radius: 50px;
    padding: 1px 5px;
}

.cancelled {
    background-color: rgba(246, 92, 92, 0.188);
    border-radius: 50px;
    padding: 1px 5px;
    color: rgb(235, 41, 41);
}

.completed {
    background-color: rgba(145, 252, 133, 0.299);
    color: rgb(16, 109, 5);
    border-radius: 50px;
    padding: 1px 5px;
}

.resubmitted {
    background-color: rgba(210, 133, 252, 0.299);
    color: rgb(81, 5, 109);
    border-radius: 50px;
    padding: 1px 5px;
}

.table_body tr {
    color: red;
    background-color: green;
}

.headerNotificationCount {
    background-color: rgba(255, 0, 0, 0.093);
    padding: 5px 10px;
    border-radius: 4px;
    color: rgb(135, 9, 9);
    font-weight: bold;
}

.deactivateUs span {
    border-radius: 10px;
    padding: 3px 6px;
    position: relative;
    z-index: 1;
}

.deactivateUs span::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    z-index: -1;
    animation: 1s at1 linear alternate-reverse infinite;
}


@keyframes at1 {
    0% {
        transform: scale(1);
        background-color: rgba(251, 0, 0, 0.333);
    }

    50% {
        transform: scale(1.05);
        background-color: rgba(255, 122, 122, 0.248);
        box-shadow: 1px 1px 10px 1px rgb(198, 198, 198);
    }

    100% {
        transform: scale(1.13);
        background-color: rgba(253, 42, 42, 0.064);
        box-shadow: 1px 1px 10px 1px rgb(170, 170, 170);
    }
}

.actingDataOption {
    font-size: 13px;
}

.inputBorder {
    border: 1px solid rgb(147, 147, 147);
    outline: none;
}

.pdfIcon {
    background-color: rgb(169, 190, 255);
    color: black;
    padding: 2px;
    border-radius: 5px;
    cursor: pointer;
}

.sideNotifyIcon {
    background-color: rgb(154, 0, 0);
    color: white;
    padding: 3px 4px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 5px;
    margin-left: 10px;
}

.notificationAni {
    position: relative;
}

.notificationAni::before {
    content: '';
    position: absolute;
    background-color: red;
    border-radius: 10px;
    width: 12px;
    height: 12px;
    top: 2px;
    right: -20px;
    animation: 1s at1 linear alternate-reverse infinite;
}

.notificationAniA2 {
    position: relative;
}

.notificationAniA2::before {
    content: '';
    position: absolute;
    background-color: red;
    border-radius: 10px;
    width: 12px;
    height: 12px;
    top: 2px;
    right: -40px;
    animation: 1s at1 linear alternate-reverse infinite;
}

@keyframes at1 {
    0% {
        transform: scale(1);
        background-color: rgba(251, 0, 0, 0.258);
    }

    25% {
        transform: scale(1);
        background-color: rgba(251, 0, 0, 0.464);
        box-shadow: 1px 1px 10px 1px rgba(255, 0, 0, 0.14);
    }

    50% {
        transform: scale(1.05);
        background-color: rgba(251, 0, 0, 0.523);
        box-shadow: 1px 1px 10px 1px rgba(254, 1, 1, 0.312);
    }

    75% {
        transform: scale(1.05);
        background-color: rgba(251, 0, 0, 0.701);
        box-shadow: 1px 1px 10px 1px rgba(255, 0, 0, 0.419);
    }

    100% {
        transform: scale(1.13);
        background-color: rgb(253, 42, 42);
        box-shadow: 1px 1px 10px 1px rgba(255, 12, 12, 0.707);
    }
}


.cancelledBtn {
    background-color: rgb(255, 222, 222);
    border: 1px solid rgb(177, 177, 177);
    font-weight: bold;
    font-size: 12px;
}

.cancelledBtn:hover {
    background-color: rgb(213, 213, 213);
}

/* Leave News Card */
.leaveNewsCard .card-title {
    background-color: rgba(255, 36, 36, 0.075);
    color: red;
    padding: 5px 10px;
    border-radius: 9px;
    font-size: 12px;
    align-items: center;
    text-align: center;
    font-weight: bold;
}

.leaveNewsCard .card-subtitle {
    font-weight: bold;
    font-size: 12px;
    color: black;
}

.leaveNewsCard .card-text {
    font-size: 11px;
}

.leaveNewsCard .subleaveNewsCard .card-body {
    padding: 2px;
}

.leaveNewsCard .subleaveNewsCard .dateLable label {
    font-size: 9px;
    font-weight: bold;
}

.leaveNewsCard .subleaveNewsCard label {
    font-size: 11px;
}

.leaveNewsCard .officer p {
    font-size: 11px;
    margin: 2px;
    padding: 0;
    margin-top: 5px;
}

.leaveNewsCard .officer span {
    padding: 2px 8px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50px;
}

.leaveNewsCard .animation {
    box-shadow: 2px 2px 20px 2px rgba(210, 1, 1, 0.178);
    animation: 1s buttonRipple linear alternate-reverse infinite;
}

.leaveNewsCard .rsBtn {
    background-color: rgb(118, 2, 2);
    color: white;
    border: 1px solid rgba(11, 134, 148, 0.179);
    font-size: 12px;
    font-weight: bold;
    border-radius: 8px;
    padding: 1px 12px;
    /* box-shadow: 2px 2px 10px 2px rgb(139, 139, 139); */
    /* animation: 1s buttonRipple linear alternate-reverse infinite; */
}

.leaveNewsCard .rsBtn:hover {
    background-color: rgb(170, 4, 4);
}

@keyframes buttonRipple {
    0% {
        box-shadow: 2px 2px 20px 2px rgba(210, 1, 1, 0.173);
    }

    50% {
        box-shadow: 2px 2px 20px 2px rgba(182, 0, 0, 0.486);
    }

    100% {
        box-shadow: 2px 2px 20px 2px rgba(194, 1, 1, 0.619);
    }
}

/* @keyframes buttonRipple{
    0%{
        box-shadow: 2px 2px 20px 2px rgba(210, 1, 1, 0.084);
    }
    50%{
        box-shadow: 2px 2px 20px 2px rgba(182, 0, 0, 0.173);
    }
    100%{
        box-shadow: 2px 2px 20px 2px rgba(194, 1, 1, 0.315);
    }
} */



.userNewsViewDiv .card {
    /* background-color: red; */
    padding-bottom: 2px;
    border: 1px solid rgba(217, 217, 217, 0.797);
}

.userNewsViewDiv .card-header {
    padding: 10px 20px 0px 30px;
    font-weight: bold !important;
}

.userNewsViewDiv .NewsCard {
    margin-bottom: 2px;
    background-color: rgba(236, 236, 236, 0.599);
    margin: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}

.userNewsViewDiv .card-body {
    padding: 10px 20px 10pp 20px;
    height: 200px;
    overflow: auto;
}

.userNewsViewDiv .card-body::-webkit-scrollbar {
    width: 10px;
}

.userNewsViewDiv .card-body::-webkit-scrollbar-thumb {
    background: rgba(162, 162, 162, 0.51);
    border-radius: 10px;
}

.userNewsViewDiv .card-body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 30px;
}

.userNewsViewDiv .NewsCard .card-subtitle {
    font-weight: bold;
    font-size: 13px;
    margin-top: 1px;
    background-color: rgb(225, 225, 225);
    width: max-content;
    padding: 5px 20px 3px 20px;
    border-radius: 4px;
    width: 290px;
    word-break: break-all;
}

.userNewsViewDiv .NewsCard .card-text {
    font-size: 12px;
    padding: 0px 20px 10px 20px;
}

.userNewsViewDiv .NewsCard:hover {
    background-color: #ececec;
    cursor: pointer;
}

.userNewsViewDiv .NewsCard a {
    font-weight: bold;
    font-size: 12px;
    background-color: rgba(150, 2, 2, 0.767);
    border-radius: 4px;
    color: white;
    padding: 2px 10px;
}

#news-slider {
    margin-top: 1px;
    padding-left: 15px;
    background-color: rgba(231, 231, 231, 0.903);
}

.post-slide {
    margin: 10px;
    box-shadow: 1px 9px 20px -9px #bbcbd8;
}

.owl-controls .owl-buttons .owl-prev:hover,
.owl-controls .owl-buttons .owl-next:hover {
    background-color: rgb(238, 238, 238);
}

.owl-controls .owl-buttons .owl-prev {
    position: absolute;
    top: -3%;
    left: 15px;
    padding: 0px 10px;
    border-radius: 50px;
    box-shadow: 3px 14px 25px -10px #92b4d0;
    transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-next {
    background: #fff;
    position: absolute;
    top: -3%;
    right: 15px;
    padding: 0px 10px;
    border-radius: 50px;
    box-shadow: -3px 14px 25px -10px #92b4d0;
    transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after {
    content: "\21A2";
    font-family: FontAwesome;
    color: #333;
    font-size: 20px;
}

.owl-controls .owl-buttons .owl-next:after {
    content: "\21A3";
}

.dashboardDateFilterDiv {
    border: 1px solid rgb(213, 213, 213);
    padding-top: 6px;
    padding-bottom: 1px;
    margin-bottom: 5px;
    background-color: #f3f5f6cd;
}

.dashboardDateFilterDiv select {
    font-size: 12px;
}

.dashboardDateFilterDiv span {
    font-size: 12px;
    font-weight: bold;
}

.messageTable .mbtn {
    background-color: rgb(255, 227, 227);
    color: rgb(201, 0, 0);
    border: none;
    letter-spacing: .9px;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 8px;
}

.messageTable .mbtn:hover {
    background-color: rgb(255, 211, 211);
}

.messageTable .read {
    background-color: rgb(217, 255, 217);
    color: rgb(5, 102, 5);
}

.messageTable .read:hover {
    background-color: rgb(189, 255, 189);
}

/* Admin User leave report css */
.adminleaveReportDiv .heading {
    background-color: rgb(225, 230, 232);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 10px;
}

.adminleaveReportDiv .heading h5 {
    font-weight: bold;
    padding-top: 7px;
}

.adminleaveReportDiv .heading button {
    background-color: #1a8d57;
    font-weight: bold;
    border: 1px solid rgb(21, 150, 4);
    padding: 2px 10px;
    color: white;
    font-size: 14px;
    transition: .7s;
    border-radius: 4px;
}

.adminleaveReportDiv .heading button:hover {
    background-color: #096d3f;
    border: 1px solid rgb(14, 108, 2);
}

.adminleaveReportDiv .searchingDiv {
    background-color: rgb(237, 241, 243);
    box-shadow: 2px 2px 20px 2px rgb(207, 207, 207);
    padding: 10px;
}

.adminleaveReportDiv .searchingDiv .section {
    text-align: start;
}

.adminleaveReportDiv .searchingDiv .section label {
    font-size: 14px;
    font-weight: bold;
}

.adminleaveReportDiv .searchingDiv .section select {
    font-size: 14px !important;
}


.adminleaveReportDiv .searchingDiv .section input[type="text"] {}

.adminleaveReportDiv .searchingDiv .section button {
    background-color: #1a8d57;
    border: 1px solid rgb(21, 150, 4);
    border-radius: 4px;
    color: white;
    font-weight: bold;
    padding: 2px 10px;
    font-size: 14px;
    margin-top: 10px;
}

.bsIcon {
    background-color: #e8e8e8;
    padding: 4px 9px;
    font-weight: bold;
    border-radius: 6px;
    color: black;
    cursor: pointer;
    font-size: 13px;
}

.bsIcon:hover {
    background-color: #dbdbdb;
}


.leaveSppiner {
    background-color: rgba(246, 246, 246, 0.574);
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 55%;
    height: 70%;
    margin: auto;
    z-index: 999999;
}

.leaveSppiner .spinner-border {
    width: 100px;
    height: 100px;
    font-size: 20px;
    color: rgb(101, 0, 0);
}

.permissionBtn{
    /* background-color: rgb(2, 88, 20); */
    color: black;
    font-size: 14px;
    padding: 2px 10px;
    border: 1px solid white;
    border-radius: 2px;
    font-weight: bold;
    transition: 0.5s ease-in-out;
}

.permissionBtn:hover{
    background-color: rgb(2, 88, 20);
    color: white;
    border: 1px solid rgb(24, 100, 5);
}

.superadminPermissionDiv{
    background-color: #f5f5f5;
}
.superadminPermissionDiv label{
    color: black;
}

.desktopIcon{
    font-size: 12px;
    color: black;
    font-weight: bold;
}
