:root {
    --bg-theme-color: #00A88E;
    --light-theme-green: #00a98f;
    --light-yellow-color: #fff8e2;
    --gold-color: #ffa900;
    --trans-theme-green: rgb(0 169 144 / 10%);
    --black-color: #3d4f57;
    --danger-color: #dc3232;
    --trans-danger-color: rgb(220 50 50 / 10%);
    --text-color-grey: #6d6e71;
    --global-color-primary: #585858;
    --global-color-text: #7A7A7A;
    --white-color: #ffffff;
    --black: #0f172a;
    --grey-white: #94a3b8;
    --secondary-color: #4c6072;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;700&display=swap');



@font-face {
    font-family: 'Proxima Nova-bold';
    src: url('../font/proximanova-bold.otf') format("opentype");
    src: url('../font/ProximaNova-Bold.woff2') format('woff2'),
        url('../font/ProximaNova-Bold.woff') format('woff'),
        url('../font/ProximaNova-Bold.ttf') format('truetype')
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../font/ProximaNova-Regular.ttf') format("opentype");
    src: url('../font/ProximaNova-Regular.woff2') format('woff2'),
        url('../font/ProximaNova-Regular.woff') format('woff'),
        url('../font/ProximaNova-Regular.ttf') format('truetype')
}

* {
    font-family: 'Proxima Nova', 'Montserrat';
}

/* Background Animation CSS */
.area {
    background-image: url(../images/form-bg-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--black-color);
    background: -webkit-linear-gradient(to left, --light-theme-green, --bg-theme-color);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: -1;
    opacity: 0.3;
}

.login-bg {
    background-image: url(../images/background-img.png);
    opacity: 1;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.043);
    animation: animate 25s linear infinite;
    bottom: -150px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
        -webkit-transform: translateY(0) rotate(0deg);
        -moz-transform: translateY(0) rotate(0deg);
        -ms-transform: translateY(0) rotate(0deg);
        -o-transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
        -webkit-transform: translateY(-1000px) rotate(720deg);
        -moz-transform: translateY(-1000px) rotate(720deg);
        -ms-transform: translateY(-1000px) rotate(720deg);
        -o-transform: translateY(-1000px) rotate(720deg);
    }

}

.max-w-auth {
    max-width: 500px;
    padding: 12px;
}


body [type='text']:focus,
[type='email']:focus,
[type='url']:focus,
[type='password']:focus,
[type='number']:focus,
[type='date']:focus,
[type='datetime-local']:focus,
[type='month']:focus,
[type='search']:focus,
[type='tel']:focus,
[type='time']:focus,
[type='week']:focus,
[multiple]:focus,
textarea:focus,
select:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    --tw-ring-inset: var(--bg-theme-color);
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: rgb(85, 78, 78);
    --tw-ring-color: var(--bg-theme-color);
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    border-color: var(--bg-theme-color);
    box-shadow: rgb(255 255 255 / 10%) 0px 0px 0px 0px, rgb(52 168 142) 0px 0px 10px;
    transition: all .2s;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
}

[type='checkbox'],
[type='radio'] {
    color: var(--bg-theme-color);
    border-color: var(--light-theme-green);
    --tw-shadow: 0 0 var(--text-color-grey);
    cursor: pointer;
}

[type='checkbox']:focus,
[type='radio']:focus {
    outline: none;
    --tw-ring-offset-width: 0;
    --tw-ring-color: var(--bg-theme-color);
}

.error {
    margin-top: -10px;
    position: absolute;
}

.main-col {
    margin: 0;
    background-color: #f5f8fa;
}

.cus-head-logo a {
    padding-top: 24px;
    display: block;
}

.theme-text-color,
.theme-icon-color {
    color: var(--bg-theme-color);
}

.title-text-color {
    color: var(--black-color);
}

.theme-border-color {
    border-color: var(--bg-theme-color);
}

.theme-btn {
    background-color: var(--bg-theme-color);
    color: var(--white-color);
}

.theme-btn:hover {
    background-color: var(--light-theme-green);
}

.fault_message {
    resize: none;
}

.invalid-msg {
    color: var(--danger-color);
    width: 100%;
    padding: 0 16px;
    width: 100%;

}

.invalid-msg p {
    margin: 0;
}

/* Support form CSS */

.gallery.upload-doc {
    width: 100%;
    display: inline-flex;
    flex-wrap: wrap;
}

.form-group.bmd-form-group {
    margin-bottom: 0;
}

.upload-doc span.pip {
    position: relative;
    max-width: 140px;
    height: 100px;
    width: 100%;
    display: block;
    margin-right: 16px;
    margin-top: 10px;
    border: 1px solid var(--secondary-color);
    object-fit: cover;
}

.upload-doc span.pip span.remove {
    position: absolute;
    top: -6px;
    right: -6px;
    z-index: 99;
    background: var(--white-color);
    color: var(--danger-color);
    border: 1px solid var(--secondary-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
}

.gallery.upload-doc img.imageThumb {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}

.upload-doc span.pip span.name {
    display: none;
}

/* tooltip *
/

/* Container Tooltip */
.tooltip-xx {
    position: relative;
    top: 3px;
    left: 0;
    width: 22px;
}

/* Style text tooltip */
.tooltipText-x {
    background-color: var(--white-color);
    box-shadow: rgb(61 79 87) 0px 0px 2px 0px;
    color: var(--black-color);
    position: absolute;
    left: 0%;
    top: 75%;
    transform: translateY(-10px);
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    display: none;
    transition: all .5s;
    max-width: 400px;
    width: 100%;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
}

.sidebar-menu-icon.active {
    background: var(--bg-theme-color);
    /* margin: 0 0 10px; */
    padding: 12px 7px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    width: 100%;
}

.sidebar-menu-icon.active img {
    filter: brightness(10);
}

.sidebar-menu-icon.active .sidebar-menu-text {
    margin: 0 0 0 8px;
    color: var(--white-color) !important;
    font-size: 16px;
}

/* Style Icon */
.icon {
    border-radius: 10px;
    color: var(--bg-theme-color);
    display: block;
    cursor: pointer;
}

.upload-error-msg {
    width: 100%;
    display: inline-block;
}

input.search-col {
    width: 100%;
    max-width: 245px;
}

/* Hover text tooltip */
.tooltip-xx:hover .tooltipText-x {
    display: block;
    transform: translateY(5px);
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
    width: 500px;
    word-break: break-all;
    z-index: 102;
    line-height: 1.6;
}

.sub-form-btn {
    max-width: 280px;
    width: 100%;
    outline: none !important;
}

.pagination-grid {
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
}

.only-number-page {
    justify-content: flex-end;
}

.pagination-grid select#per-page-select {
    border-radius: 8px;
    border-color: #d1d5db;
    color: var(--black-color);
}

.pre-info {
    left: 28px;
    top: 48px;
}

.logo-col {
    width: fit-content;
    display: block;
    padding: 0 !important;
}

.form-heading-logo {
    width: 100%;
    padding: 16px 16px 0;
}

.main-form-container {
    background: var(--white-color);
}

.title-heading-form {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Proxima Nova-bold';
    color: var(--black-color);
}

.success-msg {
    background: #ffffff;
    padding: 0 0 16px 0;
    color: var(--bg-theme-color);
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
    width: 100%;
}

.log-error-msg {
    position: relative;
}

.log-error-msg .list-disc {
    list-style: none;
    margin: 0;
}

/* Dashboard */
.table-design .table-listing {
    padding: 16px 0;
    display: flex;
    flex-wrap: wrap;
    background-color: var(--white-color);
}

.table-design .table-listing .listing-details ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.table-design .table-listing .listing-details ul li {
    padding-left: 0;
    font-size: 14px;
    font-weight: normal;
    color: var(--secondary-color);
    word-wrap: break-word
}

.table-design .table-listing .listing-details ul li::before {
    content: "-";
    margin-right: 8px;

}

.table-program th.more {
    background-color: #DFE5EC;
}

.table-program td.more {
    background-color: var(--white-color);
}

.table-program th.more,
.table-program td.more {
    position: -webkit-sticky;
    position: sticky;
    right: -1px;
    min-width: 100px;
    text-align: center;
}

.table-design .table-listing .listing-details {
    margin-bottom: 12px;
    width: 25%;
    padding: 5px 16px;
}

.table-design .table-listing p {
    margin: 0;
    font-size: 14px;
    font-weight: normal;
    color: var(--secondary-color);
    word-break: break-word;
}

.table-design .table-listing label {
    color: var(--black-color);
    font-size: 16px;
    font-weight: bold;
    font-family: 'Proxima Nova-bold';
}

.file-upload-list {
    display: inline-flex;
    flex-wrap: wrap;
    padding: 16px;
    margin: 0;
    width: 100%;
    background-color: var(--white-color);
}

.file-upload-list li {
    list-style: none;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    margin-right: 16px;
}

.file-upload-list li img,
.file-upload-list li video {
    max-width: 90px;
    width: 100%;
    height: 90px;
    padding: 8px;
    object-fit: cover;

}

/* main APP file CSS Start */
.logo-wrapper img.logo {
    width: 150px;
    height: 100px;
    margin: 0 auto;
}

.logo-wrapper {
    margin: 10px 0 40px;
    text-align: center;
}

.login-reg-form h2 {
    text-align: center;
}

.login-reg-form form input {
    padding: 12px;
    display: block;
    margin-bottom: 20px;
    width: 95%;
}

body .button-btn {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    font-size: 14px;
    padding: 12px 16px;
    text-transform: capitalize;
    background: transparent;
    box-shadow: none;
    min-width: 140px;
    min-height: 42px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Inter";
    border: none;
    color: var(--white-color);
    background: var(--bg-theme-color);
    border-color: transparent;
}

.btn-width {
    width: 80px;
}

.error {
    position: absolute;
    color: #d62915;
    top: 41px;
    font-size: 14px;
    display: block;
}

.form-group {
    position: relative;
}

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

div#loader {
    position: absolute;
    left: 240px;
    top: 10px;
    color: var(--bg-theme-color);
}

.mt-40 {
    margin-top: 40px;
}

.jss3 {
    width: calc(100% - 240px);
    transition: width 300ms cubic-bezier(0.4, 0, 0.6, 1) 0ms, margin 300ms cubic-bezier(0.4, 0, 0.6, 1) 0ms;
    margin-left: 240px;
}

.custom-menu>div {
    overflow: hidden;
    border-right: 1px solid var(--header-border);
}

.cus-head-logo {
    box-shadow: none !important;
    padding: 0;
    z-index: 999999;
    justify-content: center;
    margin: 20px 0 0;
}

.custom-menu,
.custom-menu>div {
    background: var(--black);
}

.cus-head-logo .logo-icon-desktop {
    height: 90px;
    margin-top: 30px;
}

.jss8 {
    width: 280px;
    transition: width 300ms cubic-bezier(0.4, 0, 0.6, 1) 0ms;
    flex: 0 0 auto;
}

.jss12 {
    display: flex;
    align-items: center;
}

.jss11 {
    height: 70px;
}

.jss7 {
    z-index: 100;
    top: 0;
}

.logout-text {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #1e293b;
    cursor: pointer;
}

.jsss1 {
    display: flex;
}

.jss13 {
    padding: 24px;
    flex-grow: 1;
}

.MuiSvgIcon-root {
    fill: currentColor;
    width: 1em;
    height: 1em;
    display: inline-block;
    font-size: 1.5rem;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    flex-shrink: 0;
    user-select: none;
}

.logout-text svg {
    cursor: pointer;
    color: #fff;
}

.logout-text .option-dropdown {
    align-items: flex-end;
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    line-height: .8;
    font-size: 14px;
    color: var(--white);
}

.custom-menu .sidebar-menus {
    height: calc(100% - 70px);
    overflow: hidden;
    overflow-y: auto;
    border-right: 1px solid var(--black);
    padding: 20px 12px 0;
    margin-top: 40px;
}

.sidebar-menus li {
    color: #fff;
    list-style: none;
}

.nav-bar {
    top: 0;
    flex: 1 0 auto;
    height: 100%;
    display: flex;
    outline: 0;
    z-index: 1200;
    position: fixed;
    overflow-y: auto;
    flex-direction: column;
}

.table-program td,
main .table-program th {
    padding: 12px 10px;
    min-width: 140px;
    white-space: nowrap;
    border-bottom: 1px solid #DFE5EC;
}

.table-program th {
    line-height: normal;
    color: #4c6072;
    background-color: #DFE5EC;
    font-weight: 600;
    font-family: 'Proxima Nova-bold';
    position: sticky;
    top: -1px;
    z-index: 999;
}

.table-program td {
    color: var(--secondary-color);
    background-color: var(--white-color);
    font-size: 14px;
}

.table-design .table-program .text-muted {
    display: none;
    transition-duration: 1s;
}

.table-design .table-program th i {
    margin-left: 10px;
    font-size: 14px;
}

.scroll-no-data {
    overflow: hidden !important;
}

.scroll-no-data tr .data-not-found {
    width: 100%;
    background: #ffffff;
}

.scroll-no-data tr .data-not-found p {
    width: 100%;
    background: #ffffff;
    text-align: center;
    font-size: 20px;
    font-family: 'Proxima Nova-bold';
}

.scroll-no-data .table-program td,
.scroll-no-data .table-program th {
    min-width: auto;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

.table-design {
    border-radius: 5px;
    padding: 0;
    margin-top: 16px;
    overflow: auto;
    box-shadow: rgba(0, 0, 0, 0.051) 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
}

main .table-design>div {
    overflow: auto;
}

.table-program td a.link-tag svg {
    color: var(--secondary-color);
}

.table-program td:first-child,
.table-program th:first-child {
    padding-left: 16px;
    min-width: 50px;
}

.cus-accordion-wrid th {
    background: rgb(5 195 165 / 21%);
}

/* .jss19 {
    max-height: 700px;
} */

.jss34 {
    max-height: 600px;
    overflow: auto;
    /* Keyword values */
    -webkit-overflow-scrolling: auto;
    -webkit-overflow-scrolling: touch;

    /* Global values */
    -webkit-overflow-scrolling: inherit;
    -webkit-overflow-scrolling: initial;
    -webkit-overflow-scrolling: revert;
    -webkit-overflow-scrolling: revert-layer;
    -webkit-overflow-scrolling: unset;

}

.table-program td,
.table-program th {
    padding: 12px 10px;
    min-width: 150px;
    white-space: nowrap;
    border: 1px solid #dfe5ec;
    text-align: left;
}

.col-right {
    flex-grow: 1;
    width: 100%;
    overflow: hidden;
}

.col-full {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.left {
    flex-grow: 0;
    max-width: 50%;
    flex-basis: 50%;
}

.right {
    flex-grow: 0;
    max-width: 50%;
    flex-basis: 50%;
}

.right span {
    display: flex;
    justify-content: end;
}

.right span button {
    min-width: 80px;
    background: #00a88e;
    color: #fff;
    border: 2px solid #00a88e;
    font-size: 14px;
    padding: 12px 16px;
    box-shadow: none;
    text-transform: uppercase;
    font-weight: 700;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

h2 {
    margin: 0;
}

.location-container {
    padding: 25px;
}

.MuiGrid-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.MuiGrid-grid-md-4 {
    flex-grow: 0;
    max-width: 33.333333%;
    flex-basis: 33.333333%;
}

.boxshadow-custom {
    background: #1e293b;
    box-shadow: var(--boxShadow-custom) !important;
    -moz-box-shadow: var(--boxShadow-custom) !important;
    -webkit-box-shadow: var(--boxShadow-custom) !important;
    border-radius: 4px;
    color: #FFF;
}

.custom-menu .sidebar-menus li a,
.user-name-email a,
.user-name-email .option-dropdown {
    color: #fff;
    text-decoration: none;
}

h2.title-ticket {
    font-size: 26px;
    font-weight: bold;
    color: var(--black-color);
    font-family: 'Proxima Nova-bold';
}

ul.sidebar-menus li a {
    display: flex;
    margin: 0 0 8px;
    padding: 7px 7px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

ul.sidebar-menus li a:has(.sidebar-menu-icon.active) {
    padding: 0;
}

.custom-menu .sidebar-menus .sidebar-menu-icon img,
.custom-menu .sidebar-menus .sidepanel-item .sidebar-menu-icon svg {
    width: 18px;
    height: 18px;
}

.custom-menu .sidebar-menus .sidebar-menu-icon {
    display: flex;
    justify-content: left;
    align-items: center;
    min-width: 18px;
    color: var(--bg-theme-color);
}

.custom-menu .sidebar-menus .sidebar-menu-text {
    margin: 0 0 0 8px;
    color: var(--grey-white);
    font-size: 16px;
}

.cus-head-logo .logo-icon-desktop {
    height: 90px;
    margin-top: 30px;
}

.scroll-text-area {
    overflow-y: auto;
    resize: none;
}

.pagination {
    margin: 0;
    display: flex;
    padding: 0;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    border-top: 1px solid var(--border-main);
    padding: 20px 28px;
}

ul.pagination li.active {
    border-radius: 6px;
    background-color: #00a88e;
    color: #fff;
}

ul.pagination li .page-link {
    height: 32px;
    margin: 0 3px;
    padding: 0 6px;
    font-size: 0.875rem;
    min-width: 32px;
    box-sizing: border-box;
    text-align: center;
    font-weight: 400;
    line-height: 1.43;
    border-radius: 16px;
    letter-spacing: 0.01071em;
}

ul.pagination li button {
    border: none;
}

span.paginated-pages {
    display: flex;
    flex-grow: 0;
    max-width: 50%;
    flex-basis: 50%;
    justify-content: end;
}

.pagination-grid p {
    margin-right: 16px;
    color: var(--black-color)
}

.showing-result {
    display: flex;
    flex-grow: 0;
    max-width: 50%;
    flex-basis: 50%;
    align-items: center;
}

.goto-pagination {
    max-width: 120px;
    text-align: center;
    color: #4c6072;
    border-radius: 30px;
    border: 0;
    margin-left: 20px;
    padding: 10px 14px;
    background-color: #DFE5EC;
}

.customer-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.customer-form form label {
    display: block;
}

.customer-form form input {
    width: 98%;
    padding: 11px 6px;
    border-radius: 6px;
    border: 1px solid;
}

.form-group {
    width: 100%;
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important;
}

.device-box {
    width: 20%;
    padding: 0 10px 20px;
}

.device-box>div,
.device-box>div .d-flex {
    display: flex;
    justify-content: center;
    width: 100%;
}

.device-box>div {
    height: 200px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    text-align: center;
    background-color: #eee;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    color: #000;
}

.device-box>div h2 {
    font-size: 32px;
    text-align: center;
    color: #000;
    display: flex;
    padding-top: 16px;
    justify-content: center;
    width: 100%;
}

.light-purpal {
    color: #a65ce8 !important;
}

.device-box>div h2 span {
    line-height: normal;
    padding: 20px 0;
}

.mt-2,
.my-2 {
    margin-top: 0.5rem !important;
}

.d-flex {
    /* display: flex!important; */
    display: flex;
}

.MuiGrid-item {
    margin: 0;
    box-sizing: border-box;
}

.MuiGrid-grid-md-7 {
    flex-grow: 0;
    max-width: 58.333333%;
    flex-basis: 58.333333%;
}

.border-radius-10 {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.p-2 {
    padding: 24px !important;
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important;
}

.p-2 {
    padding: 20px !important;
}

.height-100 {
    height: 100%;
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}

.box-style {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #DFE5EC;
    border-radius: 4px;
    DISPLAY: INLINE-TABLE;
    WIDTH: 100%;
}

.box-style li {
    padding: 48px 16px;
    border: 1px solid #DFE5EC;
    width: 50%;
    display: inline-block;
    border-top: 0;
    border-left: 0;
    text-align: center;
}

.box-style li p {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 600;
}

.box-style li .badge-text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0 20px;
}

.box-style li .badge-text .text-style {
    color: #000;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: normal;
}

.pass-field {
    width: 100%;
    display: inline-block;
    position: relative;
}

.pass-field #togglePassword {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pass-field #togglePassword svg {
    width: 18px;
    height: 18px;
}

.cus-error-code+.cus-full-width {
    /* width: 100%; */
}

.status.checked {
    background: var(--light-theme-green);
}

.status.checked input[type='checkbox']:checked {
    /* background: var(--light-theme-green); */
    border: 1px solid --var(--light-theme-green);

}

.status.unchecked {
    background: var(--light-yellow-color);
}

.status.checked {
    background: var(--trans-theme-green);
}

.status.unchecked input[type='checkbox'] {
    background: var(--light-yellow-color);
    border: 1px solid var(--gold-color);
}

.status.checked label {
    color: var(--bg-theme-color);
}

.status.unchecked label {
    color: var(--gold-color);
}

.status label {
    cursor: pointer;
}

.status input[type='checkbox']:focus,
.status input[type='radio']:focus {
    outline: none;
    outline-offset: 0;
    --tw-ring-shadow: none;
}

.status {
    background: #f8f8f8;
    border-radius: 50px;
    padding: 4px 6px;
    cursor: pointer;
    width: 113px;
    text-align: center;
    margin: 0 auto;
}

.status input {
    border-radius: 50%;
    margin-right: 6px;
}

.status form {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ticket Start CSS */
.slideshow {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.7);
}

.slideshow.hidden {
    display: none;
}

.slideshow img,
.slideshow video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}

.slideshow .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    background: transparent;
    border: none;
    color: var(--white-color);
    cursor: pointer;
}

.slideshow .prev-button,
.slideshow .next-button {
    position: absolute;
    top: 50%;
    margin-top: -30px;
    font-size: 30px;
    background: transparent;
    border: none;
    color: var(--white-color);
    cursor: pointer;
}

.slideshow .prev-button {
    left: 10px;
}

.slideshow .next-button {
    right: 10px;
}

.back-btn svg {
    width: 14px;
    color: var(--secondary-color);
    margin-left: 4px;
}

.back-btn .back-icon {
    width: 24px;
    background: var(--color-white);
    text-align: center;
    height: 24px;
    border-radius: 50%;
    justify-content: center;
    border: 1px solid #c4c4c4;
    margin-right: 10px;
}

.back-btn,
.back-btn .back-icon {
    display: flex;
    align-items: center;
    color: var(--primary-color);
}

.back-btn {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    min-height: 39px;
}

.back-btn,
.back-btn .back-icon {
    display: flex;
    align-items: center;
    color: var(--primary-color);
}

.back-btn {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.align-items-center {
    align-items: center !important;
}

/* Ticket END */
.filled-tooltip .tooltip-xx {
    top: 5px;
    width: 16px;
    margin-right: 6px;
}

.filled-tooltip .pre-info {
    padding-top: 4px;
    color: var(--text-color-grey);
}

.filled-tooltip .tooltipText-x {
    max-width: 420px;
    word-break: break-all !important;
    line-height: 1.2 !important;
    background: #ededed;
}

.filled-tooltip .tooltipText-x strong {
    margin-top: 6px;
    display: inline-block;
}

.form-edit {
    display: flex;
    align-items: center;
}

.form-edit a svg {
    max-width: 36px;
    max-height: 36px;
}

.input-upload {
    position: relative;
    margin-right: 6px;
}

.file-update-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    float: inline-start;
}

.show-upload-field {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.show-upload-field:has(.filename) {
    justify-content: space-between;
}

.showuploadwarrenty .upload-file-icon{
    position: unset;
    width: 100%;
    height: 100%;
    opacity: 1;
    cursor: pointer;
}

.file-update-col a.show-upload-btn svg {
    width: 16px;
    height: 16px;
}

.file-update-col a svg path {
    fill: var(--bg-theme-color);
}

.upload-iconfile {
    position: absolute;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1 !important;
}

.upload-iconfile svg {
    width: 16px;
    height: 16px;
}

.show-upload-field form {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 0;
}

.col-filed {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.col-filed .error {
    line-height: 1;
    font-size: 13px;
    padding-left: 14px;
}

.col-filed input {
    border: none;
    border-bottom: 1px solid var(--bg-theme-color);
    border-radius: 0;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 6px 2px;
}

.col-filed input[type='text']:focus {
    box-shadow: none;
    outline: none;
}

/*********************
TOOLTIP CSS
*********************/

/* Tooltip attribute */
[data-tooltip] {
    position: relative;
    z-index: 2;
    cursor: pointer;
}

/* Tooltip content hidden by default */
[data-tooltip]:before,
[data-tooltip]:after {
    transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    visibility: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    pointer-events: none;
}


/* Tooltip position */
[data-tooltip]:before {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 5px;
    padding: 5px;
    color: var(--bg-theme-color);
    content: attr(data-tooltip);
    text-align: center;
    font-size: 15px;
    line-height: 21px;
}

/* Triangle hack for Tooltip bubble */
[data-tooltip]:after {
    position: absolute;
    bottom: 130%;
    left: 50%;
    margin-left: -5px;
    width: 0;
    border-top: 5px solid var(--light-yellow-color);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: " ";
    font-size: 0;
    line-height: 0;
}

/* Tooltip visible on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
    visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    transition: all 1.0s ease-in-out;
    -webkit-transition: all 1.0s ease-in-out;
    -moz-transition: all 1.0s ease-in-out;
    -ms-transition: all 1.0s ease-in-out;
    -o-transition: all 1.0s ease-in-out;
}

.form-date-col {
    display: flex;
    align-items: center;
    gap: 10px;
}

.export-btn-file {
    display: flex;
    align-items: center;
    background-color: var(--bg-theme-color) !important;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 15px;
    gap: 5px;
    color: #fff;
    transition: all 0.5s ease;
}

.export-btn-file svg path {
    fill: #fff;
}

.export-btn-file:hover {
    opacity: 0.7;
    transition: all 0.5s ease;

}

.date-form-select .input-group {
    position: relative;
}

.date-form-select .input-group .error {
    line-height: 1;
    top: unset;
    bottom: -14px;
    font-size: 12px;
}

/* .td-upload-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;    
} */
.td-upload-flex:has(.show-upload-field) {
    justify-content: center;
}

.td-upload-flex:has(.file-update-col) {
    justify-content: space-between;
}

.td-upload-flex .error {
    right: 20px;
    top: 40px;
    padding: 15px;
    background: #d62915;
    color: #ffffff;
    border-radius: 4px;
    min-width: 200px;
    font-weight: 400;
    font-size: 14px;
}

.td-upload-flex .success {
    right: 20px;
    top: 30px;
    padding: 15px;
    background: #5cb85c;
    color: #ffffff;
    border-radius: 4px;
    min-width: 200px;
    font-weight: 400;
    font-size: 14px;
    position: absolute;
    display: block;
    padding-right: 30px;
}

.td-upload-flex .alert button {
    right: -16px;
}

.show-upload-field button:hover {
    color: #5cb85c;
}

.show-upload-field button:hover:disabled {
    color: inherit;
}

.filename {
    word-break: break-all;
    display: block;
    white-space: break-spaces;
    font-size: 10px;
}

/* new work */
.down-arrow .sidebar-menu-text {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
}

a.down-arrow.sidebar-menu-icon.active svg {
    fill: #fff;
    transform: rotate(180deg);
}

a.down-arrow.sidebar-menu-icon svg {
    transition: all .5s;
}

.submenu-link.active .sidebar-menu-text {
    color: #fff;
}

.submenu .submenu-link.active {
    background-color: #00a88e5e;
}

.procat .modal-header {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-theme-color);
    color: #fff;
}

.procat small.text-danger {
    position: absolute;
    bottom: -14px;
    left: 0;
    line-height: normal;
    font-size: 13px;
    color: #f51616;
    opacity: 1;
    /* start hidden */
    transition: opacity 0.3s ease, bottom 0.3s ease;
}

.procat .form-group:has(.text-danger) small.text-danger {
    opacity: 1;
    /* show when present */
    bottom: -14px;
    /* ensure it's in place */
}
.table-design .table-listing .listing-details .fileUploadTable li::before {
    content: '';
    margin-right: 0;
}

/*  */

.loaderimg {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    border-top: 3px solid #00a88e;
    border-right: 3px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 
.showuploadwarrenty {
    text-align: center;
    transition: 0.3s ease;
    max-width: 400px;
    color: #000;
    display: flex
;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 0;
    justify-content: center !important;
    position: relative;
}

.tableuploadimg .file-upload-list {
     padding: 10px;
    border: 2px dashed #00a88e;
    border-radius: 10px;
    display: inline-flex;
    width: auto;
    margin: 30px 10px 30px 24px;
}

.showuploadwarrenty .input-upload {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
a.pdf-img {
    max-width: 50px;
}
.message-upload{
    position: absolute;
    bottom: -35px;
    font-size: 14px;
    line-height: 1.2;
}
.imgprev {
    max-height: 110px;
}
.upload-success {
    color: #00a826;
}
.upload-error{
    color: #d62915;
}
.icon-image-preview {
    display: flex;
    max-width: 145px;
    margin: 0 0 0 16px;
}
.showuploadwarrenty .upload-iconfile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #00a88e; /* green */
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    transition: 0.3s ease;
}

.showuploadwarrenty .upload-iconfile svg {
  
    width: 20px;
    height: 20px;
}

.showuploadwarrenty .upload-iconfile:hover {
    background: #008f78; /* darker green hover */
}

.showuploadwarrenty .filename {
    margin-top: 10px;
    font-size: 14px;
    color: #000; /* black text */
    font-style: italic;
    word-break: break-word;
    display: flex;
}

.showuploadwarrenty button[type=submit] {
    padding: 8px 15px;
    background: #fff;
    color: #000;
    border: 2px solid #00a88e;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
}

.showuploadwarrenty button[type=submit] .loader-overlay {
    position: absolute;
}

.showuploadwarrenty button[type=submit]:hover {
    background: #00a88e;
    color: #fff; /* white text on hover */
}

.tableuploadimg {
   display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--white-color);
}
/*  */

.procat .modal-body:has(.text-danger) .form-group {
    padding-bottom: 10px;
}

.table-design .table-listing .listing-details .fileUploadTable li {
    display: flex;
    margin-top: 4px;
}

.table-design .table-listing .listing-details .fileUploadTable li img {
    max-width: 40px;
    width: 100%;
}

.title-text-modal {
    text-align: left;
    width: 100%;
    font-size: 20px;
}

.procat.modal-dialog {
    width: 100%;
    max-width: 500px;
}

.btn-rpi {
    border-radius: 50px;
    padding: 4px 12px;
}

.procat .form-group {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.procat .form-group:first-child {
    margin-top: 0;
}

button.cancel-btn-bg {
    background-color: #f51616 !important;
}

.procat select.form-control option {
    font-size: 14px;
    margin-bottom: 2px;
}

.table-program td.action-btns button {
    border: 1px solid grey;
    border-radius: 4px;
    padding: 5px;
}

/* New work warrant Types */
button.font-bold.text-blue-600 {
    background: var(--bg-theme-color);
    color: var(--white-color);
    transition: all 0.5s ease;
}

.text-active {
    border-bottom: 1px solid var(--bg-theme-color);
    transition: all 0.5s ease;
}

.save-changes-col .changes-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: .75rem 0;
    transition: all 0.5s ease;
    border-radius: 4px;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    gap: 12px;
}

.save-changes-col .changes-bar .changes-text {
    margin: 0;
    color: var(--Cardinal);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.change-action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cancel-change {
    border: 1px solid var(--bg-theme-color);
    border-radius: 4px;
    font-size: 15px;
    font-style: normal;
    display: inline-block;
    padding: 6px 12px;
    text-align: center;
    vertical-align: middle;
}

button#save-changes-cost {
    animation: saveChange 2s ease 0s 1 normal forwards;
    -webkit-animation: saveChange 2s ease 0s 1 normal forwards;
    transition: all 0.5s ease;
    border: 1px solid var(--bg-theme-color);
}

.custom-peer:checked+.checkbox-content {
    background-color: var(--bg-theme-color);
    color: var(--white-color);
    border-color: var(--bg-theme-color);
}

span.checkbox-content {
    border: 1px solid #dfe5ec;
    border-radius: 4px;
    font-size: 15px;
    transition: all 0.5s ease;
}

[x-cloak] {
    display: none !important;
}

.warranty-text {
    background: var(--bg-theme-color) !important;
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-top: 50px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.series-select {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none !important;
    box-shadow: none;
    cursor: pointer;
}

.series-select:focus {
    border-color: #ccc;
    outline: none;
    box-shadow: none;
}

.ddpading-right {
    padding-right: 40px !important;
}

/* Optional: scrollbar styling for multi-select dropdown */
.series-select[multiple] {
    height: 60px;
    min-height: 135px;
    overflow-y: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    padding-right: 0 !important;
    padding-left: 0;
}

.series-select option {
    padding: 6px 10px;
}

/* Optional hover effect inside dropdown */
.series-select option:hover {
    background-color: #f0f0f0;
}

.series-select[multiple]::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Edge */
}

.procategory [type='text']:focus,
.procategory [type='email']:focus,
.procategory [type='url']:focus,
.procategory [type='password']:focus,
.procategory [type='number']:focus,
.procategory [type='date']:focus,
.procategory [type='datetime-local']:focus,
.procategory [type='month']:focus,
.procategory [type='search']:focus,
.procategory [type='tel']:focus,
.procategory [type='time']:focus,
.procategory [type='week']:focus,
.procategory [multiple]:focus,
.procategory textarea:focus,
.procategory select:focus {
    box-shadow: rgb(255 255 255 / 10%) 0px 0px 0px 0px,
        rgb(52 168 142) 0px 0px 10px !important;
}

.cus-center-tab {
    justify-content: center;
    background-color: #eeeeee;
    width: auto;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border-radius: 6px;
    white-space: nowrap;
    overflow: auto;
    gap: 4px;
    padding: 6px;
}

.cus-center-tab button {
    position: relative;
    background-color: transparent;
    color: var(--black-color);
    border-radius: 6px;
    border: 0;
    overflow: hidden;
    transition: color 0.3s ease-in-out;
    z-index: 1;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.5px;
    min-width: 160px;
}

.cus-center-tab button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-radius: 6px;
    z-index: -1;
    transition: left 0.5s ease-in-out;
}

.cus-center-tab button.active::before {
    left: 0;
    background-color: var(--bg-theme-color);
}

.cus-center-tab button.active {
    color: var(--white-color);
}

.procat .cus-series-check .space-y-2 {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

/* Default label style */
.procat .cus-series-check .space-y-2 label {
    padding: 4px 8px;
    background: #ebebeb;
    border-radius: 4px;
    width: 80px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #a0a0a0;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

/* Remove default checkbox style completely */
.procat .cus-series-check .space-y-2 label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #a0a0a0;
    border-radius: 3px;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: background 0.3s, border-color 0.3s;
    outline: none !important;
    /* removes browser blue outline */
    box-shadow: none !important;
    /* removes any extra glow */
}

/* Custom checkmark using pseudo-element */
.procat .cus-series-check .space-y-2 label input[type="checkbox"]::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid transparent;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s;
}

/* Checked state: label + checkbox */
.procat .cus-series-check .space-y-2 label:has(input:checked) {
    background: #00a88e;
    color: #ffffff;
}

.procat .cus-series-check .space-y-2 label input[type="checkbox"]:checked {
    background: #00a88e;
    border-color: #00a88e;
}

.procat .cus-series-check .space-y-2 label input[type="checkbox"]:checked::after {
    border-color: #fff;
    /* white tick */
    opacity: 1;
}


@keyframes buttonClick {
    0% {
        background-color: var(--bg-theme-color);
    }

    50% {
        background-color: #5a5a5a;
    }

    100% {
        background-color: var(--bg-theme-color);
    }
}

@media (min-width: 960px) {
    .MuiGrid-grid-md-5 {
        flex-grow: 0;
        max-width: 41.666667%;
        flex-basis: 41.666667%;
    }
}

/* main app file end */
@media (max-width: 1199px) {
    .title-heading-form {
        font-size: 36px;
    }

    .table-design .table-listing .listing-details {
        width: 33.33%;
    }

    .main-form-container {
        max-width: 90%;
        border-radius: 0.5rem;
        margin: 0 auto;
    }
}

@media (max-width: 1023px) {

    .cus-error-code,
    .cus-full-width {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .main-form-container {
        max-width: 100%;
        border-radius: 0;
    }

    .title-heading-form {
        font-size: 28px;
        padding: 0 16px;
        margin-bottom: 16px;
    }

    .logo-col {
        padding: 16px 16px 10px;
        margin-bottom: 16px;
    }

    .logo-col img {
        margin: 0 auto;
    }

    .table-design .table-listing .listing-details {
        width: 50%;
    }

    .tooltip-xx:hover .tooltipText-x {
        width: 300px;
        word-break: break-all;
        ;
    }

    .main-form-container {
        background: none;
    }

    [type='text'],
    [type='email'],
    [type='url'],
    [type='password'],
    [type='number'],
    [type='date'],
    [type='datetime-local'],
    [type='month'],
    [type='search'],
    [type='tel'],
    [type='time'],
    [type='week'],
    [multiple],
    textarea,
    select {
        background: none !important;
    }

    .form-heading-logo {
        margin-bottom: 16px;
    }

    .logo-col {
        margin: 0 auto;
    }

    .area {
        background-image: none;
        background-color: #ffffff;
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .upload-doc span.pip {
        max-width: 120px;
        height: 80px;
    }

    body .btn-res-center {
        text-align: center !important;
    }
}