/* font-face start */
@font-face {
    font-family: "openSansMedium";
    src: url("../fonts/OpenSans-Medium.ttf") format("ttf"),
        url("../fonts/OpenSans-Medium.woff") format("woff"),
        url("../fonts/OpenSans-Medium.woff2") format("woff2");
}

@font-face {
    font-family: "openSansRegular";
    src: url("../fonts/OpenSans-Regular.ttf    ") format("ttf"),
        url("../fonts/OpenSans-Regular.woff") format("woff"),
        url("../fonts/OpenSans-Regular.woff2") format("woff2");
}

@font-face {
    font-family: "openSansSemiBold";
    src: url("../fonts/OpenSans-SemiBold.ttf") format("ttf"),
        url("../fonts/OpenSans-SemiBold.woff") format("woff"),
        url("../fonts/OpenSans-SemiBold.woff2") format("woff2");
}

@font-face {
    font-family: "openSansBold";
    src: url("../fonts/OpenSans-Bold.ttf") format("ttf"),
        url("../fonts/OpenSans-Bold.woff") format("woff"),
        url("../fonts/OpenSans-Bold.woff2") format("woff2");
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Regular.woff2') format('woff2'),
        url('../fonts/Lato-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Black.woff2') format('woff2'),
        url('../fonts/Lato-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Bold.woff2') format('woff2'),
        url('../fonts/Lato-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* root variables declaration start */
:root {

    /*font-size declaration start */
    --base-fs: 16px;
    --fs-1: 60px;
    --fs-2: 50px;
    --fs-3: 40px;
    --fs-4: 32px;
    --fs-5: 24px;
    --fs-6: 20px;
    --p1: 18px;
    --p2: 16px;
    --p3: 14px;
    --p4: 15px;
    /*font-size declaration start */

    /* color-declaration start */
    --primary-color: #0A74BA;
    --primary-2: color-mix(in srgb, var(--primary-color) 90%, white 20%);
    --primary-3: color-mix(in srgb, var(--primary-color) 80%, white 30%);
    --primary-4: color-mix(in srgb, var(--primary-color) 70%, white 40%);
    --primary-5: color-mix(in srgb, var(--primary-color) 60%, white 50%);
    --primary-6: color-mix(in srgb, var(--primary-color) 50%, white 60%);
    --primary-7: color-mix(in srgb, var(--primary-color) 40%, white 70%);
    --primary-8: color-mix(in srgb, var(--primary-color) 30%, white 80%);
    --primary-9: color-mix(in srgb, var(--primary-color) 20%, white 90%);
    --primary-10: color-mix(in srgb, var(--primary-color) 10%, white 100%);

    --purple-1: #262261;
    --purple-2: color-mix(in srgb, var(--purple-1) 90%, white 20%);
    --purple-3: color-mix(in srgb, var(--purple-1) 80%, white 30%);
    --purple-4: color-mix(in srgb, var(--purple-1) 70%, white 40%);
    --purple-5: color-mix(in srgb, var(--purple-1) 60%, white 50%);
    --purple-6: color-mix(in srgb, var(--purple-1) 50%, white 60%);
    --purple-7: color-mix(in srgb, var(--purple-1) 40%, white 70%);
    --purple-8: color-mix(in srgb, var(--purple-1) 30%, white 80%);
    --purple-9: color-mix(in srgb, var(--purple-1) 20%, white 90%);
    --purple-10: color-mix(in srgb, var(--purple-1) 10%, white 100%);

    --gray-1: #20201F;
    --gray-2: #646463;
    --gray-3: #838381;
    --gray-4: #9C9C9A;
    --gray-5: #BBBBB9;
    --gray-6: #CECECD;
    --gray-7: #D9D9D8;
    --gray-8: #E0E1E0;
    --gray-9: #E8E8E7;
    --gray-10: #F0F0EF;
    --gray-11: #F9F9F8;

    --validation: #ed0000;

    --txt-white: #FFFFFF;

    --icon-red: #E80000;
    /* color-declaration end */
}

body {
    font-family: 'Lato', Arial, Helvetica;
    font-size: var(--base-fs);
    line-height: 1.25;
    color: var(--gray-3);
}

/* Colors classes */
.icon-red {
    color: var(--icon-red) !important;
}
.bg-primary-9 {
    background: var(--primary-9);
}

.color-primary {
    color: var(--primary-color) !important;
}

.color-primary-2 {
    color: var(--primary-2);
}

.color-primary-3 {
    color: var(--primary-3);
}

.color-primary-4 {
    color: var(--primary-4);
}

.color-primary-5 {
    color: var(--primary-5);
}

.color-primary-6 {
    color: var(--primary-6);
}

.color-primary-7 {
    color: var(--primary-7);
}

.color-primary-8 {
    color: var(--primary-8);
}

.color-primary-9 {
    color: var(--primary-9);
}

.color-primary-10 {
    color: var(--primary-10);
}

.color-gray-1 {
    color: var(--gray-1);
}

.color-gray-2 {
    color: var(--gray-2);
}

.color-gray-3 {
    color: var(--gray-3);
}

.color-gray-4 {
    color: var(--gray-4);
}

.color-gray-5 {
    color: var(--gray-5);
}

.color-gray-6 {
    color: var(--gray-6);
}

.color-gray-7 {
    color: var(--gray-7);
}

.color-gray-8 {
    color: var(--gray-8);
}

.color-gray-9 {
    color: var(--gray-9);
}

.color-gray-10 {
    color: var(--gray-10);
}

.color-validation {
    color: var(--validation);
}

/* font-size classes */
h1, .h1 {
    font-size: var(--fs-1) !important;
    line-height: 72px !important;
}

h2, .h2 {
    font-size: var(--fs-2) !important;
    line-height: 60px !important;
}

h3, .h3 {
    font-size: var(--fs-3) !important;
    line-height: 48px !important;
}

h4, .h4 {
    font-size: var(--fs-4) !important;
    line-height: 38px !important;
}

h5, .h5 {
    font-size: var(--fs-5) !important;
    line-height: 29px !important;
}

h6, .h6 {
    font-size: var(--fs-6) !important;
    line-height: 24px !important;
}

.p1 {
    font-size: var(--p1) !important;
    line-height: 25px !important;
    font-family: 'Lato', sans-serif;
}

.p2 {
    font-size: var(--p2) !important;
    line-height: 22px !important;
    font-family: 'Lato', sans-serif;
}

.fs-14 {
    font-size: var(--p3) !important;
    line-height: 18px !important;
    font-family: 'Lato', sans-serif;
}

.fs-15 {
    font-size: var(--p4) !important;
    line-height: 1.4 !important;
}

.fs-20 {
    font-size: 20px !important;
}

/* Fonts css classes */
.open-sans-medium {
    font-family: 'openSansMedium', sans-serif;
}

.open-sans-regular {
    font-family: 'openSansRegular', sans-serif;
}

.open-sans-semibold {
    font-family: 'openSansSemiBold', sans-serif;
}

.open-sans-bold {
    font-family: 'openSansBold', sans-serif;
}

.lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
}

.lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
}

.lato-black {
    font-family: "Lato", sans-serif;
    font-weight: 900;
}

/* link start */
a {
    text-decoration: none;
}

a:hover {
    color: var(--primary-2) !important;
}

.text-decoration-underline {
    text-underline-offset: 4px;
}

/* link start */
.w-240px {
    width: 240px;
}

.min-w-120px {
    min-width: 120px;
}

.pb-60px {
    padding-bottom: 60px;
}

.mb-60 {
    margin-bottom: 30px;
}

.cursor-pointer {
    cursor: pointer;
}

.theme-shadow {
    box-shadow: 0px 4px 5px 0px rgba(139, 139, 139, 0.16);
}

.flex-auto {
    flex: 0 0 auto !important;
}

.min-h-100 {
    min-height: 100% !important;
}

/* table Common */
table thead th {
    background-color: var(--primary-2) !important;
    color: #fff;
    padding: 10px 15px;
}

table thead th:first-child {
    border-top-left-radius: 10px;
}

table thead th:last-child {
    border-top-right-radius: 10px;
}

.datepicker-days table thead th {
    background-color: #ffffff !important;
    color: currentColor;
    padding: 8px;
}
.datepicker-days table thead th:first-child, .datepicker-days table thead th:last-child {
    border-radius: 0;
}

.table_parent {
    margin: 0 auto;
}

.Table.pagination ul li.active {
    cursor: pointer;
    background-color: var(--primary-color);
}

.Table.pagination ul li .page-item {
    cursor: pointer;
    color: var(--primary-3);
    background-color: var(--primary-3);
}

/* table Common */
/* button start */
.btn-primary, .primary-btn {
    background: var(--primary-color);
    color: var(--txt-white);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    transition: ease-in-out 0.3s;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    transition: ease-in-out 0.3s;
}

.btn-primary:hover, .primary-btn:hover, .btn-secondary:hover {
    background: var(--primary-3);
    color: var(--txt-white);
    border-color: var(--primary-3);
}

/* button end */
/* Header */
header:has(.mobileHeader) + *{
    margin-top: 50px;
}
header.site-header {
    z-index: 9;
    padding: 14px 16px;
}

header.site-header .profile-sec .profile .ppImage {
    height: 50px;
    width: 50px;
    object-fit: cover;
    object-position: top center;
    border: 2px solid #6CACD6;
}

header.site-header .profile-sec .profile .dropdown-menu {
    position: absolute;
    right: -5px;
    margin-top: 22px;
    padding: 20px 0;
    border-radius: 10px;
    border: 1px solid rgba(224, 225, 224, 1);
    box-shadow: 0px 0px 4px 0px rgba(124, 124, 124, 0.25);
}

header.site-header .profile-sec .profile .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -22px;
    right: 15px;
    border-width: 0 13px 22px 13px;
    border-style: solid;
    border-color: transparent transparent white transparent;
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.1));
}

header.site-header .profile-sec .profile .dropdown-menu .dropdown-item {
    padding: 10px 16px 10px 10px;
    border-left: 6px solid transparent;
}

header.site-header .profile-sec .profile .dropdown-menu .dropdown-item:hover {
    background: var(--primary-10);
    border-color: var(--primary-color);
}

/* Header */

/* Form Start */

input:not([type="checkbox"]),
input.form-control:not([type="checkbox"]),
.form-control:not([type="checkbox"]),
.form-group .form-select {
    font-family: 'Lato', sans-serif;
    padding: 14px 20px !important;
    background: white;
    border: 1px solid var(--gray-6);
    box-shadow: unset;
    font-size: var(--p2);
    line-height: 1.25;
    color: var(--gray-1) !important;
    border-radius: 8px !important;
    height: auto;
}

select, body select.form-control.custom-select,
.form-group .form-select {
    background-image: url('../images/ic-chevron-down.svg') !important;
    background-repeat: no-repeat !important;
    background-position: right 5px center !important;
    padding-right: 25px !important;
}
.input-group .input-group-append .input-group-text .fa-caret-down:before {
    content: " ";
    background-image: url('../images/ic-chevron-down.svg') !important;
    height: 22px;
    width: 22px;
    display: block;
    background-size: cover;
}


.input-group input.form-control:not([type="checkbox"]) {
    border-right: 0 !important;
    padding-right: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0px !important;
}

.input-group .input-group-append .input-group-text {
    position: static !important;
    padding: 12px 5px 12px 20px;
    border: 1px solid var(--gray-6) !important;
    border-left: 0 !important;
    background: transparent;
    border-radius: 8px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    min-height: 50px;
}
.ng-invalid .input-group .input-group-append .input-group-text {
 border-color: #dc3545 !important;   
}
.ng-valid .input-group .input-group-append .input-group-text {
    border-color: var(--gray-6) !important 
}
rx-date .input-group-append {
    position: static !important;
}



input[type="radio"],
input[type="checkbox"] {
    padding: unset;
}

input::placeholder,
.form-control::placeholder {
    color: var(--gray-4);
}

input:hover,
.form-control:hover {
    border-color: var(--primary-5);
}

input:focus, .form-control:focus,
.input-group:has(input.form-control:not([type="checkbox"]):focus) {
    outline: 2px solid var(--primary-5);
    border-color: transparent;
    box-shadow: none;
    background: #ffffff !important;
    border-radius: 10px;
}

.input-group input.form-control:not([type="checkbox"]):focus {
    outline: none;
}


input.disabled,
.form-control.disabled {
    background: var(--gray-9);
}

input[type=checkbox]:focus,
input.form-control[type="checkbox"]:focus {
    border-color: var(--gray-4) !important;
}

.form-check-input[type=checkbox] {
    border-radius: unset !important;
    border-color: var(--gray-4) !important;
}

.form-check-input:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.customRadio  .form-check-input[type=radio]{
    min-height: 10px !important;
    padding: 10px !important;
    border-radius: 100% !important;
}

.form-check-input:checked[type=checkbox] {
    background-image: url('../images/ic-check-checkbox.svg') !important;
}

.form-check-input:focus {
    box-shadow: unset !important;
    outline: unset !important;
}

.form-check-input[type=radio] {
    appearance: auto;
    height: 15px;
    position: relative;
    top: -1px;
}

/* .form-wrapper label {
    position: absolute;
    top: 14px;
    left: 14px;
    font-family: 'Lato', sans-serif;
    display: inline-block;
    padding: 0 6px;
    font-size: var(--p2);
    background: #ffffff;
    color: var(--gray-4);
    margin: 0 auto;
    transition: all .15s ease-in-out;
    z-index: -1;
} */

.theme-label {
    font-size: var(--p2);
    color: var(--gray-4);
}

/* .form-wrapper input:focus+label,
.form-wrapper input:valid+label,
.form-wrapper rx-select:has(input:focus)+label,
.form-wrapper rx-select:has(input:not(:placeholder-shown))+label,
.form-wrapper rx-mask:has(input:focus)+label,
.form-wrapper rx-mask:has(input:not(:placeholder-shown))+label,
.form-wrapper rx-date:has(input:focus)+label,
.form-wrapper rx-date:has(input:not(:placeholder-shown))+label,
.form-wrapper fieldset:disabled input.ng-valid+label {
    top: -12px;
    color: var(--gray-4);
    z-index: 5;
} */

.form-control:disabled,
fieldset:disabled input,
fieldset:disabled .input-group .input-group-append .input-group-text  {
    opacity: 0.7 !important;
    background: #E8E8E7 !important;
}

.form-wrapper.input-group>.form-control:focus {
    z-index: unset;
}

/* .form-wrapper rx-select {
    width: calc(100% - 18px);
} */

.form-control.ng-invalid,
.custom-select.ng-invalid,
rx-select.ng-invalid .search-field input.form-control,
rx-tag.ng-invalid .search-field input.form-control,
rx-date.ng-invalid .input-group input.form-control {
    border: 1px solid #dc3545 !important;
}
.custom-select.ng-invalid,
rx-select.ng-invalid .search-field input.form-control,
rx-tag.ng-invalid .search-field input.form-control,
rx-date.ng-invalid .input-group input.form-control {
    border-right: 0 !important;
}


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

/* Form End */

.custom-gap {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 20px;
    /* sets horizontal gutter */
}



/* login-css start */
.login-screen .login-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    min-height: unset;
}

.login-screen .login-container .login-box {
    position: relative;
    background-color: var(--txt-white);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    padding: 101px 40px;
    z-index: 1;
}

.login-screen .login-container .login-box::before,
.bg-pattern::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../images/bg-pattern.png');
    background-size: cover;
    background-position: center bottom;
    border-bottom-right-radius: 50px;
    z-index: -1;
}

.login-screen .login-container .login-box .login-wrapper .box {
    background-color: var(--txt-white);
    border: 1px solid var(--gray-5);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    padding: 20px;
    transition: ease-in-out 0.3s;
}

.login-screen .login-container .login-box .login-wrapper .box img.login-arrow {
    right: 20px;
}

.login-screen .login-container .login-box .login-wrapper .box .txt-wrapper h5 {
    color: var(--primary-color);
}


/* Employee Login Start */
.inner-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    min-height: unset;
    background-color: var(--txt-white);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    padding: 101px 40px;
}

.inner-container .border-right {
    border-right: 1px solid #BBBBB9;
}

.inner-container h5 {
    color: var(--primary-color);
}

.inner-container .custom-min-h {
    min-height: 750px;
}

.login-screen .login-container .inner-container .contain-form {
    margin: 0 auto;
    max-width: 380px;
    width: 100%;
}

/* Employee Login Start */

/* Register Start */
.register-screen .register-wrapper {
    max-width: 880px;
    background-color: var(--txt-white);
    border-radius: 50px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

.register-screen .register-wrapper h1 {
    color: var(--primary-color);
}

/* Register End */
.contain-form form .custom-file {
    position: relative;
}

.contain-form form .custom-file input {
    width: 100%;
}

.contain-form form .custom-file .custom-file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 20px;
    background-color: var(--primary-10);
    border: 2px dashed var(--primary-6);
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 5;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    height: 50px;
    position: absolute;
    top: 0;
}

.contain-form form .custom-file,
.contain-form form .custom-file input {
    height: 50px;
}

.contain-form form .custom-file .custom-file-label:before {
    content: "";
    height: 24px;
    width: 24px;
    background: url('../images/ic-upload.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: none;
    margin: 0;
}

.contain-form form rx-select .input-group .input-group-append .input-group-text .fa-caret-down.d-none {
    display: block !important;
}

.contain-form form rx-select .input-group .input-group-append .input-group-text .fa-caret-down:before {
    content: " ";
    height: 24px;
    width: 24px;
    background: url('../images/ic-chevron-down.svg');
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    z-index: 5;
    position: relative;
}

.saperate-line {
    background: var(--gray-6);
    margin: 20px 0;
}

/* dashboard */
.dashboard {
    background-image: url('../images/bg-pattern-full-screen.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 30px 0;
}

.welcome-banner {
    background: url('../images/bannerBg.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    color: #fff;
    font-weight: bold;
    margin-bottom: 30px;
    min-height: 270px;
}

.card-custom-mobile {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    border-radius: 20px;
    border: none;
    background-color: #FFFFFF;
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 120px;
    min-width: 290px;
    padding: 20px !important;
    box-shadow: -8px 0px 0px rgba(84, 158, 207, 1),
        0px 0px 15px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: -8px 0px 0px rgba(84, 158, 207, 1),
        0px 0px 15px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: -8px 0px 0px rgba(84, 158, 207, 1),
        0px 0px 15px rgba(0, 0, 0, 0.1);
}

.card-custom {
    display: flex;
    justify-content: start;
    align-items: center;
    border-radius: 20px;
    border: 2px solid transparent;
    border-left: 4px solid var(--primary-4);
    background-color: #FFFFFF;
    transition: transform 0.2s, all 0.2s;
    min-height: 120px;
    padding: 28px 30px !important;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
}

.card-custom:hover {
    cursor: pointer;
    background: var(--primary-10);
    border: 2px solid var(--primary-6);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.card-custom:hover img {
    filter: brightness(0) saturate(100%) invert(100%);
}

.card-custom:hover .icon-wrapper {
    background-color: var(--primary-color);
}

.card-custom .icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--primary-10);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.card-custom .fs-2 {
    color: #0D6EFD;
    font-size: 1.8rem !important;
}

.card-custom h6 {
    font-family: 'openSansBold', sans-serif;
    color: #646463;
    margin-bottom: 0;
    line-height: 1.2;
}
.single-card-ots-table table {
    background-color: #FFFFFF !important;
}
.single-card-ots-table tbody tr {
    display: flex;
    justify-content: start;
    align-items: center;
    border-radius:10px ;
    border-left: 4px solid var(--primary-4) !important;
    background-color: #FFFFFF;
    transition: transform 0.2s, all 0.2s;
    min-height: 55px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
}

.single-card-custom,.single-card-ots-custom,
.single-card-table tbody tr {
    display: flex;
    justify-content: start;
    align-items: center;
    border-radius: 20px;
    border-left: 4px solid var(--primary-4) !important;
    background-color: #FFFFFF;
    transition: transform 0.2s, all 0.2s;
    min-height: 55px;
    padding: 20px !important;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
}

.single-card-custom h6 {
    font-family: 'openSansSemiBold', sans-serif;
    color: #646463;
    margin-bottom: 0;
    line-height: 1.2;
}

.single-card-custom h6 span {
    font-family: 'openSansBold', sans-serif;
    color: #20201F;
}

.single-card-open {
    background-color: var(--primary-10) !important;
}

.truncated-desc {
    max-width: 240px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.transition-arrow {
    transition: transform 0.3s ease;
}

.rotated {
    transform: rotate(180deg);
}

/* dashboard */
/* my profile */
.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #6CACD6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: block;
    margin: 0 auto;
}

.update-photo {
    font-size: 0.9rem;
    color: #0d6efd;
    cursor: pointer;
    display: block;
    margin-top: 8px;
}

#profileAccordion .accordion-item {
    border: transparent;
    border-radius: 10px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

#profileAccordion .accordion-item .accordion-button {
    font-family: "openSansBold";
    font-size: 18px;
    line-height: 1.2;
    color: #9C9C9A;
    background-color: transparent;
    border-radius: 10px;
    padding: 15px 20px;
}

#profileAccordion .accordion-item .accordion-button:focus {
    box-shadow: none;
}

#profileAccordion .accordion-item .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--primary-10);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom: 1px solid var(--primary-color);
}

#profileAccordion .accordion-item .accordion-button:not(.collapsed)::after {
    background-image: url('../images/ic-accordion-down.svg') !important;
    transform: rotate(180deg);
}

#profileAccordion .accordion-item .accordion-button::after {
    background-image: url('../images/ic-accordion-down.svg') !important;
}

#profileAccordion .accordion-item .accordion-body {
    padding: 20px;
}

#profileAccordion .accordion-item .accordion-body .form-group {
    margin-top: 16px;
    width: 100%;
}

#profileAccordion .accordion-item .accordion-body .form-wrapper rx-select {
    width: 100%;
}

#profileAccordion .accordion-item .accordion-body .input-group .input-group-append .input-group-text .fa::before {
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#profileAccordion .accordion-item .accordion-body .input-group .input-group-append .input-group-text .fa-calendar::before,
rx-date .input-group .input-group-append .input-group-text .fa-calendar::before {
    content: " ";
    background-image: url('../images/ic-calendar.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    height: 24px;
    width: 24px;
    display: block;
}


/* my profile */
/* table Common */
.table-responsive .table table thead th {
    background-color: var(--primary-2) !important;
    color: #fff;
    padding: 10px 15px;
}

.table-responsive .table table thead th:first-child {
    border-top-left-radius: 10px;
}

.table-responsive .table table thead th:last-child {
    border-top-right-radius: 10px;
}

.table-responsive .table .table_parent {
    margin: 0 auto;
}

.Table.pagination ul li.active {
    cursor: pointer;
    background-color: var(--primary-color);
}

.Table.pagination ul li .page-item {
    cursor: pointer;
    color: var(--primary-3);
    background-color: var(--primary-3);
}

/* table Common */
/* upload file */
.upload-dashed {
    border: 1px dashed var(--primary-9);
    background-color: var(--primary-8);
    color: var(--primary-color);
    text-align: center;
    padding: 10px;
    cursor: pointer;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    max-width: 370px;
}
.upload-dashed .custom-file-input {
    position: absolute;
    left: 0;
    top: 0;
    padding: 0 !important;
    opacity: 0;
    height: 50px !important;
    width: 100%;
    cursor: pointer;
    z-index: 0;
}

.file-actions button {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0 4px;
}

.file-info {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
}

/* Upload file */

.card.leave-add-edit-card {
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}
.leave-add-edit-card .card-header {
    padding: 15px 20px;
    background: rgba(231, 241, 248, 0.5);
}
.leave-add-edit-card .card-body {
    padding: 20px;
}
.leave-add-edit-card .card-body input {
    height: auto;
}
.leave-add-edit-card .card-body .hours-per-day,
.leave-add-edit-card .card-body .hours-per-day .btn-primary {
    font-size: 14px;
}
.leave-add-edit-card .card-body .hours-per-day li input {
    padding: 5px 10px !important;
    border-radius: 5px !important;
    max-width: 99px;
    font-size: 14px;
    border: 1px solid #D9D9D8 !important;
}
.leave-add-edit-card .card-body .hours-per-day .btn-primary {
    padding: 5px 8px !important;
}
.leave-add-edit-card .card-body .leave-bkup {
    border-radius: 8px !important;
    padding: 13px 20px !important;
}



/* Responsive */
@media (min-width:1200px) {
    /* .card-custom{
    min-width: 290px;
  } */
}

@media (max-width:1024px) {
    .welcome-banner {
        display: none;
    }
}

@media (max-width: 767px) {
    
    /* .card-custom {
    min-width: 180px;
    min-height: 139px;
    padding: 16px !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  } */
   .top-header-space{
    padding-top: 0px !important;
   }
  .dashboard {
    background: none;
  }
    .card-custom .icon-wrapper {
        /*width: 20px;
    height: 20px;*/
        height: 44px;
        width: 44px;
        margin: 0 auto 10px;
        border-radius: 8px;
    }
    .card-custom .icon-wrapper img {
        height: 24px;
        width: auto;
        margin-right: unset;
        /* margin-bottom: 10px; */
    }

    .card-custom:hover img {
        filter: unset;
    }
    .card-custom h6{
        padding-left: 10px;
    }
    .card-custom:hover .icon-wrapper {
        background-color: unset;
    }
   
}

/* Responsive */
/* OTS header */

.single-card-ots-table.table-responsive .timesheetTable{
    height: 570px !important;
}
.app-header-inner .mobileHeader {
    height: 60px;
    background-color: #ffffff;
    box-shadow: 0px 4px 5px 0px rgba(139, 139, 139, 0.16);
    -webkit-box-shadow: 0px 4px 5px 0px rgba(139, 139, 139, 0.16);
    -moz-box-shadow: 0px 4px 5px 0px rgba(139, 139, 139, 0.16);
}

.fixed-nav-bar {
    top: 60px !important;
    background-color: unset !important;
}

.fixed-nav-bar li {
    cursor: pointer;
    color: var(--gray-3);
    font-weight: bold;
    padding: 10px 15px !important;
    border-bottom: 1px solid var(--gray-5) !important;
    border-right: 1px solid var(--gray-5) !important;
    background-color: white !important;
}

.fixed-nav-bar li span {
    font-family: 'Lato', Arial, Helvetica;
    font-weight: bold;
}

.fixed-nav-bar li:nth-last-child(1) {
    border-right: unset !important;
}

.fixed-nav-bar li.linkActive {
    font-weight: bold;
    padding: 10px 15px !important;
    font-weight: 600 !important;
    font-family: inherit;
    border-top: unset !important;
    border-bottom: 3px solid #005d9f !important;
    border-right: unset !important;
    background-color: var(--primary-10) !important;
    color: var(--primary-color);
}

/* OTS Time-sheet left panel */

/* OTS Time-sheet left panel   */
.list-screen-update-design .list-screen-update-design-top,
.list-screen-update-design .list-screen-update-design-main {
    padding: 16px 40px;
}

.list-screen-update-design .list-screen-update-design-main table thead th {
    background-color: var(--primary-color);
    color: #ffffff;
    white-space: nowrap;
}

.list-screen-update-design .list-screen-update-design-main table thead th,
.list-screen-update-design .list-screen-update-design-main table tbody td {
    padding: 17px 25px;
    border: none !important;
    vertical-align: middle;
}

.list-screen-update-design .list-screen-update-design-main .table-border-top-radius,
.list-screen-update-design .list-screen-update-design-main .table-responsive,
.list-screen-update-design .list-screen-update-design-main .table_parent {
    border: 1px solid rgba(239, 239, 239, 0.8);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.list-screen-update-design .list-screen-update-design-main table thead th:first-child {
    border-top-left-radius: 20px;
}

.list-screen-update-design .list-screen-update-design-main table thead th:last-child {
    border-top-right-radius: 20px;
}

.list-screen-update-design .list-screen-update-design-main table tbody tr:nth-of-type(2n) td {
    background-color: rgba(232, 232, 231, 0.30);
}

.list-screen-update-design .list-screen-update-design-main .table-hover>tbody>tr:hover>* {
    --bs-table-accent-bg: unset;
    --bs-table-bg-state: unset;
    color: var(--bs-table-hover-color);
}

.list-screen-update-design .list-screen-update-design-main table tbody tr td,
.list-screen-update-design .list-screen-update-design-main table tbody tr td * {
    font-size: 14px !important;
}

.list-screen-update-design .list-screen-update-design-main table tbody tr td i.fs-20 {
    font-size: 20px !important;
}

.list-screen-update-design .list-screen-update-design-main .accordion-item {
    margin: 20px 0 !important;
}

.list-screen-update-design .list-screen-update-design-main .accordion-item .accordion-button {
    padding: 15px 20px 15px 56px !important;
    background: var(--primary-9) !important;
    border: 1px solid var(--primary-9) !important;
    color: var(--primary-color) !important;
    border-radius: 8px;
}

.list-screen-update-design .list-screen-update-design-main .accordion-item .accordion-button.collapsed {
    background: #FFFFFF !important;
    color: #838381 !important;
    border: 1px solid #D9D9D8;
}

.list-screen-update-design .list-screen-update-design-main .accordion-item .accordion-button span {
    font-family: "Lato", sans-serif !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    ;
    font-weight: 900 !important;
}

.list-screen-update-design .list-screen-update-design-main .accordion-item .accordion-button::after {
    content: " " !important;
    background-image: url('../images/ic-accordion-up.svg') !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: center center !important;
    height: 20px !important;
    width: 20px !important;
    position: absolute !important;
    top: 18px !important;
    left: 20px !important;
    transform: none;
}

.list-screen-update-design .list-screen-update-design-main .accordion-item .accordion-button.collapsed::after {
    background-image: url('../images/ic-accordion-down.svg') !important;
}

.list-screen-update-design .list-screen-update-design-main .time-group {
    border: none !important;
}

.list-screen-update-design .list-screen-update-design-main table tbody tr td .time-group select {
    width: 50px !important;
    border: 1px solid #D9D9D8 !important;
    border-radius: 4px !important;
    padding: 5px !important;
    font-size: 14px !important;
}

.list-screen-update-design .list-screen-update-design-main table tbody tr td input:not([type="checkbox"]),
.list-screen-update-design .list-screen-update-design-main table tbody tr td input.form-control:not([type="checkbox"]) {
    border: 1px solid #D9D9D8 !important;
    border-radius: 4px !important;
    padding: 5px !important;
    font-size: 14px !important;
}
.list-screen-update-design .list-screen-update-design-main table tbody tr td .input-group {
    flex-wrap: nowrap;
}
.list-screen-update-design .list-screen-update-design-main table tbody tr td .input-group input:not([type="checkbox"]) {
    border-right: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.list-screen-update-design .list-screen-update-design-main table tbody tr td .input-group .input-group-append {
    margin: 0 !important;
}
.list-screen-update-design .list-screen-update-design-main table tbody tr td .input-group .input-group-append .input-group-text {
    padding: 6px 5px 0 5px 7px !important;
    border-radius: 0 !important;
    min-height: auto !important;
    border-color: #D9D9D8 !important;
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

.list-screen-update-design .list-screen-update-design-main .time-group select option {
    font-family: 'Lato';
}

.list-screen-update-design .list-screen-update-design-main .table_parent,
.list-screen-update-design .list-screen-update-design-main .table_parent .dataTable {
    width: 100% !important;
    max-width: 100% !important;
}

.list-screen-update-design .list-screen-update-design-main .not_found_record_container .mt-4 {
    margin: 0 !important;
    padding: 17px 25px !important;
}

.list-screen-update-design .list-screen-update-design-main .not_found_record_container .mt-4 p {
    font-size: 14px !important;
    margin: 0 !important;
}

/* Responsive css start */
@media (min-width: 1500px) {
    .container {
        max-width: 1348px;
    }
}

@media(min-width:767px) {
    .mb-60 {
        margin-bottom: 60px;
    }
    .login-screen .login-container .login-box .login-wrapper .box {
        max-width: 350px;
        border-radius: 30px;
    }

    .login-screen .login-container .login-box .login-wrapper .box {
        padding: 40px;
        border-bottom: 5px solid var(--gray-5);
    }

    .login-screen .login-container .login-box .login-wrapper .box:hover {
        cursor: pointer;
        background-color: var(--primary-10);
        border-bottom: 5px solid var(--primary-4);
    }

    .login-screen .login-container .login-box .login-wrapper .box:hover svg path {
        fill: var(--primary-6);
    }

    .login-screen .login-container .login-box .login-wrapper .box:hover .btn-secondary {
        background: var(--primary-3);
        color: var(--txt-white);
        border-color: var(--primary-3);
    }

    .login-screen .login-container .login-box .login-wrapper .box:hover .txt-wrapper h5 {
        color: var(--primary-color);
    }

    .login-screen .login-container .login-box .login-wrapper .box .txt-wrapper h5 {
        color: var(--gray-3);
    }
    
}

@media(max-width:767px) {
    input:not([type="checkbox"]), 
    input.form-control:not([type="checkbox"]), 
    .form-control:not([type="checkbox"]), 
    .form-group .form-select {
        min-height: 40px;
    }
    .login-screen .login-container .login-box .login-wrapper .box {
        border-left: 5px solid var(--primary-4);
    }

    .login-screen .login-container .login-box .login-wrapper .box svg {
        width: 40px;
        height: 40px;
    }

    .login-screen .login-container .login-box .login-wrapper .box svg path {
        fill: var(--primary-3)
    }

    .login-screen .login-container .login-box {
        padding: 94px 30px;
    }

    :root {
        --fs-1: 50px;
        --fs-2: 40px;
        --fs-3: 32px;
        --fs-4: 24px;
        --fs-5: 20px;
        --fs-6: 18px;
        --p1: 16px;
        --p2: 16px;
        --p3: 14px;
    }

    .list-screen-update-design .list-screen-update-design-top,
    .list-screen-update-design .list-screen-update-design-main,
    .list-screen-update-design .list-screen-update-design-main table thead th, 
    .list-screen-update-design .list-screen-update-design-main table tbody td {
        padding: 0;
    }
    .list-screen-update-design .list-screen-update-design-main .table-border-top-radius,
    .list-screen-update-design .list-screen-update-design-main .table-responsive,
    .list-screen-update-design .list-screen-update-design-main .table_parent {
        border: none;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
    .list-screen-update-design .list-screen-update-design-main table tbody tr:nth-of-type(2n) td {
        background-color: #ffffff;
    }
    .list-screen-update-design .list-screen-update-design-main table tbody {
        padding: 1px;
    }
    .add-timesheet-data.edit-table .single-card-ots-table tbody tr td .main-head{
        padding: 0px 15px !important;
    }
    .single-card-custom {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: baseline;
        border-radius: 20px;
        min-width: unset;
        min-height: unset;
        background-color: #FFFFFF;
        padding: 20px !important;
    }
    .single-card-ots-custom {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: baseline;
        border-radius: 10px;
        min-width: unset;
        min-height: unset;
        background-color: #FFFFFF;
        padding:7px 20px !important;
    }
    .single-card-ots-table{
        background-color: #fff;
    }
    .single-card-ots-table tbody tr {
        display: flex;
        justify-content: start;
        align-items: center;
        border-radius: 10px !important;
        min-width: unset;
        min-height: unset;
        background-color: #FFFFFF;
        padding:7px 20px !important;
    }
    .allowance-edit {
        padding-top: 10px !important;
    }
    .single-card-custom h6 {
        margin-bottom: unset;
    }
    .single-card-custom div strong + span{
        width: 75%;
        text-align: right;
    } 
    .single-card-table,.single-card-ots-table{
        padding: 0 24px !important;
        border: 0 !important;
    }
    .single-card-table tbody tr {
        margin-bottom: 16px !important;
    }
    .single-card-ots-table tbody tr{
        margin-bottom: 7px !important;
    }
    .single-card-table tbody tr td, .single-card-ots-table tbody tr td {
        padding: 2px 0 !important;
    }

    /* update added css */
    .add-timesheet-data.edit-table:has(.single-card-ots-table) tr td .main-head {
        padding: 0;
    }
    .add-timesheet-data.edit-table:has(.single-card-ots-table) {
        background-color: transparent;
    }
    .add-timesheet-data:has(.single-card-ots-table) tfoot {
        left: 0;
        right: 0;
    }
    .add-timesheet-data:has(.single-card-ots-table) tfoot tr {
        background-color: var(--primary-10);
        border-color: var(--primary-10);
        font-weight: 700;
        color: var(--primary-color);
    }
    .single-card-table table,
    .single-card-table table tbody tr,.single-card-ots-table tbody tr {
        border: none;
        background-color: #ffffff !important;
    }
    .list-screen-update-design .list-screen-update-design-main .accordion-item {
        margin: 0 !important;
    }
    .single-card-custom-row .row {
        margin: 0;
    }
    .single-card-ots-table .data-static-content tr {
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0;
    }
    .single-card-ots-table .data-static-content .col-time,
    .single-card-ots-table .data-static-content .col-jobnum,
    .single-card-ots-table .data-static-content .col-option {
        padding: 10px 0px 0px !important;
        align-items: center;
        min-height: 40px;
    }
    
    .sidepanel-visible .sidepanel-drop {
        top: 60px !important;
    }
    .app-sidepanel.sidepanel-visible .sidepanel-drop {
        top: 0 !important;
    }
    .app-sidepanel.sidepanel-visible {
        top: 18px !important;
        height: 100vh;
    }
}
@media (max-width: 425px) {
    .card-custom {
        padding: 15px !important;
    }
    .card-custom h6 {
        font-size: 16px !important;
    }
}
/* Responsive css end */