@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    /*font-family: "Raleway", sans-serif;*/
    font-optical-sizing: auto;
    color: #717171;
    /*font-size: 15px;*/
    font-size: 1rem;
    background-color: #F6F7FC;
}

a {
    /*font-size: 15px;*/
    font-size: 1rem;
}

.custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.login {
    background-color: #F6F7FC;
    height: 100vh;
}

    .login a {
        font-size: 16px;
        font-weight: 600;
    }

.myform {
    position: relative;
    display: flex;
    padding: 30px;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    border-radius: 0;
    outline: 0;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
}

.login h3 {
    font-size: 20px;
    margin: 10px 0 20px;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    /*font-family: "Raleway", sans-serif;*/
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
}

.fieldGradient {
    border: solid 2px #DCDCDC;
    border-radius: 0;
    min-height: 48px;
    font-size: 14px;
    color: #000;
    /*font-family: "Raleway", sans-serif;*/
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 500;
}

    .fieldGradient::-moz-placeholder {
        color: #717171;
    }

    .fieldGradient::placeholder {
        color: #717171;
    }

.btnGradient {
    background: var(--head, linear-gradient(90deg, #145748 0.01%, #066098 99.98%));
    border-radius: 0;
    min-height: 48px;
    font-size: 16px;
    color: #fff;
    /*font-family: "Raleway", sans-serif;*/
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
    border: 0;
}

    .btnGradient:hover {
        color: #fff;
        background: var(--head, linear-gradient(90deg, #066098 0.01%, #145748 99.98%));
    }



.btnGray {
    background: #DCDCDC;
    border-radius: 0;
    /*min-height: 48px;*/
    font-size: 16px;
    color: #3D3D3D;
    /*font-family: "Raleway", sans-serif;*/
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
    border: 0;
}

    .btnGray:hover {
        color: #3D3D3D;
        background: #DCDCDC;
    }

.sidebar-heading {
    padding: 10px;
}

.custom-toggler {
    width: 34px;
    height: 34px;
    background-color: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    /*position: fixed;*/
    left: 220px;
    top: 20px;
    z-index: 100;
    cursor: pointer;
}

#wrapper.toggled .custom-toggler {
    left: 80px;
}

#wrapper.toggled .sidebar {
    /*width: 100px;*/
    display:none !important;
}

.innerlogo {
    display: block;
}

.logoSymbol {
    display: none;
}

#wrapper.toggled .logoSymbol {
    display: block;
}

#wrapper.toggled .innerlogo {
    display: none;
}

#wrapper .menuPart .list-group .menu {
    display: flex;
}

#wrapper.toggled .menuPart .list-group .menu {
    justify-content: center;
}

    #wrapper.toggled .menuPart .list-group .menu span {
        display: none;
    }

#wrapper.toggled .menu.dropdown-toggle::after {
    display: none;
}

#wrapper.toggled .btnGradient span {
    display: none;
}

#wrapper.toggled .btnGradient {
    width: 50px;
}

.logoutButtonBottom {
    position: fixed;
    width: 220px;
    left: 10px;
    right: 10px;
    bottom: 10px;
}

.menu.dropdown-toggle::after {
    position: absolute;
    right: 5px;
    top: 16px;
}

.menu.dropdown-toggle.collapsed::after {
    transform: rotate(0deg);
}

.menu.dropdown-toggle::after {
    transform: rotate(180deg);
}

.sidebar {
    background-color: #fff;
    z-index: 99;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    width: 240px;
    position: fixed;
    padding: 0 10px;
}

#sidebar-wrapper {
    height: 100%;
    overflow-y: auto;
}

    #sidebar-wrapper .sidebar-heading {
        padding: 10px;
    }

    #sidebar-wrapper .list-group {
        padding: 0 12px;
    }

#wrapper.toggled #sidebar-wrapper {
    margin-left: 0;
}

#wrapper.toggled .custom-toggler svg {
    transform: rotate(180deg);
}

@media (min-width: 992px) {
    #sidebar-wrapper {
        margin-left: 0;
    }

    #page-content-wrapper {
        min-width: 0;
        width: 100%;
        padding-left: 240px;
    }

    .toggled #page-content-wrapper {
        min-width: 0;
        width: 100%;
        padding-left: 0px;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 100px;
    }
}

@media (max-width: 991.99px) {
    .sidebar {
        left: -260px;
    }

    #wrapper.toggled .sidebar {
        left: 0;
        top: 70px;
        width: 270px;
        display:block !important;
    }

    .custom-toggler {
        position: initial;
    }

    #wrapper.toggled .menuPart .list-group .menu {
        justify-content: start;
    }

        #wrapper.toggled .menuPart .list-group .menu span {
            display: block;
        }

    #wrapper.toggled .innerlogo {
        display: block;
    }

    #wrapper.toggled .logoSymbol {
        display: none;
    }
}

.menuPart {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100vh - 160px);
    overflow-y: auto;
}

.menu {
    background-color: transparent;
    font-size: 18px;
    color: #3D3D3D;
    font-weight: 600;
    border: 0;
    padding: 10px 0;
    border-radius: 10px !important;
    display: flex;
    justify-content: start;
}

    .menu:hover, .menu.active {
        background-color: transparent;
        color: #037DCA;
        text-decoration: none;
    }

        .menu:hover svg path, .menu.active svg path {
            fill: #037DCA;
        }

    .menu span {
        margin-left: 10px;
    }

.menu-ul {
    background-color: #3D3D3D;
}

    .menu-ul li a {
        border-radius: 0 !important;
        background-color: transparent;
        font-size: 14px;
        color: #fff;
        font-weight: 500;
        padding: 10px 8px;
        margin-bottom: 0;
    }

        .menu-ul li a:hover {
            color: rgba(255, 255, 255, 0.7);
        }

    .menu-ul li .menu-ul-li li {
        list-style-type: disc;
        list-style-position: inside;
        color: #fff;
        padding: 5px 5px 5px 15px;
    }

        .menu-ul li .menu-ul-li li a {
            font-size: 14px;
            font-weight: 400;
            padding: 0;
            text-decoration: none;
        }

.customDropdownMenu button {
    background-color: #fff;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #3D3D3D;
    border-radius: 0;
    border: 0;
    padding: 5px;
}

    .customDropdownMenu button:hover {
        background-color: #fff;
    }

    .customDropdownMenu button .avatar {
        width: 30px;
        height: 30px;
    }

        .customDropdownMenu button .avatar img {
            width: 30px;
            height: 30px;
            border-radius: 100%;
        }

.customDropdownMenu .dropdown-menu {
    border: 0;
    border-radius: 0;
    width: 100%;
}

.customDropdownMain button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    border-radius: 0;
    border: 0;
    padding: 10px;
    width: 100%;
}

.customDropdownMain .dropdown-menu {
    border: 0;
    border-radius: 0;
    width: 100%;
}

.dropdownOrange button {
    background: rgb(254, 145, 96);
    background: linear-gradient(90deg, rgb(254, 145, 96) 0%, rgb(255, 181, 147) 100%);
}

    .dropdownOrange button:hover {
        color: #fff;
        background: rgb(254, 145, 96);
        background: linear-gradient(90deg, rgb(254, 145, 96) 0%, rgb(255, 181, 147) 100%);
    }

.dropdownOrange .dropdown-menu {
    background: rgb(254, 145, 96);
    background: linear-gradient(90deg, rgb(254, 145, 96) 0%, rgb(255, 181, 147) 100%);
}

    .dropdownOrange .dropdown-menu .dropdown-item {
        color: #fff;
    }

        .dropdownOrange .dropdown-menu .dropdown-item:hover {
            background-color: transparent;
        }

.dropdownTeal button {
    background: rgb(27, 161, 170);
    background: linear-gradient(90deg, rgb(27, 161, 170) 0%, rgb(22, 211, 209) 100%);
}

    .dropdownTeal button:hover {
        color: #fff;
        background: rgb(27, 161, 170);
        background: linear-gradient(90deg, rgb(27, 161, 170) 0%, rgb(22, 211, 209) 100%);
    }

.dropdownTeal .dropdown-menu {
    background: rgb(27, 161, 170);
    background: linear-gradient(90deg, rgb(27, 161, 170) 0%, rgb(22, 211, 209) 100%);
}

    .dropdownTeal .dropdown-menu .dropdown-item {
        color: #fff;
    }

        .dropdownTeal .dropdown-menu .dropdown-item:hover {
            background-color: transparent;
        }

.dropdownPink button {
    background: rgb(255, 96, 115);
    background: linear-gradient(90deg, rgb(255, 96, 115) 0%, rgb(249, 142, 155) 100%);
}

    .dropdownPink button:hover {
        color: #fff;
        background: rgb(255, 96, 115);
        background: linear-gradient(90deg, rgb(255, 96, 115) 0%, rgb(249, 142, 155) 100%);
    }

.dropdownPink .dropdown-menu {
    background: rgb(255, 96, 115);
    background: linear-gradient(90deg, rgb(255, 96, 115) 0%, rgb(249, 142, 155) 100%);
}

    .dropdownPink .dropdown-menu .dropdown-item {
        color: #fff;
    }

        .dropdownPink .dropdown-menu .dropdown-item:hover {
            background-color: transparent;
        }

.dropdownGreen button {
    background: rgb(5, 188, 124);
    background: linear-gradient(90deg, rgb(5, 188, 124) 0%, rgb(13, 233, 153) 100%);
}

    .dropdownGreen button:hover {
        color: #fff;
        background: rgb(5, 188, 124);
        background: linear-gradient(90deg, rgb(5, 188, 124) 0%, rgb(13, 233, 153) 100%);
    }

.dropdownGreen .dropdown-menu {
    background: rgb(5, 188, 124);
    background: linear-gradient(90deg, rgb(5, 188, 124) 0%, rgb(13, 233, 153) 100%);
}

    .dropdownGreen .dropdown-menu .dropdown-item {
        color: #fff;
    }

        .dropdownGreen .dropdown-menu .dropdown-item:hover {
            background-color: transparent;
        }

.topBox {
    padding: 20px;
}

.OrangeBox {
    background: rgb(254, 145, 96);
    background: linear-gradient(90deg, rgb(254, 145, 96) 0%, rgb(255, 181, 147) 100%);
}

.TealBox {
    background: rgb(27, 161, 170);
    background: linear-gradient(90deg, rgb(27, 161, 170) 0%, rgb(22, 211, 209) 100%);
}

.PinkBox {
    background: rgb(255, 96, 115);
    background: linear-gradient(90deg, rgb(255, 96, 115) 0%, rgb(249, 142, 155) 100%);
}

.GreenBox {
    background: rgb(5, 188, 124);
    background: linear-gradient(90deg, rgb(5, 188, 124) 0%, rgb(13, 233, 153) 100%);
}

.font18Whte400 {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
}

.font24Whte600 {
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    line-height: 20px;
}

.font14White400 {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
}

.btnWhiteSM {
    font-size: 14px;
    color: #3D3D3D;
    font-weight: 500;
    background-color: #fff;
    padding: 5px 10px;
    text-decoration: none;
}

.tablePartHead {
    background: rgb(0, 133, 207);
    background: linear-gradient(0deg, rgb(0, 133, 207) 0%, rgb(0, 180, 244) 100%);
    padding: 20px;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}

.bgWhite {
    background-color: #fff;
}

.tableCustom .table thead th {
    background-color: #E7E7E7;
    /*font-size: 11px;*/
    font-size: 16px;
    color: #000;
    font-weight: 600;
}

.tableCustom .table tbody td {
    /*font-size: 11px;*/
    font-size: 15px;
    color: #3D3D3D;
    font-weight: 400;
}

.linkRed10 {
    font-size: 10px;
    color: #C70000;
    font-weight: 600;
    text-decoration: none;
}

.fontRed10 {
    font-size: 10px;
    color: #C70000;
    font-weight: 600;
}

.fontRed11 {
    font-size: 11px !important;
    color: #C70000 !important;
    font-weight: 600 !important;
}

.px-5px {
    padding: 0 3px;
}

.form-group {
    display: block;
}

    .form-group input {
        padding: 0;
        height: initial;
        width: initial;
        margin-bottom: 0;
        display: none;
        cursor: pointer;
    }

    .form-group label {
        position: relative;
        cursor: pointer;
        font-size: 14px;
        color: #000;
        font-weight: 500;
    }

        .form-group label:before {
            content: "";
            -webkit-appearance: none;
            background-color: transparent;
            border: 1px solid #3D3D3D;
            padding: 10px;
            display: inline-block;
            position: relative;
            vertical-align: middle;
            cursor: pointer;
            margin-right: 5px;
        }

    .form-group input:checked + label:after {
        content: "";
        display: block;
        position: absolute;
        top: 2px;
        left: 9px;
        width: 6px;
        height: 14px;
        border: solid #3D3D3D;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

.fontBold {
    font-weight: 600;
}

.btnBlueSM {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    background-color: #037DCA;
    padding: 5px 10px;
    border: 0;
    text-decoration: none;
    min-width: 60px;
}

    .btnBlueSM:hover {
        color: #fff;
        background: rgba(3, 125, 202, 0.8);
    }


.btnBlackSM {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    background-color: #000; /* Black background */
    padding: 5px 10px;
    border: 0;
    text-decoration: none;
    min-width: 60px;
}

    .btnBlackSM:hover {
        color: #fff;
        background: rgba(0, 0, 0, 0.8); /* Slight transparency on hover */
    }


.btnRedSM {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    background-color: #C70000;
    padding: 5px 10px;
    border: 0;
    text-decoration: none;
    min-width: 60px;
}

    .btnRedSM:hover {
        color: #fff;
        background: rgba(199, 0, 0, 0.8);
    }

.btnGradientSM {
    background: var(--head, linear-gradient(90deg, #145748 0.01%, #066098 99.98%));
    /*font-size: 12px;*/
    color: #fff;
    font-weight: 500;
    padding: 5px 10px;
    border: 0;
    text-decoration: none;
    min-width: 60px;
}

    .btnGradientSM:hover {
        color: #fff;
        background: var(--head, linear-gradient(90deg, #066098 0.01%, #145748 99.98%));
    }

    .btnGradientSM:disabled {
        background: #ccc; /* Gray background for the disabled state */
        color: #999; /* Lighter color for the text */
        cursor: not-allowed; /* Show 'not-allowed' cursor for disabled buttons */
        opacity: 0.6; /* Optional: make the button slightly transparent */
    }

.btnBgGraySM {
    background: var(--head, linear-gradient(90deg, #808080 0.01%, #b0b0b0 99.98%));
    /*font-size: 12px;*/
    color: #fff;
    font-weight: 500;
    padding: 5px 10px;
    border: 0;
    text-decoration: none;
    min-width: 60px;
}

.btnGraySM {
    background: #3D3D3D;
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    padding: 5px 10px;
    border: 0;
    text-decoration: none;
    min-width: 60px;
}

    .btnGraySM:hover {
        color: #fff;
        background: rgba(61, 61, 61, 0.8);
    }

.pendingCol {
    width: 16px;
    height: 16px;
    background-color: #FFAF13;
    margin-right: 5px;
}

.approvedCol {
    width: 16px;
    height: 16px;
    background-color: #00B733;
    margin-right: 5px;
}

.rejectCol {
    width: 16px;
    height: 16px;
    background-color: #C70000;
    margin-right: 5px;
}

.currentWeekCol {
    width: 16px;
    height: 16px;
    background-color: Aqua;
    margin-right: 5px;
}

.pmApprovedCol {
    width: 16px;
    height: 16px;
    background-color: #B82EE6;
    margin-right: 5px;
}

.holidayCol {
    width: 16px;
    height: 16px;
    background-color: #fffca4;
    margin-right: 5px;
}

.font12Sec {
    font-size: 12px;
    color: #3D3D3D;
    font-weight: 500;
}

.font14Black700 {
    font-size: 14px;
    color: #000;
    font-weight: 700;
}

.dashboardBoxHeight {
    height: 250px;
    overflow: auto;
}

.font11Sec {
    /*font-size: 11px;*/
    font-size: 14px;
    color: #3D3D3D;
    font-weight: 600;
    text-decoration: none;
}

    .font11Sec:hover {
        color: #000;
    }

.link13Blue {
    font-size: 13px;
    color: #037DCA;
    font-weight: 700;
    text-decoration: none;
}

    .link13Blue:hover {
        color: #037DCA;
    }

.font13Sec {
    font-size: 13px;
    color: #3D3D3D;
    font-weight: 500;
}

.modalCustom .modal-content {
    border-radius: 0;
}

    .modalCustom .modal-content .modal-header .modal-title {
        font-size: 18px;
        color: #000;
        font-weight: 500;
    }

.labelCustom {
    font-size: 14px;
    color: #3D3D3D;
    font-weight: 500;
}

    .labelCustom span {
        color: #C70000;
        font-size: 20px;
    }

.inputCustom {
    border: solid 1px #E7E7E7;
    border-radius: 0;
    min-height: 40px;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    background-color: #fff;
}

    .inputCustom::-moz-placeholder {
        color: #3D3D3D;
        background-color: #fff;
    }

    .inputCustom::placeholder {
        color: #3D3D3D;
        background-color: #fff;
    }

.font14Sec400 {
    font-size: 14px;
    color: #3D3D3D;
    font-weight: 400;
}

.font14Black500 {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.inputGroupCustom input {
    border: solid 1px #DCDCDC;
    border-right: 0;
    border-radius: 0;
    min-height: 35px;
    font-size: 14px;
    color: #000;
    /*font-family: "Raleway", sans-serif;*/
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 500;
}

.inputGroupCustom .btnInputGroup {
    background: #037DCA;
    border-radius: 0;
    min-height: 30px;
    font-size: 14px;
    color: #fff;
    /*font-family: "Raleway", sans-serif;*/
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 500;
    border: 0;
}

    .inputGroupCustom .btnInputGroup:hover {
        color: #fff;
        background: rgba(3, 125, 202, 0.8);
    }

.btnBlueMD {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    background-color: #037DCA;
    padding: 5px 10px;
    min-height: 35px;
    border: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
}

    .btnBlueMD:hover {
        color: #fff;
        background: rgba(3, 125, 202, 0.8);
    }

.btnGradientMD {
    background: var(--head, linear-gradient(90deg, #145748 0.01%, #066098 99.98%));
    border-radius: 0;
    min-height: 35px;
    /*font-size: 14px;*/
    color: #fff;
    /*font-family: "Raleway", sans-serif;*/
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 500;
    border: 0;
}

    .btnGradientMD:hover {
        color: #fff;
        background: var(--head, linear-gradient(90deg, #066098 0.01%, #145748 99.98%));
    }

.btnGrayMD {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    background-color: #3D3D3D;
    padding: 5px 10px;
    min-height: 35px;
    border: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
}

    .btnGrayMD:hover {
        color: #fff;
        background: rgba(61, 61, 61, 0.8);
    }

.bgGray {
    background-color: #E7E7E7;
}

.inputSMRed {
    border-radius: 0;
    border: solid 1px #000;
    font-size: 10px;
    font-weight: 500;
    background-color: #ee6f58;
    color: #fff;
    padding: 2px;
    height: 20px;
    width: 64px;
    text-align: left;
}

    .inputSMRed::-moz-placeholder {
        background-color: #ee6f58;
        color: #fff;
        border-radius: 0;
    }

    .inputSMRed::placeholder {
        background-color: #ee6f58;
        color: #fff;
        border-radius: 0;
    }

.inputSMYellow {
    border-radius: 0;
    border: solid 1px #000;
    font-size: 10px;
    color: #000;
    font-weight: 500;
    background-color: #fffca4;
    padding: 2px;
    height: 20px;
    /*width: 70px;
    text-align: center;*/
    width: 64px;
    text-align: left;
}

.inputCustomeDate {
    border-radius: 0;
    border: solid 1px #000;
    font-size: 10px;
    color: #000;
    font-weight: 500;
    background-color: #fffca4;
    padding: 2px;
    height: 20px;
    /*width: 70px;
    text-align: center;*/
    width: 52px;
    text-align: left;
}

.inputSMYellow::-moz-placeholder {
    background-color: #fffca4;
    color: #000;
    border-radius: 0;
}

.inputSMYellow::placeholder {
    background-color: #fffca4;
    color: #000;
    border-radius: 0;
}

.inputSMRedHour {
    border-radius: 0;
    border: solid 1px #000;
    font-size: 10px;
    font-weight: 500;
    background-color: #ee6f58;
    color: #fff;
    padding: 2px;
    height: 20px;
    width: 40px;
    text-align: center;
}

    .inputSMRedHour::-moz-placeholder {
        background-color: #ee6f58;
        color: #fff;
        border-radius: 0;
    }

    .inputSMRedHour::placeholder {
        background-color: #ee6f58;
        color: #fff;
        border-radius: 0;
    }

.inputSMYellowHour {
    border-radius: 0;
    border: solid 1px #000;
    font-size: 10px;
    color: #000;
    font-weight: 500;
    background-color: #fffca4;
    padding: 2px;
    height: 20px;
    width: 40px;
    text-align: center;
}

    .inputSMYellowHour::-moz-placeholder {
        background-color: #fffca4;
        color: #000;
        border-radius: 0;
    }

    .inputSMYellowHour::placeholder {
        background-color: #fffca4;
        color: #000;
        border-radius: 0;
    }

.tableTimesheet .table thead th {
    background-color: #E7E7E7;
    font-size: 11px;
    color: #000;
    font-weight: 600;
    padding: 5px;
}

.tableTimesheet .table tbody td {
    font-size: 11px;
    color: #3D3D3D;
    font-weight: 400;
    padding: 5px;
    vertical-align: middle;
}

.tebleAlignCenter .table thead th {
    text-align: center;
}

.tebleAlignCenter .table tbody td {
    text-align: center;
}

.calenderTable .table {
    caption-side: top;
}

    .calenderTable .table thead th {
        background-color: #E7E7E7;
        font-size: 11px;
        color: #000;
        font-weight: 600;
        padding: 5px;
    }

    .calenderTable .table tbody td {
        font-size: 11px;
        color: #3D3D3D;
        font-weight: 400;
        padding: 5px;
        vertical-align: middle;
    }

.accordianCustom .accordion .accordion-item .accordion-header .accordion-button {
    background-color: #EFF7FC;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    padding: 10px;
}

.accordianCustom .accordion .accordion-item .accordion-body {
    padding: 20px;
}

.linkList {
    padding: 0;
    margin: 0;
}

    .linkList li {
        margin-bottom: 5px;
        list-style-position: inside;
    }

        .linkList li a {
            font-size: 12px;
            color: #000;
            text-decoration: none;
            font-weight: 600;
        }
/*# sourceMappingURL=custom.css.map */

.whitecheckboxformgroup {
    display: block;
}

    .whitecheckboxformgroup input {
        padding: 0;
        height: initial;
        width: initial;
        margin-bottom: 0;
        display: none;
        cursor: pointer;
    }

    .whitecheckboxformgroup label {
        position: relative;
        cursor: pointer;
        font-size: 14px;
        color: #fff;
        font-weight: 500;
    }

        .whitecheckboxformgroup label:before {
            content: '';
            -webkit-appearance: none;
            background-color: transparent;
            border: 1px solid #fff;
            padding: 10px;
            display: inline-block;
            position: relative;
            vertical-align: middle;
            cursor: pointer;
            margin-right: 5px;
        }

    .whitecheckboxformgroup input:checked + label:after {
        content: '';
        display: block;
        position: absolute;
        top: 2px;
        left: 9px;
        width: 6px;
        height: 14px;
        border: solid #fff; /* Change tick color if needed */
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }


.table.table-bordered th {
    text-align: center !important;
    color: #000 !important;
    padding: 0.75rem;
    background-color: #E7E7E7 !important;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
}

    .table.table-bordered th a {
        text-decoration: none;
        font-size: 16px;
        padding: 0.75rem;
        color: #000;
    }


@media (max-width: 767px) {
    .table.table-bordered th {
        font-size: 16px !important;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .table.table-bordered th {
        font-size: 16px !important;
    }
}

.forecolorPink input {
    color: #B82EE6;
}

.forecolorGreen input {
    color: #3ADF00;
}

.forecolorBlue input {
    color: #007FFF;
}

.forecolorRed input {
    color: #FF5050;
}

.font12-red {
    font-size: 12px;
    color: #e66b55;
}

.hour_field2 {
    background-color: #e1f0f9;
    float: left;
    border: 1px solid #c2dff2;
    font-size: 12px;
    color: #e66b55;
    outline: none;
    width: 45px;
}

.blk_bg_red {
    width: 45px;
    font-size: 11px;
    color: #e66b55;
    background-color: #E1E6EA;
    border: 1px solid #999;
}