* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 24px;
    background: #F5F6F8;
}

.container {
    max-width: 1440px;
    width: 100%;
}

.content-body {
    background: #F5F6F8;
}

img {
    max-width: 100%;
}

.login-right-content {
    padding-left: 40px;
}

h2,
h3,
h4,
h5 {
    color: #36393D;
}

h2 {
    font-size: 26px;
    line-height: 34px;
    font-weight: 600;
    letter-spacing: -0.52px;
}

@media(min-width: 1024px) {

    /******************left-sidebar-css******************/
    .sticky-left {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
    }

    .content-right-main {
        margin-left: 25%;
        padding-left: 60px;
    }
}


/****************login-form-css********************/
.login-right-content>a {
    display: inline-block;
    margin-bottom: 45px;
}

.login-right-content form .form-group {
    margin-bottom: 26px;
    width: 100%;
}

.login-right-content form .form-group label {
    font-size: 15px;
    line-height: 23px;
    color: #36393D;
    font-weight: 600;
    margin-bottom: 10px;
}

.btn-group .sub-btn {
    width: 100%;
    height: 60px;
    flex-shrink: 0;
    border-radius: 13px;
    background: #EB6A58;
    box-shadow: 0px 10px 24px 0px rgba(235, 106, 88, 0.39);
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.32px;
}

.login-right-content form .form-group input[type="email"],
.login-right-content form .form-group input[type="password"],
.login-right-content form .type-password {
    width: 100%;
    height: 60px;
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 13px;
    padding: 22px 27px;
    color: #81858A;
    font-size: 13px;
}

.login-right-content form .form-group input[type="email"]::placeholder,
.login-right-content form .form-group input[type="password"]::placeholder {
    color: #81858A;
    font-size: 13px;
    letter-spacing: -0.39px;
}

.forgot-passgroup label {
    font-size: 14px;
}

.forgot-passgroup a {
    color: #3D3836;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.28px;
    text-decoration: underline;
}

.login-form form {
    max-width: 391px;
    width: 100%;
}

.login-right-content form .form-group span {
    position: relative;
    display: block;
}

.login-right-content form .form-group span button {
    position: absolute;
    right: 20px;
    top: 17px;
    background: inherit;
    border: inherit;
}

.login-right-content form .form-group span i {

    color: #81858A;
    font-size: 14px;
}

/****************left-menubar-css********************/
.main-navigation>ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.main-navigation>ul>li {
    width: 100%;
}

.main-navigation li {
    position: relative;
}

.main-navigation-wrapper,
.main-navigation {
    height: 100%;
    background: #fff;
}

.main-navigation {
    height: 90%;
}

html {
    overflow-x: hidden;
}


@media screen and (max-width: 1024px) {

    .main-navigation ul ul ul {
        top: 100%;
        left: 0 !important;
    }

    .main-navigation ul ul li a {
        padding: 5px 15px;
        width: 100%;
        display: block;
        text-transform: capitalize;
        font-weight: 500;
    }


    .main-navigation-wrapper {
        padding-top: 59px;
    }

    .main-navigation-wrapper {
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
    }


    .main-navigation>ul:last-child>li:first-child {
        width: 100%;
    }

    .main-navigation>ul li a {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 18px;
        bottom: 0;
        left: 0;
        background-color: #fff;
        box-shadow: 0px 0px 21px 0px rgba(10, 62, 91, 0.04);
        width: 300px;
        height: 100vh;
        overflow: auto;
        transform: translateX(-150%);
        transition: all .3s ease-in-out;
        z-index: 333;
        padding: 20px 0;
    }

    .main-navigation.show-menu {
        transform: translateX(0);
        transition: all .3s ease-in-out;
    }

    .main-navigation>ul {
        display: block;
    }

    .main-navigation li a {
        border-bottom: rgba(50, 50, 50, 0.05) solid 1px;
    }

    /* .main-navigation ul li .submenu-button::before {
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 5px 5px 0 5px;
		border-color: #fff transparent transparent transparent;
	} */

    .main-navigation ul ul {
        background-color: rgba(67, 41, 157, .1);
    }


    .open-menu {
        display: block !important;
        width: 50px;
        height: 50px;
        position: relative;
        border: none;
        border-radius: 0;
        cursor: pointer;
        background: transparent;
    }

    .open-menu span {
        display: block;
        width: 31px;
        height: 4px;
        background-color: #EB6A58;
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
    }

    .open-menu span:nth-child(1) {
        top: 14px;
    }

    .open-menu span:nth-child(2) {
        top: 23px;
    }

    .open-menu span:nth-child(3) {
        bottom: 12px;
    }

    .close-menu {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        border: none;
        border-left: rgba(50, 50, 50, 0.05) solid 1px;
    }

    .close-menu span {
        display: block;
        width: 20px;
        height: 2px;
        background-color: #757575;
        transform: rotate(45deg);
        position: relative;
    }

    .close-menu span::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: 20px;
        height: 2px;
        background-color: #757575;
        transform: rotate(-95deg);
        display: block;
    }

}

.main-navigation .submenu {
    max-width: 243px;
    width: 100%;
    border-radius: 6px;
    border: 1px solid #E9F0F6;
    background: #F8FAFC;
    box-shadow: 0px -3px 0px 0px #EB6A58;
    list-style: none;
    padding-left: 20px;
    margin-bottom: 15px;
    display: none;
}

.main-navigation .submenu li a {
    padding: 10px 12px 9px 0;
    position: relative;
    font-size: 16px;
}

.main-navigation ul li .submenu-button::before {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #A3A5A9;
}

.submenu-button {
    position: absolute;
    right: 60px;
    top: 14px;
    display: flex;
    align-items: center;
    width: 29px;
    justify-content: center;
    height: 20px;
    z-index: 111;
}

.menu-top,
.open-menu {
    display: none;
}

.main-navigation ul li.selected>ul {
    display: block;
}

.main-navigation {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
}


.menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu li a {
    text-decoration: none;
    color: #A3A5A9;
    font-size: clamp(16px, 1.2vw, 18px);
    padding: 13px 12px 12px 0;
    position: relative;
    letter-spacing: -0.36px;
    font-weight: 500;
    line-height: 28px;
    display: flex;
    align-items: center;
}

.menu li a svg {
    fill: #A3A5A9 !important;
    margin-right: 9px;
}

.menu li a i {
    margin-right: 16px;
}

.menu li a:hover {
    color: #EB6A58 !important;
}

.menu li a:hover svg {
    fill: #EB6A58 !important;
}

/* .profile-page-content,
.profile-page-content>div,
.profile-page-content>div.container,
.profile-page-content>div.container .row,
.left-menubar {
	height: 100%;
} */

.left-menubar .top-logo {
    padding: 33px 104px 33px 38px;
    border-bottom: 1px solid #DFE0E3;
}

.main-navigation {
    /* padding: 36px 0 0 45px; */
    padding: 36px 0 0 clamp(25px, 3.4vw, 45px);
    position: relative;
}

/* .main-navigation>ul:last-child {
    position: absolute;
    left: 50px;
    bottom: 50px;
} */

.left-menubar {
    background: #fff;
    height: 100vh;
}

/****************dashboard-profile**************/
.user-profile {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.user-profile h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.32px;
    margin-bottom: 2px;
    line-height: 17px;
}

.user-profile p {
    color: #81858A;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: -0.36px;
    margin: 0;
}

.userpf-wrapper {
    display: flex;
    align-items: center;
    width: 197px;
    border-radius: 13px;
    background: #fff;
    padding: 6px 7px;
    position: relative;
    margin-top: 30px;
    cursor: pointer;
}

.userpf-wrapper>div:last-child {
    padding-left: 12px;
}

/* .userpf-wrapper::after {
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    position: absolute;
    right: 16px;
    top: 18px;
    color: #36393D;
} */
.userinvite-form input[type="email"][disabled],
.userinvite-form input[type="text"][disabled] {
    font-size: 13px;
    color: #81858A;
    opacity: 1;
}

.user-role {
    position: relative;
    padding-right: 20px;
}

.forgotpass-mobile {
    display: none;
}

.user-role::after {
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    position: absolute;
    right: 8px;
    top: 0;
    color: #36393D;
}

.form-control::placeholder {
    font-size: 13px;
    color: #81858A;
}

.profile-block-group h2 {
    margin-bottom: 20px;
}

/* .profile-block-group {
    padding-left: 45px;
} */

.profile-block p {
    font-size: 16px;
    color: #A3A5A9;
    font-weight: 500;
    letter-spacing: -0.32px;
    margin-bottom: 0;
    margin-top: 20px;
}

.profile-block h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.52px;
    margin-bottom: 5px;
}

.profile-block {
    border-radius: 13px;
    background: #FFF;
    box-shadow: 0px 2px 6px 0px rgba(219, 223, 231, 0.95);
    padding: 19px;
}

.profile-row {
    display: flex;
    margin: 0 -12.5px;
}

.profile-row>div {
    max-width: 367px;
    width: 100%;
    position: relative;
    margin: 0 12.5px;
}

a.red-btn {
    width: 103px;
    height: 40px;
    border-radius: 7px;
    background: #EB6A58;
    color: #FFF;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.3px;
    text-decoration: none;
    padding: 10.5px 0;
    transition: 0.5s all;
}

a.red-btn:hover {
    background: #0a7f7a;
}

.profile-row>div a {
    position: absolute;
    top: 38px;
    right: 28px;
}

.profile-row>div img {
    width: 79px;
    height: 77px;
    border-radius: 10px;
}

.icon-block {
    width: 79px;
    height: 77px;
    border-radius: 10px;
    background-color: #F1F1F1;
    display: flex;
    align-items: center;
    justify-content: center;
}

body .icon-block img {
    width: auto;
    height: auto;
}

a.userpf-wrapper {
    text-decoration: none;
}

.user-profile ul.dropdown {
    position: absolute;
    top: 116%;
    right: 0;
    list-style: none;
    width: 139px;
    height: 159px;
    background: #FFF;
    filter: drop-shadow(0px 2px 6px rgba(219, 223, 231, 0.95));
    border-radius: 10px;
    padding: 15px 20px 18px 20px;
    display: none;
    transition: 0.5s;
    z-index: 10;
}

.user-profile ul.dropdown.slide {
    display: block;
}

.user-profile ul.dropdown::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid #fff;
    border-bottom-width: 9px;
    border-bottom-style: solid;
    border-bottom-color: rgb(255, 255, 255);
    position: absolute;
    top: -8px;
    right: 13px;
}

.user-profile ul.dropdown li a {
    color: #36393D;
    font-size: 16px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: -0.32px;
    text-decoration: none;
}

.user-profile ul.dropdown li a i {
    color: #A3A5A9;
    margin-right: 12px;
}

/******************equipment-page-css****************/
.equipmient-row .profile-top-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.equipmient-row .profile-top-head a i {
    font-size: 31px;
    color: #EB6A58;
}

.equipmient-row .profile-top-head {
    margin-top: 25px;
    padding-right: 20px;
}

.navigation-single-slide img {
    width: 85px;
    height: 90px;
    border-radius: 10px;
}

.navigation-slider {
    margin: 0 -10px;
}

.navigation-slider .slick-slide {
    padding: 1px 0 0 0;
    margin-right: 10px;
    margin-left: 10px;
}

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

.product-slider>div:first-child {
    width: 25%;
}

.product-slider>div:last-child {
    width: 75%;
}

.featured-single-slide img {
    border-radius: 10px;
}

.featured-single-slide img {
    width: 100%;
    height: 390px;
    object-fit: cover;
}

.eqquipment-right-content h3 {
    color: #81858A;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.34px;
    margin-bottom: 19px;
}

.eqquipment-right-content h3 span {
    color: #36393D;
    font-weight: 600;
}

.eqipment-group {
    border-radius: 13px;
    background: #FFF;
    box-shadow: 0px 2px 6px 0px rgba(219, 223, 231, 0.95);
    padding: 30px;
}

.eqquipment-right-content .qrcode {
    border-radius: 5px;
    border: 1px solid #DDDFE1;
    background: #FFF;
    width: 67px;
    height: 67px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.eqquipment-right-content p {
    color: #81858A;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: -0.3px;
}

.eqquipment-right-content p.location {
    color: #81858A;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.34px;
    margin-bottom: 19px;
}

.eqquipment-right-content p.location span {
    color: #36393D;
    font-weight: 600;
}

.geo-location label {
    display: block;
    color: #81858A;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.34px;
    margin-bottom: 8px;
}

.geo-location span {
    border-radius: 6px;
    border: 1px solid #E9EAED;
    background: #F5F6F8;
    max-width: 395px;
    width: 100%;
    height: 42px;
    display: block;
    padding: 9px 20px;
}

.eqipment-listing ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    margin: 0 -10px;
    justify-content: space-between;
}

.eqipment-listing ul li {
    width: 25%;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.eqipment-listing>div>div label {
    color: #81858A;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.26px;
    margin-right: 5px;
    line-height: 18px;
}

.eqipment-listing>div>div span {
    border-radius: 6px;
    border: 1px solid #E9EAED;
    background: #F5F6F8;
    width: 108px;
    min-height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #36393D;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -0.42px;
    flex-wrap: wrap;
}

.el-column>div {
    margin-bottom: 25px;
}

.el-column>div span a {
    display: block;
    width: 100%;
    text-align: center;
}

.eqipment-listing {
    margin-top: 45px;
}

.btn-block a {
    max-width: 491px;
    width: 90%;
    margin: 0 auto;
    display: block;
    height: 60px;
    padding: 20px 15px;
}

.btn-block a i {
    position: relative;
    top: 2px;
    left: 5px;
}

.copyright p {
    color: #A3A5A9;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.36px;
    text-align: right;
    margin-bottom: 0;
}

.copyright {
    padding-top: 38px;
    position: relative;
    right: 40px;
}

.back-btn {
    color: #36393D;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.32px;
    position: relative;

}

.back-btn i {
    font-size: 12px !important;
    color: #36393D !important;
    margin-right: 8px;
}

/*****************add-equipment-css***************/
.row.bg-color {
    /* background: linear-gradient(169deg, #014C64 0.27%, #078F7F 97.99%);
	backdrop-filter: blur(2.5px); */
    padding-bottom: 120px;
}

.addequipment-form h2 {
    color: #FFF;
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 26px;
}

.addequipment-form form .form-group {
    margin-bottom: 13px;
}

.addequipment-form form .form-group .form-control {
    width: 390px;
    height: 60px;
    border-radius: 13px;
    background: #FFF;
    color: #36393D;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.14px;
    padding: 20px 25px;
}

.addequipment-form form .form-group span {
    display: block;
    position: relative;
}

.addequipment-form form .form-group span::after {
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 20px;
    color: #36393D;
    font-size: 14px;
}

.addequipment-form form .form-group .form-control:focus {
    outline: none;
    box-shadow: none;
}

.btn-group .green-btn {
    width: 390px;
    height: 60px;
    border-radius: 13px;
    background: #00AE5B;
    box-shadow: 0px 8px 18px 0px rgba(3, 64, 35, 0.25);
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.42px;
    border: none;
    margin-top: 10px;
}

.btn-group .green-btn i {
    margin-right: 10px;
}

.scan-group p {
    color: #FFF;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
}

.addequipment-form {
    display: inline-block;
}

.bg-color>div {
    flex-wrap: wrap;
}

.scan-group {
    width: 100%;
    padding-top: 180px;
    padding-bottom: 120px;
}

.scanner-block video {
    max-width: 331px;
    height: 416px;
    background: url(/assets/images/scan-img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 30px;
}

.scanner-block {
    max-width: 331px;
    margin: 0 auto;
    border-radius: 30px;
    height: 416px;
    position: relative;
}

.top-left {
    width: 48px;
    height: 48px;
    background: url(/assets/images/rounded-corner.png);
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

.bottom-left {
    width: 48px;
    height: 48px;
    background: url(/assets/images/rounded-corner.png);
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: rotate(270deg);
}

.top-right {
    width: 48px;
    height: 48px;
    background: url(/assets/images/rounded-corner.png);
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    transform: rotate(91deg);
}

.bottom-right {
    width: 48px;
    height: 48px;
    background: url(/assets/images/rounded-corner.png);
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
}

.square {
    width: 331px;
    height: 379px;
    position: absolute;
    top: 9px;
    overflow: hidden;
}

.scan {
    width: 95%;
    height: 80px;
    background: linear-gradient(#fff, transparent);
    animation: scanning 1.5s linear alternate infinite;
    margin: 0 auto;
}

@keyframes scanning {
    0% {
        transform: translatey(0px);
    }

    100% {
        transform: translatey(280px);
    }
}

.qr-btn {
    color: #EB6A58;
    font-size: 35px;
    width: 75px;
    height: 75px;
    border-radius: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px auto 0 auto;
    text-decoration: none;
}

.button-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.button-group a {
    width: 160px;
    height: 60px;
    border-radius: 13px;
    color: #36393D;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.42px;
    padding: 20px 15px;
    text-decoration: none;
    margin: 0 10px;
}

.button-group a:first-child {
    background: #fff;
}

.button-group a:last-child {
    background: #00AE5B;
    box-shadow: 0px 7px 15px 0px rgba(0, 91, 48, 0.25);
    color: #fff;
}

.scan-group {
    display: none;
}

.card.image-capture {
    display: block;
    width: 100%;
    padding-left: 10px;
    background: transparent;
    border: none;
}

.card.image-capture video {
    width: 100%;
}

.card.image-capture .capture-image {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50px;
    margin: auto;
    background: rgba(255, 255, 255, 0.31);
    width: 75px;
    height: 75px;
    border-radius: 100%;
    border: 1px solid #fff;
    border: 2px solid rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(4px);
}

.captured-btngroup>button {
    width: 160px;
    height: 60px;
    border-radius: 13px;
    color: #36393D;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.42px;
    background: #fff;
    border: none;
    margin: 0 5px;
}

.captured-btngroup>button:nth-child(2) {
    background: #00AE5B;
    box-shadow: 0px 7px 15px 0px rgba(0, 91, 48, 0.25);
    color: #fff;
}

.captured-btngroup>button:last-child {
    background: #EB6A58;
    color: #fff;
}

.captured-btngroup {
    padding: 49px 0 55px 0;
}

.captured-images {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.captured-images img {
    width: 99px;
    height: 97px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.60);
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.25);
    margin: 0 10px;
}

/**********************bulk-processing-css*******************/
.bulk-processing .user-profile {
    justify-content: space-between;
}

.bulk-processing .user-profile a.back-btn {
    color: #36393D;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.32px;
    text-decoration-color: #EB6A58;
    margin-left: 35px;
}

.filter-btn {
    width: 49px;
    height: 49px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 2px 6px 0px rgba(219, 223, 231, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    margin-right: 12px;
}

.top-content div form span {
    display: flex;
    width: 250px;
    height: 50px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 2px 6px 0px rgba(219, 223, 231, 0.95);
}

.top-content div form span input[type="search"] {
    border: none;
    border-radius: 0;
    width: 85%;
    height: 100%;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.top-content div form span input[type="search"]:focus {
    outline: none;
    box-shadow: none;
}

.top-content div form span button {
    background: transparent;
    border: none;
    line-height: normal;
    font-size: 14px;
}

.top-content div form {
    display: flex;
    position: relative;
}

.bulkprocessing-table .top-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 35px 0 15px 0;
}

.bulkprocessing-table .top-content h2 {
    color: #36393D;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.52px;
    margin-bottom: 0;
}

/* .bulkprocessing-table {
    padding-left: 35px;
} */

.btn-filter {
    display: none;
}

.search-btn {
    display: none;
}

.adduser-for-mobile {
    display: none;
}

.select-group {
    width: 100%;
    display: flex;
    align-items: center;
}

.select-group select {
    margin-right: 10px;
}

select:focus {
    outline: none !important;
    box-shadow: none !important;
}

.bulkprocessing-table table thead tr th {
    color: #FFF;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.26px;
    line-height: 16px;
    padding: 7px 7px;
}

.bulkprocessing-table table thead tr th:first-child {
    padding-left: 15px;
}

.bulkprocessing-table table thead tr th {
    background: linear-gradient(#014C64 0.27%, #078F7F 97.99%);
}

.bulkprocessing-table table thead tr th:first-child {
    border-top-left-radius: 8px;
}

.bulkprocessing-table table thead tr th:last-child {
    border-top-right-radius: 8px;
}

.bulkprocessing-table table tbody tr td {
    text-align: center;
    padding: 7px 7px;
    border-bottom: 1px solid rgba(74, 77, 83, 0.1);
}

.bulkprocessing-table table tbody tr:last-child td {
    border-bottom: 0;
}

.bulkprocessing-table table tbody tr td:first-child {
    padding-left: 10px;
}

.bulkprocess-table {
    background: #fff;
    padding: 8px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.bulkprocessing-table table tbody tr td:first-child img {
    width: 78px;
    height: 64px;
    border-radius: 7px;
}

.bulkprocessing-table table tbody tr td:nth-child(2) img {
    border-radius: 7px;
    width: 40px;
}

.bulkprocessing-table table tbody tr td select {
    width: 100%;
    height: 33px;
    border-radius: 6px;
    border: 1px solid #E9EAED;
    background: #FFF;
    color: #36393D;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: -0.11px;
    padding: 5px 8px;
}

.bulkprocessing-table table tbody tr td span {
    width: 100%;
    height: 33px;
    border-radius: 6px;
    border: 1px solid #E9EAED;
    background: #FFF;
    color: #36393D;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: -0.11px;
    padding: 5px;
    display: block;
}

.bulkprocessing-table table tbody tr td a {
    width: 42px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid #E9EAED;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #D9D9D9;
}

.bulkprocessing-table table tbody tr td a.active {
    color: #EB6A58;
}

.default-green-btn {
    width: 297px;
    height: 55px;
    border-radius: 6px;
    background: #00AE5B;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.32px;
    border: none;
    margin: 40px auto;
    transition: 0.5s;
}

.default-green-btn.active-edit {
    background: #015166;
}

.default-green-btn:hover {
    background: #015166;
}

.btn-group {
    text-align: center;
    width: 100%;
}

.bulkprocessing-table table tbody tr td span img {
    position: relative;
    top: -1px;
    right: 5px;
}

/***********************equipment-page-css*********************/
.equipment-form-wrapper .image-group {
    margin: 0 -8px;
    margin-bottom: 30px;
}

.equipment-form-wrapper div.image-group>div {
    padding: 0 8px;
}

.equipment-form-wrapper div.image-group>div img {
    width: 100%;
    border-radius: 10px;
    height: 220px;
    object-fit: cover;
}

.equipment-form-top {
    border-radius: 13px;
    background: #FFF;
    box-shadow: 0px 2px 6px 0px rgba(219, 223, 231, 0.95);
    padding: 25px;
}

.addField {
    width: 180px;
    height: 50px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 2px 6px 0px rgba(219, 223, 231, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #36393D;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.32px;
    text-decoration: none;
}

.addField span {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid #EB6A58;
    background: rgba(235, 106, 88, 0.10);
    position: relative;
    left: 5px;
    top: 1px;
    ;
}

.addField span i {
    font-size: 9px;
    color: #EB6A58;
}

.equipment-form-top .form-group .form-control {
    height: 36px;
    border-radius: 6px;
    border: 1px solid #E8E8E8;
    background: #FFF;
}

.equipment-form-top .form-group .form-control::placeholder {
    color: #81858A;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: -0.3px;
}

.equipment-form-top .form-group .form-control:focus {
    outline: none;
    box-shadow: none;
}

.equipment-form-top .form-group select.form-control {
    color: #81858A;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: -0.3px;
}

.equipment-form-top .form-group label {
    color: #81858A;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.26px;
    line-height: 18px;
}

.equipment-form-top>div:nth-child(2) div:first-child input {
    width: 141px;
}

.equipment-form-top>div:nth-child(2) div .form-control::placeholder {
    color: #36393D;
}

.equipment-form-top .form-group {
    margin-bottom: 20px;
}

.bulk-field .el-column>div {
    margin-bottom: 0;
}

.bulk-field .form-group .form-control::placeholder {
    color: #36393D;
}

.bulk-field .form-group select.form-control {
    color: #36393D;
}

.link-group {
    width: 100%;
    height: 36px;
    border-radius: 6px;
    border: 1px solid #E8E8E8;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 5px;
}

.link-group a {
    color: #1772C6;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: -0.42px;
    text-decoration-line: underline;
}

.link-group a i {
    margin-right: 5px;
}

.link-group>span:last-child a {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid #EB6A58;
    background: rgba(235, 106, 88, 0.10);
    position: relative;
    left: 5px;
    top: 1px;
    text-decoration: none;
}

.link-group>span:last-child a i {
    font-size: 9px;
    color: #EB6A58;
    margin-right: 0;
}

.website-link a i {
    color: #36393D;
    font-size: 14px;
}

.website-link a {
    display: flex !important;
    align-items: center;
    justify-content: space-around;
}

.select-arrow {
    position: relative;
    display: block;
}

.select-arrow::after {
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 13px;
    top: 8px;
    font-size: 14px;
}

/*******************user-invite-css********************/
.user-invite-form {
    padding-left: 80px;
}

.userinvite-form .form-group .form-control {
    height: 60px;
    border-radius: 13px;
    background: #FFF;
    box-shadow: 0px 2px 6px 0px rgba(219, 223, 231, 0.95);
    border: none;
}

.userinvite-form .form-group .form-control:read-only {
    color: #81858A;
    opacity: 0.8;
}

.userinvite-form .form-group label {
    color: #36393D;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.3px;
    margin-bottom: 5px;
}

.userinvite-form .form-group span {
    position: relative;
    display: block;
}

.userinvite-form .form-group span button {
    position: absolute;
    right: 15px;
    top: 17px;
    background: transparent;
    border: none;
}

.userinvite-form .form-group .form-control:disabled,
.userinvite-form .form-group .form-control[readonly]::placeholder {
    opacity: 0.8;
}

.userinvite-form .form-group {
    margin-bottom: 20px;
}

.user-invite-form>div:first-child {
    margin-bottom: 30px;
    text-align: center;
    display: block;
}

.user-invite-form .forgot-passgroup p {
    color: #3D3836;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.3px;
}

.user-invite-form .forgot-passgroup p a {
    color: #EB6A58;
}




/* 11.12.23 */

.profile-dashboard .user-profile {
    margin-bottom: 40px;
    ;
}


.profile-row {
    flex-wrap: wrap;
    gap: 30px 25px;
}

.profile-row>div {
    max-width: calc(33.33% - 20px);
    margin: 0;
}

.dashboard-contents-box {
    padding: 0px 15px 50px;
    border: none;
    background: none;
}

.dashboard-contents-box h2 {
    margin-bottom: clamp(10px, 1.5vw, 25px);
}

.inventory-box {
    border-radius: 13px;
    background: #FFF;
    box-shadow: 0px 2px 6px 0px rgba(219, 223, 231, 0.95);
}

.dashboard-contents-box .image-block {
    width: 100%;
}

.dashboard-contents-inner {
    border-radius: 13px;
    background: #FFF;
    box-shadow: 0px 2px 6px 0px rgba(219, 223, 231, 0.95);
    padding: 40px 50px 120px;
}

.dash-form-groups {
    padding: 35px 40px;
    border-radius: 7px;
    border: 1px dashed #D1D7D9;
    background: #FFF;
}

.dash-form-groups .form-group {
    display: flex;
    align-items: flex-start;
}

.inventory-form :where(input, label, select) {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #36393D;
}

/* .inventory-form select{font-weight: 600;} */

.inventory-form :where(input, select) {
    height: 48px;
}

.inventory-form input.form-control:focus,
.inventory-form select:focus {
    box-shadow: 0 0 0 .25rem rgba(236, 107, 88, 0.5);
}

.inventory-form label {
    min-width: 145px;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.32px;
    color: #81858A;
    margin-bottom: 0;
}


.dash-form-groups .input-field {
    flex-grow: 1;
}


.profile-pic-upload {
    display: inline-flex;
    justify-content: center;
    border-radius: 14px;
    background: #F8FAFC;
    width: 100%;
    min-height: 205px;
    position: relative;
}

.profile-pic-upload input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}

.profile-pic-upload-in {
    border-radius: 7px;
    border: 1px dashed #CEE4EA;
    background: #FFF;
    width: 100%;
    min-height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-direction: column;
}

.profile-pic-upload-in p {
    color: #A3A5A9;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.orange-btn {
    border-radius: 13px;
    background: #EB6A58;
    box-shadow: 0px 10px 24px 0px rgba(235, 106, 88, 0.39);
    width: 100%;
    max-width: 490px;
    height: 60px;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    letter-spacing: -0.32px;
    font-weight: 700;
    transition: 0.5s all ease;
}

.orange-btn:hover {
    background: #0a7f7a;
    color: #fff;
}


/* Manage Users Permission sec */
.users-perm-sec {
    margin-top: -100px;
}

.users-perm-sec .top-content {
    display: flex;
    flex-direction: column;
}

.users-perm-sec .top-content> :where(h2, div) {
    width: 100%;
}

.users-perm-sec .top-content h2 {
    margin-bottom: clamp(10px, 1.7vw, 28px);
}

.filter-box {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-right: 10px;
}

.filter-box select {
    max-width: 139px;
    width: 100%;
    border-radius: 8px;
    background-color: #FFF;
    box-shadow: 0px 2px 6px 0px rgba(219, 223, 231, 0.95);
    font-weight: 500;
    color: #36393D;
}

.inventory-table td {
    color: #36393D;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: -0.42px;
}

.inventory-table :where(td:first-child, th:first-child) {
    padding-left: 10px;
}

.bulkprocessing-table .inventory-table :where(td, th) {
    text-align: left;
}

.inventory-table .dot-btn {
    min-width: 81px;
}

.dot-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 26px;
    font-size: 10px;
    font-weight: 600;
    line-height: 22px;
    border-radius: 6px;
    border: 1px solid #0EC76E;
    background: rgba(0, 174, 91, 0.10);
    padding: 0 12px;
    color: #00AE5B;
}

.dot-btn .dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    background-color: #0EC76E;
    border-radius: 50%;
    margin-right: 5px;
}

.red-dot-btn.dot-btn {
    border-color: #F63737;
    color: #F63737;
    background: rgba(246, 55, 55, 0.10);
}

.red-dot-btn .dot {
    background-color: #F63737;
}

.perm-btn {
    border-radius: 6px;
    border: 1px solid #E9EAED;
    background: #F5F6F8;
    height: 36px;
    padding: 0 26px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all ease;
}

.perm-btn:hover {
    background: linear-gradient(169deg, #014C64 0.27%, #078F7F 97.99%);
    border: 1px solid transparent;
}

.perm-btn:hover i {
    color: #fff;
}

.perm-btn i {
    color: #A3A5A9;
}

.edit-delete-btn {
    padding: 0;
}

.edit-delete-btn i {
    color: #A3A5A9;
    font-size: 18px;
}

.edit-delete-box {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    max-width: 50px;
}

.bulkprocessing-table .inventory-table :where(td, th) {
    padding: 10px;
}


.dataTables_paginate .page-link {
    display: inline-flex;
    width: 33px;
    height: 33px;
    color: #36393D;
    font-size: 15px;
    font-weight: 700;
    border-radius: 5px;
    background: #FFF;
    cursor: pointer;
    box-shadow: 0px 2px 6px 0px rgba(219, 223, 231, 0.95);
    padding: 0;
    justify-content: center;
    align-items: center;
}

.dataTables_paginate :where(li:first-child, li:last-child) a {
    font-size: 0px !important;
}

.dataTables_paginate .paginate_button.active a,
.dataTables_paginate .paginate_button a:hover {
    background: linear-gradient(169deg, #014C64 0.27%, #078F7F 97.99%);
    color: #FFF;
}

.dataTables_paginate ul {
    gap: 10px;
}

.dataTables_paginate .previous a,
.dataTables_paginate .next a {
    box-shadow: none;
    border: none;
    background-size: 14px 14px;
}

.dataTables_paginate .previous a {
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMTYiIHdpZHRoPSIxMCIgdmlld0JveD0iMCAwIDMyMCA1MTIiPjxwYXRoIG9wYWNpdHk9IjEiIGZpbGw9IiNiOGI5YmEiIGQ9Ik00MS40IDIzMy40Yy0xMi41IDEyLjUtMTIuNSAzMi44IDAgNDUuM2wxNjAgMTYwYzEyLjUgMTIuNSAzMi44IDEyLjUgNDUuMyAwczEyLjUtMzIuOCAwLTQ1LjNMMTA5LjMgMjU2IDI0Ni42IDExOC42YzEyLjUtMTIuNSAxMi41LTMyLjggMC00NS4zcy0zMi44LTEyLjUtNDUuMyAwbC0xNjAgMTYweiIvPjwvc3ZnPg==") no-repeat center center;
}

.dataTables_paginate .previous a:hover {
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMTYiIHdpZHRoPSIxMCIgdmlld0JveD0iMCAwIDMyMCA1MTIiPjxwYXRoIG9wYWNpdHk9IjEiIGZpbGw9IiMwMTU3NjgiIGQ9Ik00MS40IDIzMy40Yy0xMi41IDEyLjUtMTIuNSAzMi44IDAgNDUuM2wxNjAgMTYwYzEyLjUgMTIuNSAzMi44IDEyLjUgNDUuMyAwczEyLjUtMzIuOCAwLTQ1LjNMMTA5LjMgMjU2IDI0Ni42IDExOC42YzEyLjUtMTIuNSAxMi41LTMyLjggMC00NS4zcy0zMi44LTEyLjUtNDUuMyAwbC0xNjAgMTYweiIvPjwvc3ZnPg==") no-repeat center center;
}

.dataTables_paginate .next a {
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMTYiIHdpZHRoPSIxMCIgdmlld0JveD0iMCAwIDMyMCA1MTIiPjxwYXRoIG9wYWNpdHk9IjEiIGZpbGw9IiNiOGI5YmEiIGQ9Ik0yNzguNiAyMzMuNGMxMi41IDEyLjUgMTIuNSAzMi44IDAgNDUuM2wtMTYwIDE2MGMtMTIuNSAxMi41LTMyLjggMTIuNS00NS4zIDBzLTEyLjUtMzIuOCAwLTQ1LjNMMjEwLjcgMjU2IDczLjQgMTE4LjZjLTEyLjUtMTIuNS0xMi41LTMyLjggMC00NS4zczMyLjgtMTIuNSA0NS4zIDBsMTYwIDE2MHoiLz48L3N2Zz4=") no-repeat center center;
}

.dataTables_paginate .next a:hover {
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMTYiIHdpZHRoPSIxMCIgdmlld0JveD0iMCAwIDMyMCA1MTIiPjxwYXRoIG9wYWNpdHk9IjEiIGZpbGw9IiMwMTU3NjgiIGQ9Ik0yNzguNiAyMzMuNGMxMi41IDEyLjUgMTIuNSAzMi44IDAgNDUuM2wtMTYwIDE2MGMtMTIuNSAxMi41LTMyLjggMTIuNS00NS4zIDBzLTEyLjUtMzIuOCAwLTQ1LjNMMjEwLjcgMjU2IDczLjQgMTE4LjZjLTEyLjUtMTIuNS0xMi41LTMyLjggMC00NS4zczMyLjgtMTIuNSA0NS4zIDBsMTYwIDE2MHoiLz48L3N2Zz4=") no-repeat center center;
}

.inventory-table .row:first-child {
    display: none;
}

.users-perm-sec .bulkprocess-table {
    background: inherit;
    padding: inherit;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.users-perm-sec .dt-row {
    background: #fff;
    border-radius: 8px;
    margin: 0 -6px;
    padding: 6px 0;
}

.users-perm-sec .dt-row>* {
    padding: 0 6px;
}

.inventory-table .row+.row {
    margin-top: 24px;
}

.inventory-table .name-th {
    min-width: 120px;
}

.users-perm-sec .inventory-table th {
    width: inherit !important;
}

.add-user-btn {
    color: #36393D;
    font-size: clamp(14px, 1.3vw, 16px);
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.32px;
    height: 60px;
    padding: 0 20px;
    border-radius: 13px;
    background: #FFF;
    box-shadow: 0px 2px 6px 0px rgba(219, 223, 231, 0.95);
    gap: 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid transparent;
    position: relative;
    z-index: 1;
}

.add-user-btn i {
    color: #EB6A58;
    border: 1px solid #EB6A58;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    background: rgba(235, 106, 88, 0.10);
    font-size: 16px;
    border-radius: 50%;
}

.add-user-btn:hover {
    background: #EB6A58;
    color: #fff;
}

.add-user-btn:hover i {
    color: #fff;
    border-color: #fff;
}

.backbtn-top {
    margin-top: -82px;
}

.perm-owner-sec .card-body {
    padding: 0;
}

.perm-owner-sec .eqipment-group {
    padding: 7px;
    border-radius: 13px;
    background: #FFF;
    box-shadow: 0px 2px 6px 0px rgba(219, 223, 231, 0.95);
}

.perm-owner-sec .card {
    border: none;
    box-shadow: none;
}

.perm-owner-sec table {
    border-radius: 8px 8px 8px 8px;
    overflow: hidden;
}

.perm-owner-sec thead {
    background: linear-gradient(180deg, #014C64 0.27%, #078F7F 97.99%);
}

.perm-owner-sec thead th {
    background: none;
    color: #fff;
    letter-spacing: -0.26px;
    font-weight: 600;
    font-size: 13px;
}

.permission-check-label {
    display: inline-block;
    position: relative;
    color: #36393D;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.72px;
}

.permission-check-label input {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.check-indicator {
    display: inline-block;
    width: 22px;
    height: 22px;
    position: relative;
    top: 4px;
    background-size: 15px 15px;
    border: 1px solid transparent;
    border-radius: 2px;
    border: 1px solid #92999A;
    background: #FFF;
    margin-right: 4px;
}

.permission-check-label input:checked+.check-indicator {
    border-color: #00AE5B;
    background: url(/assets/images/check-mark.png) no-repeat center center #00AE5B;
}

.permission-check-label input:checked~span {
    color: #00AE5B;
}

.small-check-label {
    font-size: 15px;
    line-height: 21px;
    font-weight: 400;
    color: #81858A
}

.small-check .check-indicator {
    width: 18px;
    height: 18px;
    background-size: 14px 14px;
}

.perm-owner-sec tbody tr {
    border: none;
    box-shadow: none;
}

.perm-owner-sec td {
    border: none;
    box-shadow: none;
    padding-top: 15px;
    padding-bottom: 15px;
}

.perm-owner-sec tbody tr:nth-child(odd) td {
    background: none;
}

.perm-owner-sec tbody tr:nth-child(even) td {
    background: #F5F6F8;
}

.perm-owner-sec tr td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.perm-owner-sec tr td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.perm-owner-sec td:first-child,
th:first-child {
    padding-left: 25px;
}

.perm-owner-sec td:last-child,
th:last-child {
    padding-right: 25px;
}

.equipmient-row.perm-owner-sec .profile-top-head {
    margin-top: 50px;
}



.inventory-accord .accordion-header .permission-check-label {
    top: 50%;
    left: 21px;
    transform: translateY(-50%);
    z-index: 10;
    position: absolute
}

.inventory-accord .accordion-header {
    position: relative;
}

.inventory-accord .project-row {
    border: 1px solid #E4EDF0;
    border-radius: 6px;
    overflow: hidden;
}

.inventory-accord .project-row.active {
    border: 1px solid #057C77;
    background: #FFF;
}

.inventory-accord .accordion-body {
    border-bottom: 1px solid #E8EBEE;
}

.inventory-accord .accordion-body div {
    line-height: 22px;
    font-weight: 500;
    font-size: 18px;
    color: #36393D;
}

.inventory-accord .project-row+.project-row {
    margin-top: 20px;
}

.inventory-accord .accordion-button {
    background: #F8FAFC;
    padding-left: 58px;
    color: #fff;
    border-radius: 4px;
    color: #36393D;
    font-weight: 500;
}

.inventory-accord .accordion-button:not(.collapsed) {
    background: linear-gradient(180deg, #014C64 0.27%, #078F7F 97.99%);
    color: #fff;
}

.inventory-accord .accordion-button:focus {
    box-shadow: none;
}

.inventory-accord .accordion-button::after {
    filter: brightness(1) invert(1);
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMTYiIHdpZHRoPSIxNCIgdmlld0JveD0iMCAwIDQ0OCA1MTIiPjxwYXRoIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjEiIGQ9Ik0yMDEuNCAzNDIuNmMxMi41IDEyLjUgMzIuOCAxMi41IDQ1LjMgMGwxNjAtMTYwYzEyLjUtMTIuNSAxMi41LTMyLjggMC00NS4zcy0zMi44LTEyLjUtNDUuMyAwTDIyNCAyNzQuNyA4Ni42IDEzNy40Yy0xMi41LTEyLjUtMzIuOC0xMi41LTQ1LjMgMHMtMTIuNSAzMi44IDAgNDUuM2wxNjAgMTYweiIvPjwvc3ZnPg==");
    background-size: 16px 16px;
}

#permission-accord .project-row.active .accordion-button::after {
    filter: brightness(0) invert(1);
}

.inventory-accord .accordion-body .check-indicator {
    width: 20px;
    height: 20px;
    background-size: 70% 70% !important;
}


.manage-equipments.bulkprocessing-table table tbody tr td span {
    width: 18px;
    height: 18px;
    background-size: 10px !important;
    border-color: #92999A;
}

.manage-equipments.bulkprocessing-table input:checked+.check-indicator {
    background-color: #046d71;
    border-color: #046d71;
}

.manage-equipments.bulkprocessing-table table tbody tr td:first-child {
    padding-right: 0;
}

.manage-equipments.bulkprocessing-table {
    padding-left: 12px;
}

.manage-equipments.bulkprocessing-table .icon-action-btn {
    width: auto;
    height: auto;
    border: none;
}

.manage-equipments.bulkprocessing-table .icon-action-btn i {
    color: #A3A5A9;
}

select.current-location {
    max-width: 130px;
}

.icon-action-btn img {
    min-width: 16px;
}

.manage-equipments.bulkprocessing-table .icon-action-btn.active i {
    color: #EB6A58;
}

.manage-equipments.bulkprocessing-table table tbody tr td select {
    font-size: 14px;
}

.equp-user-pic {
    max-width: 70px;
}


/* Profile */
.profile-details-box {
    border-radius: 13px;
    background: #FFF;
    box-shadow: 0px 2px 6px 0px rgba(219, 223, 231, 0.95);
    overflow: hidden;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
}

.profile-details-pic {
    display: inline-block;
    position: relative;
    text-align: center;
}

.profile-details-pic .edit-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #EB6A58;
    width: 47px;
    height: 47px;
    border: none;
    border: 3px solid #fff;
    filter: drop-shadow(1px 3px 11px rgba(61, 77, 86, 0.21));
    border-radius: 50%;
    position: relative;
    top: -23px;
}

.profile-details-pic figure {
    border-radius: 36px;
    max-width: 210px;
    overflow: hidden;
    margin-bottom: 0;
}

.profile-details-content {
    flex-grow: 1;
}

.profile-details-content label {
    color: #36393D;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: calc(100% + 7px);
    letter-spacing: -0.36px;
    min-width: 165px;
}

.profile-details-content .form-field {
    display: flex;
    align-items: center;
    gap: 25px;
}

.profile-details-content .form-field+.form-field {
    margin-top: 15px;
}

.profile-details-content .form-control {
    /* background: #f9fafc; */
    max-width: 300px;
    border-radius: 7px;
    border: 1px solid #E5EBF0;
    height: 42px;
    color: #36393D;
}

.profile-details-content .form-control:focus {
    box-shadow: 0 0 0 .25rem rgba(236, 107, 88, .25);
}

.profile-details-content .form-control::placeholder {
    opacity: 1;
    color: #A3A5A9;
}

.edit-field-btn {
    background: none;
    border: none;
}

.edit-field-btn i {
    color: #a2a6a9;
    font-size: 20px;
    font-weight: 500;
}


.switch-on-off {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.profile-details-content label.switch-on-off {
    min-width: inherit;
}

.switch-on-off input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-on-off .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.switch-on-off .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.switch-on-off input:checked+.slider {
    background-color: #EB6A58;
}

.switch-on-off input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

.switch-on-off input:checked+.slider:before {
    -webkit-transform: translateX(22px);
    -ms-transform: translateX(22px);
    transform: translateX(22px);
}

.switch-on-off .slider.round {
    border-radius: 34px;
}

.switch-on-off .slider.round:before {
    border-radius: 50%;
}

.orange-btn {
    border-radius: 13px;
    background: #EB6A58;
    box-shadow: 0px 10px 24px 0px rgba(235, 106, 88, 0.39);
    width: 100%;
    max-width: 490px;
    height: 60px;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    letter-spacing: -0.32px;
    font-weight: 700;
    transition: 0.5s all ease;
}

.orange-btn:hover {
    background: #0a7f7a;
    color: #fff;
}


.add-location-box {
    border-radius: 13px;
    background: #FFF;
    box-shadow: 0px 2px 6px 0px rgba(219, 223, 231, 0.95);
    padding: 60px 60px 110px 110px;
    ;
}

.add-location-box form {
    max-width: 600px;
}

.add-location-box .field-box {
    display: flex;
    align-items: center;
}

.add-location-box .field-box+.field-box {
    margin-top: 25px;
}

.add-location-box label {
    font-size: 17px;
    max-width: 200px;
    padding-left: 10px;
    width: 100%;
}

.add-location-box :where(select, input) {
    border-radius: 6px;
    border: 1px solid #E9EAED;
    background: #FFF;
}

.add-location-box select {
    background: url(/assets/images/down-arrow.png) no-repeat center right 20px;
}

.add-location-box .submit-btn-box {
    display: flex;
    justify-content: flex-end;
}

.add-location-box [type="submit"] {
    max-width: calc(100% - 200px);
    background: #EB6A58;
    border-radius: 13px;
}

.add-location-box [type="submit"]:hover {
    background: #0a7f7a;
}

.add-location-sec {
    padding: 0 20px;
    margin-top: -43px;
}

.back-btn {
    text-decoration: none;
}

/* .back-btn span {
    border-bottom: 2px solid #EB6A58;
} */

.header-profile-pic {
    border-radius: 6px;
    min-width: 48px;
    height: 48px;
}

.adduser-for-mobile {
    display: none;
}

.mobile-back-btn {
    display: none;
}

.back-btn {
    text-decoration: underline;
    text-decoration-color: tomato;
}

.button-group-inline {
    display: none !important;
}

/*****************profile-page-css**********************/
.profile-details-box form .profile-details-pic-wrapper {
    width: 32%;
}

.profile-details-box form .profile-details-pic-wrapper img {
    width: 205px;
    height: 205px;
    object-fit: cover;
}

.profile-details-box form .profile-details-content {
    width: 68%;
}

.reset-pass-section .form-field {
    flex-wrap: wrap;
}

.reset-pass-section .form-field small {
    width: 100%;
    margin-left: 190px;
    margin-top: -20px
}

#current_password {
    width: 300px;
}

.btn-toggle.active,
.btn-toggle.active:hover {
    background-color: #eb6a58;
}

#uploadFile {
    color: #fff;
}

.formfield-top {
    margin-bottom: 15px;
}

.formfield-top .form-field .form-label,
.reset-pass-section .form-field .form-label,
.form-group .form-label {
    max-width: 29%;
    width: 100%;
    min-width: auto;
    min-height: 35px;
    margin-bottom: 0;
    position: relative;
    display: flex;
    align-items: end;
}

/* .form-group .form-label {
    min-height: 21px;
} */

.formfield-top .form-field .input-field,
.reset-pass-section .form-field .input-field,
.form-group .input-field {
    max-width: 65%;
    width: 100%;
    position: relative;
}

.formfield-top .form-field .input-field span.edit-field {
    position: absolute;
    right: 25px;
    top: 10px;
}

body .profile-details-box form {
    max-width: 850px;
    width: 100%;
}

body .profile-details-content .form-field {
    align-items: flex-start;
}

.edit-delete-box a {
    border: none !important;
}

@media(max-width: 767px) {
    .search-block {
        display: none;
    }

}

footer {
    padding-bottom: 20px;
    background: #f5f6f8;
    /* position: fixed; */
    width: 100%;
    bottom: 0;
    z-index: 1;
}

.sticky-left {
    z-index: 2;
    /* max-width: 380px; */
    width: clamp(300px, 27.1vw, 380px) !important;
    /* width: 100%; */
}

.profile-block .icon-block i {
    font-size: 47px;
    color: #EB6A58;
}

.main-navigation {
    overflow-y: auto;
}

.main-navigation {
    scrollbar-width: 3px;
}

.main-navigation::scrollbar {
    width: 3px;
}

.main-navigation::-webkit-scrollbar {
    width: 3px;
}

.main-navigation::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.main-navigation::-webkit-scrollbar-thumb {
    background-color: #EB6A58;
    outline: 1px solid #EB6A58;
}

.main-navigation>ul>li>a.active,
.main-navigation>ul>li>a.active i,
.main-navigation .submenu li a.active,
.main-navigation .submenu li a.active i,
.main-navigation>ul>li.selected>a,
.main-navigation>ul>li.selected>a i {
    color: #EB6A58;
}

.main-navigation>ul>li>a.active svg,
.main-navigation .submenu li a.active svg,
.main-navigation>ul>li.selected>a svg {
    fill: #EB6A58 !important;
}

.show-eye {
    position: relative !important;
    max-width: 300px !important;
    width: 100% !important;
}

.show-eye span.edit-field {
    position: absolute;
    right: 15px;
    top: 11px;
}

.show-eye span.edit-field i {
    font-size: 18px;
}


@media(max-width: 767px) {
    .forgotpass-mobile {
        display: block;
    }

    footer .col-md-6 {
        width: 100%;
    }

    footer .col-md-6 p {
        text-align: center;
    }

    .user-invite-form {
        padding-left: 0;
        padding-top: 40px;
        padding-bottom: 30px;
    }
}

@media(max-width: 480px) {
    .forgotpass-desktop>div:last-child {
        display: none !important;
    }

    .user-invite-form .forgot-passgroup p {
        text-align: center;
    }

    .user-invite-form form>div:nth-child(2)>div:last-child,
    .user-invite-form form>div:nth-child(4)>div:last-child,
    .user-invite-form form>div:nth-child(5)>div:last-child {
        margin-bottom: 0;
    }
}

.checkbox-group {
    display: flex;
    justify-content: flex-start;
    width: 135px;
}

.view {
    margin-right: 0;
}

.checkbox-group>div:first-child {
    margin-right: 10px;
}

input[readonly],
input[readonly]:focus,
input[disabled] {
    background-color: #f6f6f6;
    box-shadow: none !important;
    outline: none;
    border: none;
}

.bulkprocess-table .dt-layout-table {
    padding: 10px;
    background: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.dt-paging {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dt-paging>button {
    width: 33px;
    height: 33px;
    color: #36393D;
    font-size: 15px;
    font-weight: 700;
    border-radius: 5px;
    background: #FFF;
    cursor: pointer;
    box-shadow: 0px 2px 6px 0px rgba(219, 223, 231, 0.95);
    padding: 0;
    justify-content: center;
    align-items: center;
    border: none;
}

.dt-paging>button.current,
.dt-paging>button:hover {
    background: linear-gradient(169deg, #014C64 0.27%, #078F7F 97.99%);
    color: #FFF;
    border: none;
}

.bulkprocess-table .dt-paging>button.first,
.bulkprocess-table .dt-paging>button.last,
.bulkprocess-table .dt-paging>button.next,
.bulkprocess-table .dt-paging>button.previous {
    color: #dcd9d9;
    font-size: 30px;
}

.bulkprocess-table .dt-paging {
    margin-top: 20px;
}



.bulkprocess-table .dt-paging>button.first,
.bulkprocess-table .dt-paging>button.last,
.bulkprocess-table .dt-paging>button.next,
.bulkprocess-table .dt-paging>button.previous,
.bulkprocess-table .dt-paging>button.first:hover,
.bulkprocess-table .dt-paging>button.last:hover,
.bulkprocess-table .dt-paging>button.next:hover,
.bulkprocess-table .dt-paging>button.previous:hover {
    box-shadow: none;
    background: transparent;
    color: #dcd9d9;
}

.bulkprocess-table>div>div:first-child {
    display: none;
}

.select-group a {
    font-weight: 500;
    height: 48px;
}

.topequipment-row img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.eqquipment-right-content span.qrcode img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.equp-user-pic {
    width: 45px;
    height: 45px;
    object-fit: cover;
}

.edit-delete-btn.btn.delete-new-class i {
    font-size: 14px;
}

.equipment-form-top .form-group .form-control {
    font-size: 14px;
    color: #36393D;
}

/* #location {
    width: 90px;
} */

.select-arrow::after {
    z-index: 0;
}


.bulk-field .form-group select.form-control {
    color: #36393D;

}

.equipment-form-top .form-group .form-control {
    font-size: 14px;
    color: #36393D;
}

.equipment-form-top .form-group select.form-control {
    font-size: 14px;
}

.qr_demo {
    border: 1px solid #e8e8e8;
}



/* Accordion */
.tenant-accord-wrapper .tenant-accordion {
    cursor: pointer;
    padding: 12px 30px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    position: relative;
    width: 100%;
    text-align: left;
}

.tenant-accord-wrapper .tenant-accordion::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 29px;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    color: #fff;
}

.tenant-accord-wrapper .tenant-accordion.active::after {
    transform: rotate(180deg);
    top: 27%;
}

.tenant-accord-wrapper .tenant-accordion.active,
.tenant-accordion:hover {
    background-color: #ccc;
}

.tenant-accord-wrapper .tenant-accordion+.tenant-panel {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    color: #000;
    padding: 0 10px;
}

.tenant-select option {
    background: #046a70;
    color: #fff;
}

.bulk-processing-modal .header-heading {
    font-size: 16px;
    line-height: calc(100% + 8px);
    font-weight: 400;
    background: linear-gradient(169deg, #014C64 0.27%, #078F7F 97.99%);
    color: #fff;
    padding: 7px 30px;
}

/* .data-table-manage thead {
    pointer-events: none;
} */

.customize-checkbox-design {
    position: relative;
    margin-bottom: -33px;
    top: 17px;
    left: 24px;
    width: fit-content;
}

.customize-span-design {
    display: inline-block;
    width: 26px;
    height: 28px;
}

.bulkprocess-table {
    overflow: hidden;
}

body .data-table-manage.dataTable .equp-user-pic {
    height: 45px;
}

.login-right-content {
    max-width: 430px;
    width: 100%;
}

/* 21.05.24 */
.main-navigation>ul.menu {
    max-width: 318px;
}

.submenu-button {
    top: 20px;
    right: 20px;
}

.data-table-dropdown-box {
    margin-bottom: clamp(10px, 1.7vw, 28px);
}

#imageOrder .modal-dialog {
    max-width: 750px;
}

.image-orders-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.image-orders-list .list {
    width: calc(25% - 11.5px);
}

.changer-order {
    background: #00ae5b;
    color: #fff;
    width: 46px;
}

.changer-order:hover {
    background: #016636;
    color: #fff;
}

.cancel-btn {
    background: #eb6a58;
    border: none;
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 500;
    width: 297px;
    height: 55px;
}

/* 30.08.24 */
body .tenant-progressbar {
    border-radius: 21px;
    overflow: hidden;
}

.arrange-equipment-table input {
    background: none;
}

.arrange-equipment-header {
    background: #EB6A58;
    color: #fff;
    padding-top: 6px;
    padding-bottom: 6px;
}

.arrange-equipment-rcol .fa-sort {
    max-width: 10px;
    padding: 0 15px 0 0;
    display: inline-block;
    color: #eb6a58;
    font-size: 13px;
}

.arrange-equipment-rcol .form-control {
    width: calc(100% - 15px);
}

.arrange-equipment-table .form-control:focus {
    background: none;
}

.arrange-equipment-lcol>.row,
.arrange-equipment-rcol>.row {
    border-bottom: 1px solid #E5EBF0;
}

.arrange-equipment-lcol {
    border-right: 1px solid #E5EBF0;
}

.gradient-table-wrapper {
    background: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 10px;
}

.gradient-table :where(th, td) {
    padding: 10px;
}

.gradient-table th {
    background: linear-gradient(#014C64 0.27%, #078F7F 97.99%);
    color: #FFF;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.26px;
    line-height: 16px;
}

.gradient-table td {
    color: #36393D;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: -0.42px;
}

.gradient-table thead tr th:first-child {
    border-top-left-radius: 8px;
}

.gradient-table thead tr th:last-child {
    border-top-right-radius: 8px;
}

.gradient-table tbody tr td:first-child {
    padding-left: 25px;
}

.equparrange-table th:nth-child(1) {
    width: 50%;
}

.equparrange-table th:nth-child(2) {
    width: 25%;
}

.equparrange-table th:nth-child(3) {
    width: 25%;
}

.importequp-table .iconBtn {
    border: 1px solid #E9EAED;
    background: #FFF;
    width: 54px;
    height: 32px;
    transition: 0.3s all linear;
    border-radius: 6px;
}

.importequp-table .iconBtn:hover {
    background: linear-gradient(169deg, #014C64 0.27%, #078F7F 97.99%);
    border: 1px solid transparent;
}

.importequp-table .iconBtn:hover path {
    fill: #fff;
}

.importequp-table td:nth-last-child(1),
.importequp-table td:nth-last-child(2),
.importequp-table th:nth-last-child(1),
.importequp-table th:nth-last-child(2) {
    text-align: center;
}

.whiteBtn {
    color: #36393D;
    border-radius: 8px;
    background-color: #FFF;
    box-shadow: 0px 2px 6px 0px rgba(219, 223, 231, 0.95);
    font-weight: 500;
    min-height: 48px;
    transition: 0.3s all linear;
}

.whiteBtn:hover {
    background: #eb6a58;
    color: #fff;
}

.tenant-pagination .page-link {
    width: 33px;
    height: 33px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 5px;
    color: #36393D;
    box-shadow: 0px 2px 6px 0px rgba(219, 223, 231, 0.95);
    display: inline-flex;
    align-items: center;
}

.tenant-pagination .active .page-link {
    background: linear-gradient(169deg, #014C64 0.27%, #078F7F 97.99%);
    color: #FFF;
    border: none;
}

.tenant-pagination li:nth-child(1) :where(button, span),
.tenant-pagination li:nth-child(2) :where(button, span),
.tenant-pagination li:nth-last-child(1) :where(button, span),
.tenant-pagination li:nth-last-child(2) :where(button, span) {
    box-shadow: none;
    background: transparent;
    color: #dcd9d9;
    border: none;
    font-size: 30px;
}

.check-images-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.check-images-list .image-item {
    display: flex;
    flex-direction: column;
    width: calc(25% - 12px);
    border: 1px solid #dee2e6;
    padding: 7px;
}

.check-images-list label {
    position: relative;
    padding-left: 24px;
    word-wrap: break-word;
    font-size: 14px;
    margin-top: 7px;
}

.check-images-list [type="checkbox"] {
    appearance: none;
    border-radius: 6px;
    border: 1px solid #DEE2E6;
    position: absolute;
    top: 4px;
    left: 0;
    width: 16px;
    height: 16px;
}

.check-images-list [type="checkbox"]:checked {
    background: url(/assets/images/check-mark.png) no-repeat center center #046d71;
    border-color: #046d71;
    background-size: 84%;
}

.bgOrange {
    background: #eb6a58 !important;
}

.bgGreen {
    background: #00ae5b !important;
}


.link-group:has(.fkley-wrapper) {
    justify-content: space-between;
}

.link-group>.fkley-wrapper+span:last-child a {
    left: 0;
}

.row .fkley-wrapper a {
    width: 8ch;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: left;
}

.fkley-wrapper .doclink-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-right: 6px;
}

.fkley-wrapper {
    min-height: auto;
    max-height: 69px;
    overflow: auto;
}

.fkley-wrapper:has(.document-group>.doclink-wrapper) {
    min-height: 45px;
}

.fkley-wrapper:has(.existing-docs:nth-child(2):last-child) {
    min-height: 45px;
}

.remove_upload_docs,
.remove-existing-docs {
    font-size: 8px;
}


@media(max-width:767px) {
    .check-images-list .image-item {
        width: 100%;
    }
}



@media(max-width:991px) {

    /* 22.08.24 */
    .equipment-slider {
        gap: 12px;
        height: 246px;
        overflow: hidden;
    }

    .equipment-slider .navigation-single-slide img {
        height: 53px;
        border-radius: 9px;
        width: 60px !important;
    }

    .equipment-slider .featured-single-slide img {
        height: 236px;
    }

    .equipment-slider .navigation-single-slide {
        display: inline-flex;
    }

    .equipment-slider .navigation-slider .slick-slide+.slick-slide {
        margin-top: 5px;
    }

    .equipment-slider .navigation-slider .slick-slide {
        width: 100% !important;
        margin: 0;
    }

    .equipment-slider .navigation-slider .slick-slide>div {
        display: inline-flex;
    }

    .equipment-slider .navigation-slider {
        margin: 0;
    }

    .equipment-slider .navigation-slider {
        width: 60px !important;
    }

    .equipment-slider .navigation-slider .slick-track {
        width: 60px !important;
    }

    .product-slider.equipment-slider>div:last-child {
        flex-grow: 1;
    }

    .equipment-slider .navigation-slider .slick-slide {
        display: inline-flex;
    }
}

@media(max-width:767px) {
    .tenant-accord-wrapper .tenant-accordion {
        padding: 8px 15px;
    }

    .tenant-accord-wrapper .tenant-accordion::after {
        right: 13px;
        width: 18px;
        height: 18px;
    }
}

.wishlist {
    color: #eb6a58 !important;
}

.not-wishlist {
    color: #c1c1c1 !important;
}

/* Loader CSS */
.loader-block {
    position: fixed;
    background: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 99;
    display: none;
}

.lds-spinner {
    display: inline-block;
    position: absolute;
    width: 80px;
    height: 80px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: #2a3990;
}

.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


/* sticky columns */
.bulk-list-shadow {
    background: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 10px;
}

.bulk-list-shadow td:last-child,
.bulk-list-shadow th:last-child {
    padding-right: 10px;
}

.bulk-list-wrapper {
    overflow: auto;
    padding: 0;
}

.bulk-list th:nth-last-child(1) {
    position: sticky;
    right: 0;
}

.bulk-list th:nth-last-child(2) {
    position: sticky;
    right: 74px;
}

.bulk-list td:nth-last-child(1) {
    position: sticky;
    right: 0;
    background: #ffffff;
}

.bulk-list td:nth-last-child(2) {
    position: sticky;
    right: 74px;
    background: #ffffff;
}

@media(max-width:767px) {
    .bulk-list .iconBtn {
        width: 35px;
        height: 35px;
    }

    .bulk-list .assign-img-btn.iconBtn svg {
        width: 16px;
    }

    .bulk-list .assign-doc-btn.iconBtn svg {
        width: 13px;
    }

    .bulk-list th:nth-last-child(2) {
        right: 63px;
    }

    .bulk-list td:nth-last-child(2) {
        right: 63px;
    }
}

.download_btns {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.download_btn {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    color: #a3a5a9;
    min-width: 130px;
    border: 1px solid #a3a5a9;
    font-weight: 600;
    transition: 0.3s all linear;
}

.download_btn:hover {
    background: #a3a5a9;
    color: #fff;
}



/* 26.11.24 */
.hover-dtable-img-parent {
    position: relative;
}

.hover-dtable-img-wrapper {
    position: absolute;
    top: 0;
    left: 120px;
    width: 300px;
    height: 250px;
    border: 1px solid #cbcbcb;
    opacity: 0;
    transition: 0.3s opacity linear;
    padding: 4px;
    background-color: #fff;
    border-radius: 5px;
    z-index: 9;
    pointer-events: none;
}

.hover-dtable-img-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

@media(max-width:767px) {
    .hover-dtable-img-wrapper {
        display: none;
    }
}


/* 06.12.24 */
.prevnext-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px !important;
}

.prevnext-prev,
.prevnext-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.prevnext-prev {
    left: 0px;
}

.prevnext-next {
    right: 0px;
}

:where(.prevnext-prev, .prevnext-next) svg {
    width: 20px;
}

body .btns_group {
    gap: 20px;
    justify-content: center;
}

.btns_group .default-green-btn {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    text-decoration: none;
    margin: 0;
    width: calc(33% - 13px);
    min-width: 180px;
}

.equipment-form-top .form-control.eqdetail_textarea {
    height: 58px;
}

/* table.dataTable th{position: relative;} */
.order-col{position: absolute;right: 2px;top: 0;bottom: 0;width: 12px;display: inline-flex;flex-direction: column;justify-content: center;gap: 2px;align-items: center;}
.order-col::before,.order-col::after{content:'';display: inline-block;width: 7px;height: 6px;}
/* .dt-orderable-none .order-col::before,.dt-orderable-none .order-col::after{display: none;} */
.order-col::before{background-color: #fff;clip-path: polygon(50% 0%, 0% 100%, 100% 100%);}
.order-col::after{background-color: #fff;clip-path: polygon(0 0, 50% 100%, 100% 0);}
/* table.dataTable th .dt-column-title {padding-right: 14px;display: inline-block;} */
/* table.dataTable .dt-orderable-none .dt-column-title {padding-right: 0px;} */
.order-desc .order-col::after{background-color: #a3a5a9;opacity: 0.6;}
.order-asc .order-col::before{background-color: #a3a5a9;opacity: 0.6;}
.permission-check-label:has(.check-all){z-index: 1;} 


.manage-equip-box{
    overflow-x: auto;
    padding-bottom: 5px;
}
table.manage-equip {
    background-color: #fff;
}

table.manage-equip tbody tr td a {
    background-color: transparent;
}

table.manage-equip .customize-checkbox-design {
    top: 0;
    left: 0;
    margin-bottom: 0;
}

table.manage-equip thead tr th a {
    color: #FFF;
    text-decoration: none;
}

table.manage-equip thead tr th a .srt-arrw {
    position: relative;
    padding-right: 15px;
    
}
table.manage-equip .srt-arrw{
    position: relative;
    padding-right: 20px;
    display: block;
}
.page-nav-box{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
    column-gap: 5px;
}
.page-nav-box a{
    width: 33px;
  height: 33px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  padding: 0;
  color: #dcd9d9;
}
a.page-nav{
  background: #FFF;
  color: #36393D;
  box-shadow: 0px 2px 6px 0px rgba(219, 223, 231, 0.95);
}
.page-nav:hover,
.page-nav.active{
    background: linear-gradient(169deg, #014C64 0.27%, #078F7F 97.99%);
  color: #FFF;
}
.page-nav.active{
    pointer-events: none;
}


.filter-content label{
    position: absolute;
  right: 0;
  top: -65px;
}
@media (max-width: 1024px){
    .filter-content{
        flex-wrap: wrap;
        margin-top: 60px;
    }
    .filter-content-box{
        align-items: end;
    }
    .filter-content label{
        margin-bottom: 10px;
    width: 300px;
    justify-content: end;
    min-width: 100%;
    text-wrap: nowrap;
  right: 0;
    }
}