/*===== Vendor Management System Custom CSS File ======*/

:root {
    --primary: #F2BD2C;
    --secondary: #7B0707;
    --subtitle: #525E75;
    --background: #F4F4F4;
    --dark-gray: #3D484D;
    --stroke: #EAECF0;
    --input-control: #FFFFFF;
    --white: #FFFFFF;
    --frutiger: 'Frutiger', sans-serif;
    --frutiger-bold: 'Frutiger Bold', sans-serif;
    --header-height: 62px;
}
/*@font-face {
	fant-family: 'Frutiger';
	font-style: normal;
	font-weight: normal;
	src: local('Frutiger'),
		 url('../font/FrutigerLTStd-Cn.otf') format('opentype'),
		 url('../font/Frutiger.woff') format('woff'),
		 url(../font/Frutiger LT 55 Roman.ttf) format('truetype');	
}*/

@font-face {
	font-family: 'Frutiger';
    font-style: normal;
    font-weight: normal;
    src: local('Frutiger'), url('../font/Frutiger.woff') format('woff');
}
@font-face {
	font-family: 'Frutiger Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Frutiger Bold'),
         url('../font/FrutigerLTStd-ExtraBlackCn.otf') format('opentype'),
         url('../font/Frutiger_bold.woff') format('woff');
}
	
body {
    font-family: var(--frutiger) !important;
    font-size: 1rem;
    color: #263238;
    background-color: var(--background);
    overflow-x: hidden;
}

ul, ol {
    padding: 0;
    list-style: none;
}

p {
    margin-bottom: 0;
}

hr {
    background-color: #b2b2b2;
    opacity: 0.5;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fs-20 {
    font-size: 20px;
}
.text-theme {
    color: var(--primary) !important;
}
.bg-gray {
	background-color: #FAFAFA;
}
.bg-background {
    background-color: var(--background);
}
.mb-24 {
    margin-bottom: 24px !important;
}
.mx-24 {
    margin-left: 24px;
    margin-right: 24px;
}
.mx-30 {
    margin-left: 30px;
    margin-right: 30px;
}


.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.h-120 {
    min-height: 120px !important;
}

.w-20 {
    width: 20px !important;
}

.h-40 {
    height: 40px;
}

.d-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*===== Comman CSS =====*/
.wrapper {
    align-items: stretch;
    display: flex;
    width: 100%;
}

.main {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: rgba(248, 248, 248, 0.70);
    min-width: 0;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    transition: margin-left .35s ease-in-out,left .35s ease-in-out,margin-right .35s ease-in-out,right .35s ease-in-out;
}

.content-area {
    margin: 24px 24px 24px 24px;
    padding: 24px;
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid var(--stroke);
    box-shadow: 0px 3px 10px 0px #10182814;
    min-height: 78vh;
}

.section-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    margin-left: 30px;
    margin-right: 30px;
    height: 60px;
    overflow: hidden;
}

    .section-title .title-text {
        position: relative;
        font-size: 22px;
        font-family: var(--frutiger);
        font-weight: 700;
        margin-bottom: 0;
        color: var(--secondary);
    }


.searchbox-filter-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary);
    border-radius: 8px 8px 0 0;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    opacity: 0;
    transition: 0.35s ease-in-out;
    pointer-events: none;
}

    .searchbox-filter-wrap.show {
        top: 0;
        opacity: 1;
        pointer-events: auto;
    }

#search-inp:focus {
    box-shadow: none;
}

.section-subtitle {
    padding: 1rem 0;
}

    .section-subtitle .subtitle-text {
        font-size: 20px;
        font-family: var(--frutiger);
        font-weight: 500;
        color: var(--subtitle);
        margin-bottom: 0;
    }

.page-title-text {
    font-size: 32px;
    font-weight: 700;
    font-family: var(--frutiger);
    color: var(--secondary);
    display: flex;
    white-space: nowrap;
    align-items: center;
}
.page-title-text .page-badge {
    display: inline-flex;
    align-items: center;
    height: 24px;
    background-color: #FFFFFF;
    border-radius: 6px;
    border: 1px solid #D0D5DD;
    font-size: 14px;
    line-height: 10px;
    color: #344054;
    font-family: var(--frutiger);
    font-weight: 400;
    padding: 7px 6px;
    margin-left: 10px;
}

.btn.btn-filter-pill {
    height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    color: #667085;
    margin-right: 16px;
    margin-bottom: 16px;
    border: 1px solid #DCDCDC;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--frutiger);
    white-space: nowrap;
}
.btn.btn-filter-pill .pill-badge {
    color: #000000;
    background-color: var(--primary);
    border-radius: 20px;
    height: 20px;
    min-width: 20px;
    font-size: 12px;
    margin-left: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 6px;
}
.btn.btn-filter-pill.active {
    background-color: var(--secondary);
    border: 1px solid var(--secondary);
    font-weight: 700;
    color: #FFFFFF;
}
.btn.btn-filter-pill.active .pill-badge {
    font-weight: 400;
}
.btn.btn-action {
    background-color: #FFFFFF;
    border: 1px solid #D0D5DD;
    padding: 10px 14px;
    border-radius: 8px;
    height: 40px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    margin-left: 16px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--frutiger);
    color: #344054;
    box-shadow: 0px 1px 2px 0px #1018280D;
}
.btn-theme-red {
    background-color: var(--secondary);
    color: var(--bs-white);
    font-family: var(--frutiger);
    font-weight: 700;
    border-radius: 8px;
    height: 48px;
    white-space: nowrap;
    border: none;
    padding: 8px 16px;
    text-decoration: none;
    box-shadow: 0px 1px 2px 0px #1018280D;
    transition: 0.3s ease-in;
}
.btn-theme-red:hover {
    background-color: var(--secondary);
    color: var(--bs-white);
}
.btn-theme-red:focus {
    background-color: var(--secondary);
    color: var(--bs-white);
}
.btn-theme-light {
    background-color: var(--dark-gray);
    color: var(--bs-light);
    border-radius: 4px;
    height: 40px;
    white-space: nowrap;
    border: 1px solid #E5E5E5;
    padding: 8px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    text-decoration: none;
    transition: 0.3s ease-in;
}

    .btn-theme-light:hover {
        box-shadow: none;
        color: var(--white);
        background-color: var(--primary);
        border: 1px solid var(--primary);
    }

    .btn-theme-light:focus {
        color: var(--white);
        background-color: var(--primary);
        border: 1px solid var(--primary);
        box-shadow: none;
        outline: none;
    }

.btn-theme-primary {
    min-width: 150px;
    background-color: var(--dark-gray);
    color: var(--white);
    font-family: var(--frutiger);
    font-weight: 300;
    border: 0;
    border-radius: 5px;
}

    .btn-theme-primary:disabled {
        background-color: var(--primary);
        color: #ffffff;
        opacity: 0.7;
    }

.btn-payment {
    min-width: 130px;
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--frutiger);
    font-weight: 300;
    font-size: 15px;
    border: 0;
    border-radius: 5px;
    padding: 0.2rem;
}

    .btn-theme-primary:hover,
    .btn-payment:hover {
        background-color: var(--primary);
        color: var(--white);
    }

    .btn-theme-primary:focus,
    .btn-theme-primary:active,
    .btn-payment:focus,
    .btn-payment:active {
        background-color: var(--primary);
        color: var(--white);
    }

.btn-theme-gray {
    min-width: 150px;
    background-color: #DDDDDD;
    color: #333333;
    font-family: var(--frutiger);
    font-weight: 300;
    border: 0;
    border-radius: 5px;
}

    .btn-theme-gray:hover {
        background-color: #CCCCCC;
        color: #333333;
    }

    .btn-theme-gray:focus,
    .btn-theme-gray:active {
        background-color: #DDDDDD;
        color: #333333;
    }

.btn-theme-light.small-btn {
    height: 30px;
    padding: 4px 12px;
    font-size: 0.875rem;
}


.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-input:focus {
    border-color: var(--primary);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(14 68 147 / 25%);
}

.form-floating > .form-control,
.form-floating > .form-control-plaintext {
    padding: 1rem 0.75rem;
    background: var(--input-control);
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

.form-floating > .form-select {
    background: var(--input-control);
}

    .form-floating > .form-select:disabled {
        background-color: #f3f3f3;
        cursor: not-allowed;
    }

.floating-input-wrap {
    position: relative;
    background-color: var(--input-control);
    border-radius: 5px;
    border: 1px solid #DDDDDD;
}

    .floating-input-wrap .form-control {
        background-color: transparent;
        border: 0;
        padding: 20px;
    }

        .floating-input-wrap .form-control:focus {
            box-shadow: none;
            border: 0;
            outline: none;
        }

.form-floating label {
    color: #333333;
    font-family: var(--frutiger);
    font-size: 1rem;
}

    .form-floating label.mandatory::before {
        content: "*";
        position: absolute;
        top: 14px;
        right: 0px;
        color: #FD0000;
    }

.floating-input-wrap .form-control:focus ~ .floating-label,
/*.floating-input-wrap .form-control:valid ~ .floating-label,*/
/*.floating-input-wrap .form-control[value=""] ~ .floating-label*/
.floating-input-wrap .form-control:not(:placeholder-shown) ~ .floating-label {
    transform: translateY(-14px);
    font-size: 13px;
    color: var(--subtitle);
}

.form-floating .input-icon {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

    .form-floating .input-icon.eye-icon {
        font-size: 20px;
        color: #525E75;
        pointer-events: auto;
        cursor: pointer;
        z-index: 11;
    }

        .form-floating .input-icon.eye-icon.show .fa-eye {
            display: none;
        }

        .form-floating .input-icon.eye-icon .fa-eye-slash {
            display: none;
        }

        .form-floating .input-icon.eye-icon.show .fa-eye-slash {
            display: block;
            color: #0d6efd;
            color: var(--primary);
        }

.form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef !important;
    opacity: 1;
}

.form-upload {
    position: relative;
    background-color: var(--input-control);
    min-height: 120px;
    width: 100%;
    padding: 1rem;
    border: 1px dashed #ced4da;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
}

    .form-upload:hover {
        border-color: #333333;
    }

    .form-upload label {
        position: absolute;
        top: 50px;
        left: 50%;
        z-index: 1;
        transform: translate(-50%, 0);
        cursor: pointer;
    }

    .form-upload .file-wrap {
        margin-top: 65px;
        display: flex;
        flex-wrap: wrap;
    }

        .form-upload .file-wrap .file-badge {
            position: relative;
            background-color: var(--white);
            color: var(--primary);
            white-space: nowrap;
            font-size: 14px;
            border: 1px solid #E5E5E5;
            border-radius: 4px;
            margin: 4px;
            padding: 4px 35px 4px 8px;
            overflow: hidden;
        }

            .form-upload .file-wrap .file-badge .remove-file {
                position: absolute;
                top: 0;
                right: 0;
                width: 30px;
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: 0.3s ease-in;
            }

                .form-upload .file-wrap .file-badge .remove-file:hover {
                    cursor: pointer;
                    background-color: var(--primary);
                    color: var(--white);
                }

.licence-box {
    display: none;
}

a.info-link {
    text-decoration: none;
    color: var(--primary);
}


/*===== Sidebar CSS =====*/

.sidebar {
    direction: ltr;
    max-width: 280px;
    min-width: 280px;
    color: #293042;
    transition: margin-left .35s ease-in-out,left .35s ease-in-out,margin-right .35s ease-in-out,right .35s ease-in-out;
}

    .sidebar.collapsed {
        margin-left: -280px;
    }

body[data-sidebar-behavior=sticky] .sidebar-content {
    height: 100vh;
    left: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: #7b0707;
    background-image: url('../images/sidebar-bg.png');
    background-position: center bottom;
    background-repeat: no-repeat;
}

.sidebar .sidebar-content {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

.brand-name {
    height: 80px;
    padding: 10px 30px;
    font-size: 2rem;
    color: var(--white);
    display: flex;
    align-items: center;
    font-family: 'Russo One', sans-serif;
}

    .brand-name h4 {
        font-size: 38px;
        font-family: var(--frutiger-bold);
        font-weight: 800;
    }

    .brand-name img {
        height: 48px;
    }

.menu-title {
    padding: 0 1.25rem;
    margin-top: 0.75rem;
    opacity: 0.8;
    font-size: 12px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0 1rem;
    max-height: calc(100vh - 82px);
    overflow: auto;
}

    .sidebar-menu::-webkit-scrollbar {
        display: none;
        width: 0;
    }

    .sidebar-menu .menu-item .menu-link {
        position: relative;
        padding: 16px;
        margin-bottom: 0;
        color: var(--white);
        font-size: 16px;
        font-weight: 400;
        display: flex;
        align-items: center;
        border-radius: 8px;
        text-decoration: none;
    }

        .sidebar-menu .menu-item .menu-link .submenu-navigation {
            position: absolute;
            top: 19px;
            right: 7px;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s ease-in;
            transform: rotate(0deg);
        }

    .sidebar-menu .menu-item.active .menu-link .submenu-navigation {
        transform: rotate(90deg);
    }

    .sidebar-menu > .menu-item.active > .menu-link {
        background-color: #610606;
        color: var(--primary);
        font-weight: 700;
    }

    .sidebar-menu .menu-item .menu-link .menu-icon {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-right: 16px;
        color: inherit;
    }

    /*===== Submenu CSS =====*/
    .sidebar-menu .submenu {
        padding-left: 39px;
        margin-bottom: 4px;
        list-style: none;
        display: none;
    }

        .sidebar-menu .submenu.show {
            display: block;
        }

        .sidebar-menu .submenu .menu-link {
            font-size: 14px;
            font-weight: 400;
            color: var(--white);
            padding-top: 8px;
            padding-bottom: 8px;
        }

        .sidebar-menu .submenu > .menu-item.active > .menu-link {
            background-color: rgba(0, 0, 0, 0.15);
            font-weight: 500;
            color: var(--primary);
        }

/*===== Top header CSS =====*/
.top-fix-header {
    height: auto;
    padding: 0 !important;
    margin: 24px 24px 0;
    transition: width .35s ease-in-out;
}

.sidebar-toogle-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    color: var(--secondary);
    transition: 0.5s;
}

    .sidebar-toogle-btn:hover {
        background-color: var(--background);
    }

    .sidebar-toogle-btn.flip {
        transform: rotateY(180deg);
    }

.header-logo {
    height: 40px;
    display: none;
    margin: 0 0.5rem;
    opacity: 0;
    transition: opacity 0.35s ease-in-out;
}

    .header-logo.show {
        opacity: 1;
        display: block;
    }

.search-box {
    position: relative;
}

    .search-box .form-control {
        padding-left: 30px;
        border-radius: 10px;
    }

    .search-box .fa {
        position: absolute;
        left: 10px;
        top: 10px;
        color: #67748E;
        pointer-events: none;
    }

.header-icon-wrapper {
    position: relative;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    border-radius: 8px;
    border: 1px solid #D6D6D6;
    background-color: #FFFFFF;
}

    .header-icon-wrapper.active {
        background-color: #FFFFFF;
    }

    .header-icon-wrapper:hover {
        cursor: pointer;
    }

    .header-icon-wrapper > .fa-cog,
    .header-icon-wrapper > .fa-bell {
        color: var(--secondary);
    }

    .header-icon-wrapper .profile-name {
        font-size: 16px;
        font-weight: 400;
        color: #344054;
        font-family: var(--frutiger);
        padding-left: 8px;
    }
    .header-icon-wrapper:has(.profile-pic) {
        border: none;
        margin-right: 0;
    }
    .header-icon-wrapper .profile-pic {
        width: 48px;
        height: 48px;
        overflow: hidden;
        border-radius: 8px;
        border: 1px solid #D6D6D6;
    }

        .header-icon-wrapper .profile-pic img {
            width: 100%;
            height: 100%;
            object-position: center;
            object-fit: cover;
        }

    .header-icon-wrapper .counter-badge {
        position: absolute;
        top: -8px;
        right: -8px;
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-family: var(--frutiger);
        font-size: 12px;
        color: var(--white);
        background-color: #FD0000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform .15s ease-in;
    }

    .header-icon-wrapper:hover .counter-badge,
    .header-icon-wrapper.active .counter-badge {
        transform: translateY(-3px);
    }

.header-popup-box {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 111;
    width: 300px;
    height: auto;
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    overflow: hidden;
    cursor: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(50px);
    transition: opacity 0.35s ease-in-out, transform .35s ease-in-out;
}

    .header-popup-box.w-150 {
        width: 200px;
    }

    .header-popup-box.show {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .header-popup-box .popup-title {
        position: relative;
        color: var(--primary);
        font-family: var(--frutiger);
        font-size: 1rem;
        font-weight: 500;
        padding: 0.5rem 0;
        border-bottom: 1px solid #E5E5E5;
        text-align: center;
    }

    .header-popup-box .popup-body {
        padding: 0.75rem;
        font-family: var(--frutiger);
        max-height: 330px;
        overflow: auto;
    }

        .header-popup-box .popup-body .notification-item {
            position: relative;
            padding: 0.5rem 24px 0.5rem 0;
            font-size: 14px;
            border-bottom: 1px solid #F2F2F2;
        }

            .header-popup-box .popup-body .notification-item:first-child {
                padding-top: 0;
            }

            .header-popup-box .popup-body .notification-item:last-child {
                border-bottom: 0;
            }

            .header-popup-box .popup-body .notification-item .remove-item {
                position: absolute;
                top: 50%;
                right: 2px;
                transform: translateY(-50%);
                width: 20px;
                height: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                text-decoration: none;
                color: var(--subtitle);
                opacity: 0;
                transition: 0.3s ease-in-out;
            }

            .header-popup-box .popup-body .notification-item:hover .remove-item {
                opacity: 1;
                color: var(--primary);
            }

            .header-popup-box .popup-body .notification-item .notification-text {
                color: var(--subtitle);
            }

            .header-popup-box .popup-body .notification-item .notification-time {
                color: #727272;
            }

    .header-popup-box .popup-btn {
        background-color: var(--primary);
        width: 100%;
        padding: 0.5rem;
        color: var(--white);
        text-decoration: none;
        text-align: center;
    }

    .header-popup-box .popup-link {
        display: flex;
        align-items: center;
        padding: 0.5rem 0.75rem;
        text-decoration: none;
        color: var(--subtitle);
    }

        .header-popup-box .popup-link:hover {
            color: var(--primary);
            background-color: var(--background);
        }

        .header-popup-box .popup-link span {
            width: 20px;
            height: 20px;
            margin-right: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }




/*===== Footer CSS =====*/
.footer-wrapper {
    padding: 0.875rem 0;
    margin-top: auto;
    margin-left: 30px;
    margin-right: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .footer-wrapper .footer-link {
        text-decoration: none;
        color: var(--secondary);
        opacity: 0.8;
        transition: 0.3s;
    }

        .footer-wrapper .footer-link:hover {
            opacity: 1;
        }

    .footer-wrapper .footer-text {
        color: var(--secondary);
        opacity: 0.8;
    }

/*==== Custom Table CSS =====*/

.table-theme {
    font-family: var(--frutiger);
    border-collapse: collapse;
}

    .table-theme tbody tr:hover {
        background-color: var(--background);
    }

    .table-theme thead tr th {
        font-size: 16px;
        font-weight: 700;
        white-space: nowrap;
        background-color: #FFEFF3;
        color: var(--secondary);
        border-bottom: 0px;
        vertical-align: middle;
        border-top: 1px solid var(--stroke);
        padding: 16px;
        line-height: 16px;
    }
    .table-theme thead tr th:first-child {
        border-radius: 16px 0 0 0;
        border-left: 1px solid var(--stroke);
    }
    .table-theme thead tr th:last-child {
        border-radius: 0 16px 0 0;
        border-right: 1px solid var(--stroke);
    }
    .table-theme tbody tr td {
        color: #344054;
        font-family: var(--frutiger);
        font-size: 16px;
        font-weight: 400;
        vertical-align: middle;
        border-bottom: 1px solid var(--stroke);
        border-top: none;
    }

        .table-theme tbody tr td:first-child {
            border-left: 1px solid #E5E5E5;
        }

        .table-theme tbody tr td:last-child {
            border-right: 1px solid #E5E5E5;
        }
        .table-theme tbody tr:last-child td:first-child {
            border-radius: 0 0 0 16px;
        }
        .table-theme tbody tr:last-child td:last-child {
            border-radius: 0 0 16px 0;
        }

table.table-theme tbody tr.selected > * {
    box-shadow: inset 0 0 0 9999px rgb(237 242 254);
    color: #1f315a;
}

.table-theme .vendor-email {
    font-size: 14px;
    color: #525E75;
}

.table-theme .rating-box {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
}

    .table-theme .rating-box .grade {
        width: 28px;
        height: 28px;
        margin-right: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
    }

        .table-theme .rating-box .grade.grade-a {
            background-color: #2ECC71;
            color: #000000;
        }

        .table-theme .rating-box .grade.grade-b {
            background-color: #FCBE1E;
            color: #000000;
        }

        .table-theme .rating-box .grade.grade-c {
            background-color: #E74C3C;
            color: #FFFFFF;
        }

.table-theme .labels {
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-family: var(--frutiger);
    margin-right: 4px;
    white-space: nowrap;
}
.table-theme tbody tr td .vendor-status {
    border-radius: 24px;
    height: 24px;
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    font-family: var(--frutiger);
    white-space: nowrap;
    margin: 3px;
}
.table-theme tbody tr td .vendor-status.approved {
    background-color: #EFF8FF;
    color: #175CD3;
    border: 1px solid #B2DDFF;
}
.table-theme tbody tr td .vendor-status.accepted {
    background-color: #ECFDF3;
    color: #067647;
    border: 1px solid #AAEFC6;
}
.table-theme tbody tr td .vendor-status.inv-exp {
    background-color: #FEF3F2;
    color: #DF3022;
    border: 1px solid #FECDCA;
}
.table-theme tbody tr td .vendor-status.ins-exp {
    background-color: #FEF6EE;
    color: #B93815;
    border: 1px solid #F9DBAF;
}
.table-theme tbody tr td .vendor-status.apr-pending {
    background-color: #F9F5FF;
    color: #6941C6;
    border: 1px solid #E9D7FE;
}
.table-theme tbody tr td .vendor-status.inv-accept {
    background-color: #ECFDF3;
    color: #067647;
    border: 1px solid #AAEFC6;
}


.table-theme .new-badge {
    position: relative;
    background-color: #BDFDDE;
    color: #377E5C;
}

.table-theme .renewal-badge {
    position: relative;
    background-color: #FDF6BD;
    color: #7E7315;
}

.table-theme .deactive-badge {
    position: relative;
    background-color: #FCE3E3;
    color: #B63434;
    padding-left: 16px;
}

.table-theme .admin-badge {
    background-color: #F1D2FF;
    color: #7D4996;
}

.table-theme .action-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: var(--white);
    color: var(--secondary);
    border: 1px solid #D0D5DD;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    cursor: pointer;
    box-shadow: 0px 1px 2px 0px #1018280D;
    transition: 0.3s ease-in;
}

    .table-theme .action-icon.danger-box {
        background-color: #e74c3c;
        color: #FFFFFF;
        border-color: #e74c3c;
    }

        .table-theme .action-icon.danger-box:hover {
            background-color: #c0392b;
            color: #FFFFFF;
            border-color: #c0392b;
        }

    .table-theme .action-icon .action-link {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #344054;
    }

    .table-theme .action-icon:hover {
        background-color: var(--primary);
        border-color: var(--primary);
    }


    .table-theme .action-icon.expired-box {
        background-color: #f39c12;
        color: #FFFFFF;
        border-color: #f39c12;
    }

        .table-theme .action-icon.expired-box:hover {
            background-color: #dc8802;
            color: #FFFFFF;
            border-color: #dc8802;
        }

.table-theme .status {
    display: inline-flex;
    width: 4px;
    height: 14px;
    border-radius: 10px;
    margin-right: 10px;
}

    .table-theme .status.active-contract {
        background-color: #2ECC71;
    }

    .table-theme .status.expire-contract {
        background-color: #E74C3C;
    }

.table-theme .user {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 12px;
    line-height: 1;
    font-size: 14px;
    font-family: inter;
}

    .table-theme .user.user-online {
        background-color: rgba(51,204,51,0.35);
        color: #074e07;
    }


/*===== Datatable CSS =====*/
table.dataTable {
    border-collapse: separate;
}

    table.dataTable tbody tr {
        background-color: #FFFFFF;
    }

.dataTables_wrapper .dataTables_info {
    color: #667085;
    font-size: 16px;
    font-family: var(--frutiger);
    padding-top: 18px;
}
.table-theme.dataTable tbody th,
.table-theme.dataTable tbody td {
    padding: 16px 16px;
}
.dataTables_wrapper .table-theme.dataTable thead>tr>th.sorting:after,
.dataTables_wrapper .table-theme.dataTable thead>tr>th.sorting:before{
    font-size: 20px;
} 
.dataTables_wrapper .dataTables_paginate {
    display: flex;
    justify-content: center;
    padding-top: 16px;
}

    .dataTables_wrapper .dataTables_paginate .paginate_button {
        width: 32px;
        height: 32px;
        border: 1px solid var(--stroke);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: 0;
        border-radius: 0;
        font-size: 14px;
        font-family: var(--frutiger);
        font-weight: 700;
        color: #667085 !important;
    }
    .dataTables_wrapper .dataTables_paginate .paginate_button.next {
        border-radius: 0 8px 8px 0;
        border-left: none;
        padding: 0;
    }
    .dataTables_wrapper .dataTables_paginate .paginate_button.previous {
        border-radius: 8px 0 0 8px;
        border-right: none;
        padding: 0;
    }
    .dataTables_wrapper .dataTables_paginate .paginate_button.previous:hover {
        border-right: none;
    }
    .dataTables_wrapper .dataTables_paginate .paginate_button.next:hover {
        border-left: none;
    }
    .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
        border-color: var(--stroke);
    }

        .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
            background: var(--background) !important;
            color: #333333 !important;
            border-color: var(--stroke);
        }

        .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
            background: #F9FAFB !important;
            color: #000000 !important;
            border:1px solid #D0D5DD;
            box-shadow: none;
        }

        .dataTables_wrapper .dataTables_paginate .paginate_button:active {
            box-shadow: none;
            background: inherit;
        }

table.dataTable.no-footer {
    border-bottom: 0px solid rgba(0, 0, 0, 0.3);
}


/*====== Datepicker CSS =====*/

.datepicker {
    font-family: var(--frutiger);
    z-index: 91 !important;
}
/*.datepicker table tr td.active.active, .datepicker table tr td.active.highlighted.active, .datepicker table tr td.active.highlighted:active, .datepicker table tr td.active:active {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}
.datepicker table tr td.active.active.focus, .datepicker table tr td.active.active:focus, .datepicker table tr td.active.active:hover, .datepicker table tr td.active.highlighted.active.focus, .datepicker table tr td.active.highlighted.active:focus, .datepicker table tr td.active.highlighted.active:hover, .datepicker table tr td.active.highlighted:active.focus, .datepicker table tr td.active.highlighted:active:focus, .datepicker table tr td.active.highlighted:active:hover, .datepicker table tr td.active:active.focus, .datepicker table tr td.active:active:focus, .datepicker table tr td.active:active:hover {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}
.datepicker table tr td span.active.active, .datepicker table tr td span.active.disabled.active, .datepicker table tr td span.active.disabled:active, .datepicker table tr td span.active.disabled:hover.active, .datepicker table tr td span.active.disabled:hover:active, .datepicker table tr td span.active:active, .datepicker table tr td span.active:hover.active, .datepicker table tr td span.active:hover:active {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}
.datepicker table tr td span.active.active.focus, .datepicker table tr td span.active.active:focus, .datepicker table tr td span.active.active:hover, .datepicker table tr td span.active.disabled.active.focus, .datepicker table tr td span.active.disabled.active:focus, .datepicker table tr td span.active.disabled.active:hover, .datepicker table tr td span.active.disabled:active.focus, .datepicker table tr td span.active.disabled:active:focus, .datepicker table tr td span.active.disabled:active:hover, .datepicker table tr td span.active.disabled:hover.active.focus, .datepicker table tr td span.active.disabled:hover.active:focus, .datepicker table tr td span.active.disabled:hover.active:hover, .datepicker table tr td span.active.disabled:hover:active.focus, .datepicker table tr td span.active.disabled:hover:active:focus, .datepicker table tr td span.active.disabled:hover:active:hover, .datepicker table tr td span.active:active.focus, .datepicker table tr td span.active:active:focus, .datepicker table tr td span.active:active:hover, .datepicker table tr td span.active:hover.active.focus, .datepicker table tr td span.active:hover.active:focus, .datepicker table tr td span.active:hover.active:hover, .datepicker table tr td span.active:hover:active.focus, .datepicker table tr td span.active:hover:active:focus, .datepicker table tr td span.active:hover:active:hover {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}
.datepicker table tr td span.focused {
    background: var(--primary);
    color: #ffffff;
}
*/

/*===== Rating vendor page CSS =====*/

.rating-label {
    position: relative;
    font-family: var(--frutiger);
    color: #333333;
    font-size: 1rem;
}

    .rating-label.mandatory::before {
        content: "*";
        position: absolute;
        top: 0;
        right: -10px;
        color: #FD0000;
    }


/*====== Login Page CSS ======*/

.page-frame {
    width: 100vw;
    height: 100vh;
    -moz-display: flex;
    -webkit-display: flex;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.back-banner {
    background-image: url('../images/business.svg');
    background-size: 80%;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-blend-mode: exclusion;
}

.bg-theme {
    background-color: var(--secondary);
}

.w-40 {
    width: 40% !important;
}

.w-60 {
    width: 60% !important;
}

.mx-450 {
    width: 450px;
    margin: 0 auto;
}

.logo-img {
    max-width: 200px;
}

.company-name {
    color: #333333;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: var(--frutiger);
    font-weight: 500;
}

    .company-name.fs-20 {
        font-size: 20px;
    }

.footer-link {
    color: var(--subtitle);
    font-weight: 500;
    margin-right: 1rem;
    font-size: 15px;
    font-family: var(--frutiger);
    text-decoration: none;
}

    .footer-link:hover {
        color: var(--primary);
        text-decoration: underline;
    }

/*====== Rating Star CSS ======*/
.rating-wrap .fa,
.rating-wrap .far {
    color: #c6c6c6;
}

.fa.rated {
    color: orange;
}

.round-wrap {
    display: flex;
}

.star-box {
    width: 28px;
    height: 28px;
    background-color: #c6c6c6;
    border-radius: 50%;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
    cursor: pointer;
}

    .star-box.rated {
        background-color: #FFD119;
    }

        .star-box.rated .fa {
            color: #333333;
        }

/*Custom Tab css*/

.my-tab {
    margin-bottom: 1rem;
    border-bottom: 1px solid #e5e5e5;
}

    .my-tab .nav-item a.nav-link {
        color: var(--subtitle);
        border-radius: 6px 6px 0 0;
        border-bottom: 2px solid transparent;
    }

        .my-tab .nav-item a.nav-link:hover {
            background-color: #f2f2f2;
            border-bottom: 2px solid #f2f2f2;
        }

        .my-tab .nav-item a.nav-link.active {
            border-bottom: 2px solid var(--primary);
            color: var(--primary);
            background-color: var(--background);
        }

.accordion .accordion-header {
    position: relative;
}

.accordion .info-box {
    position: absolute;
    top: 50%;
    right: 50px;
    z-index: 5;
    transform: translate(0, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    font-size: 16px;
    color: var(--subtitle);
}

    .accordion .info-box:hover .fa {
        color: var(--primary);
    }

.accordion .expire-time {
    position: absolute;
    top: 50%;
    right: 55px;
    z-index: 5;
    transform: translate(0, -50%);
    font-size: 12px;
    color: var(--subtitle);
    font-family: var(--frutiger);
    background-color: var(--background);
    padding: 4px 10px;
    border-radius: 12px;
    pointer-events: none;
}

.accordion-button:not(.collapsed) {
    background: var(--background);
    color: var(--secondary);
}

.accordion-button[aria-expanded="true"] {
    font-weight: 500;
    color: var(--secondary);
}

.accordion-button[aria-expanded="false"] {
    font-weight: 400;
    color: var(--secondary);
}


.accordion .accordion-body .no-bid-place {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.progress.h-5 {
    height: 5px;
}

.position-relative .progress-status {
    font-size: 12px;
    color: var(--subtitle);
    text-align: center;
    display: block;
    white-space: nowrap;
}

.history-wrapper {
    padding-left: 80px;
    position: relative;
}

    .history-wrapper:before {
        content: "";
        position: absolute;
        left: 36px;
        top: 2px;
        width: 2px;
        height: calc( 100% - 18px );
        background-color: #e5e5e5;
    }

    .history-wrapper .history-point {
        position: relative;
        background-color: #ffffff;
        border: 1px solid #e5e5e5;
        padding: 0.5rem 1rem;
        border-radius: 4px;
        margin-bottom: 1rem;
        z-index: 2;
        display: inline-flex;
    }

        .history-wrapper .history-point:before {
            content: "";
            position: absolute;
            z-index: -1;
            left: 0;
            bottom: -4px;
            width: 100%;
            height: 4px;
            transform: scale(0.99,1);
            background-color: #f2f2f2;
            border-radius: 0 0 4px 4px;
            border: 1px solid #e5e5e5;
        }

        .history-wrapper .history-point .left-point {
            position: absolute;
            left: -65px;
            top: 0;
            width: 42px;
            height: 40px;
            background-color: var(--primary);
            border-radius: 4px;
            border: 1px solid #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: var(--background);
            font-size: 14px;
            line-height: 1;
        }

        .history-wrapper .history-point .action-text {
            font-size: 15px;
            color: #333333;
        }

        .history-wrapper .history-point:after {
            content: "";
            position: absolute;
            top: 13px;
            left: -50px;
            width: 49px;
            height: 4px;
            border: 1px solid #e5e5e5;
            border-right: 0;
            border-left: 0;
            z-index: -1;
        }

/*add user page css*/
.table-theme .user-picture {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: inline-block;
    margin-right: 8px;
    border-radius: 50%;
    overflow: hidden;
}

    .table-theme .user-picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.profile-box-wrap {
    position: relative;
    margin-bottom: 109px;
}

    .profile-box-wrap .profile-pic {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
        cursor: pointer;
    }

        .profile-box-wrap .profile-pic img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .profile-box-wrap .profile-pic .change-text {
            position: absolute;
            bottom: -20px;
            left: 0;
            width: 100%;
            height: 20px;
            padding-top: 2px;
            background-color: rgba(0, 0, 0, 0.80);
            color: var(--white);
            text-align: center;
            font-size: 10px;
            line-height: 12px;
            font-family: var(--frutiger);
            opacity: 0;
            transition: 0.3s ease;
        }

        .profile-box-wrap .profile-pic:hover .change-text {
            bottom: 0;
            opacity: 1;
        }

.content-wrapper {
    min-height: 60vh;
    position: relative;
}

.add-product-wrapper {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    min-height: 100%;
    background-color: var(--white);
    border-radius: 20px;
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
}

    .add-product-wrapper.show {
        top: 0;
        opacity: 1;
        pointer-events: auto;
    }

/*===== Dashboard css ======*/

.ongoing-point .list-group-item {
    padding-left: 0;
    padding-right: 0;
}

.style-1 {
    background: linear-gradient(45deg, #FE84F4, #937CFD);
    color: white;
    border: 0;
}

.style-2 {
    background: linear-gradient(45deg, #FB7990, #FC9E6A);
    color: white;
    border: 0;
}

.style-3 {
    background: linear-gradient(45deg, #ABEE8C, #56B49A);
    color: white;
    border: 0;
}

.style-4 {
    background: linear-gradient(45deg, #56B8E6, #698FD9);
    color: white;
    border: 0;
}

.style .card-body {
    position: relative;
    overflow: hidden;
}

    .style .card-body::before {
        content: "";
        position: absolute;
        right: -25px;
        bottom: -40px;
        width: 100px;
        height: 100px;
        background-color: rgba(255, 255, 255, 0.20);
        border-radius: 50%;
    }

    .style .card-body::after {
        content: "";
        position: absolute;
        right: 45px;
        bottom: -50px;
        width: 75px;
        height: 75px;
        background-color: rgba(255, 255, 255, 0.20);
        border-radius: 50%;
    }

.proposal-description p {
    margin-bottom: 0.75rem;
}

/*============= Custome Scrollbar css============*/

/* width */
.vendor-scroll-wrap::-webkit-scrollbar,
.select2-results__options::-webkit-scrollbar,
.dt-button-collection::-webkit-scrollbar {
    width: 8px;
}
/* Track */
.vendor-scroll-wrap::-webkit-scrollbar-track,
.select2-results__options::-webkit-scrollbar-track,
.dt-button-collection::-webkit-scrollbar-track {
    background: transparent;
}
/* Handle */
.vendor-scroll-wrap::-webkit-scrollbar-thumb,
.select2-results__options::-webkit-scrollbar-thumb,
.dt-button-collection::-webkit-scrollbar-thumb {
    background: #E5E5E5;
    border-radius: 8px;
}
    /* Handle on hover */
    .vendor-scroll-wrap::-webkit-scrollbar-thumb:hover,
    .select2-results__options::-webkit-scrollbar-thumb:hover,
    .dt-button-collection::-webkit-scrollbar-thumb:hover {
        background: #C1C1C1;
    }

/*====== Serialtip popover CSS===== */
.ex1 {
    transition: 0.3s all;
}

    .ex1:hover {
        cursor: pointer;
        color: #0d6efd;
    }

    .ex1.is-active {
        color: #0d6efd;
    }

[data-serialtip-target] {
    max-width: 800px;
    margin: 15px;
}

    [data-serialtip-target] .serialtip-title {
        margin-bottom: 0;
        font-size: 18px;
        padding-bottom: 15px;
        color: #263228;
        font-weight: 500;
        font-family: var(--frutiger);
        border-bottom: 1px solid #e5e5e5;
    }

.serialtip-default.is-placement-right:before {
    bottom: 50%;
    left: -6px;
    margin-bottom: -6px;
    border-width: 6px 6px 6px 0px;
    border-right-color: #FFFFFF;
}

.vendor-scroll-wrap {
    max-height: 60vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.popup-subtitle-text {
    font-size: 16px;
    font-family: var(--frutiger);
    font-weight: 500;
    color: var(--subtitle);
    margin-bottom: 0;
}
/*===== select 2 plugin customize=====*/

.select2-container--default .select2-selection--single {
    background-color: var(--input-control);
    border: 1px solid #ced4da;
    border-radius: .375rem;
}

.select2-container .select2-selection--single {
    height: 58px;
    background: var(--input-control);
    outline: none;
}

    .select2-container .select2-selection--single .select2-selection__rendered {
        margin-top: 25px;
        padding-left: 12px;
    }

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow svg {
    transform: rotate(180deg);
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-search--dropdown .select2-search__field:focus {
    outline: none;
    border: 1px solid #86b7fe;
}

.select2-search--dropdown .select2-search__field {
    border-radius: 0.375rem;
}

.select2-container.select2-container--default.select2-container--open {
    border-radius: 0.375rem;
}

.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #86b7fe;
    box-shadow: none;
}

    .select2-container--default.select2-container--open .select2-selection--single:focus {
        outline: none;
    }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

.select2-container--open .select2-dropdown--below {
    border-top: 1px solid #D0D5DD;
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
    border-color: #D0D5DD;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #212529;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    height: 100%;
    margin-right: 30px;
    padding-right: 6px;
    font-weight: 300;
    font-size: 22px;
    color: #777777;
}

.select2-results__option--selectable {
    border-radius: 4px;
    margin: 4px;
}

.filter-wrap {
    min-width: 160px;
}

.filter-dropdown ~ .select2-container .select2-selection--single {
    height: 48px;
    background: var(--input-control);
    outline: none;
    border: 1px solid #D0D5DD;
}

    .filter-dropdown ~ .select2-container .select2-selection--single .select2-selection__rendered {
        margin-top: 10px;
        padding-left: 16px;
    }

.filter-dropdown ~ .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #344054;
    font-family: var(--frutiger);
    font-weight: 400;
}

#AppointmentRequestlistTblId thead tr th {
    white-space: normal;
}


/*Page loader css start*/
#loading {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(30px);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 111111;
    margin-top: 0px;
    top: 0px;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
}

#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 100px;
    width: 100px;
    margin-top: -50px;
    margin-left: -50px;
}

.object {
    width: 25px;
    height: 25px;
    background-color: var(--primary);
    margin-right: 50px;
    float: left;
    margin-bottom: 50px;
    border-radius: 50%;
    box-shadow: 0 0 8px #8f6f0f inset;
}

    .object:nth-child(2n+0) {
        margin-right: 0px;
    }


#object_one {
    -webkit-animation: object_one 2s infinite;
    animation: object_one 2s infinite;
}

#object_two {
    -webkit-animation: object_two 2s infinite;
    animation: object_two 2s infinite;
}

#object_three {
    -webkit-animation: object_three 2s infinite;
    animation: object_three 2s infinite;
}

#object_four {
    -webkit-animation: object_four 2s infinite;
    animation: object_four 2s infinite;
}



@-webkit-keyframes object_one {
    25% {
        -webkit-transform: translate(75px, 0) rotate(-90deg) scale(0.5);
    }

    50% {
        -webkit-transform: translate(75px, 75px) rotate(-180deg);
    }

    75% {
        -webkit-transform: translate(0, 75px) rotate(-270deg) scale(0.5);
    }

    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes object_one {
    25% {
        transform: translate(75px, 0) rotate(-90deg) scale(0.5);
        -webkit-transform: translate(75px, 0) rotate(-90deg) scale(0.5);
    }

    50% {
        transform: translate(75px, 75px) rotate(-180deg);
        -webkit-transform: translate(75px, 75px) rotate(-180deg);
    }

    75% {
        transform: translate(0, 75px) rotate(-270deg) scale(0.5);
        -webkit-transform: translate(0, 75px) rotate(-270deg) scale(0.5);
    }

    100% {
        transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
    }
}


@-webkit-keyframes object_two {
    25% {
        -webkit-transform: translate(0, 75px) rotate(-90deg) scale(0.5);
    }

    50% {
        -webkit-transform: translate(-75px, 75px) rotate(-180deg);
    }

    75% {
        -webkit-transform: translate(-75px, 0) rotate(-270deg) scale(0.5);
    }

    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes object_two {
    25% {
        transform: translate(0, 75px) rotate(-90deg) scale(0.5);
        -webkit-transform: translate(0, 75px) rotate(-90deg) scale(0.5);
    }

    50% {
        transform: translate(-75px, 75px) rotate(-180deg);
        -webkit-transform: translate(-75px, 75px) rotate(-180deg);
    }

    75% {
        transform: translate(-75px, 0) rotate(-270deg) scale(0.5);
        -webkit-transform: translate(-75px, 0) rotate(-270deg) scale(0.5);
    }

    100% {
        transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
    }
}

@-webkit-keyframes object_three {
    25% {
        -webkit-transform: translate(0, -75px) rotate(-90deg) scale(0.5);
    }

    50% {
        -webkit-transform: translate(75px, -75px) rotate(-180deg);
    }

    75% {
        -webkit-transform: translate(75px, 0) rotate(-270deg) scale(0.5);
    }

    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes object_three {
    25% {
        transform: translate(0, -75px) rotate(-90deg) scale(0.5);
        -webkit-transform: translate(0, -75px) rotate(-90deg) scale(0.5);
    }

    50% {
        transform: translate(75px, -75px) rotate(-180deg);
        -webkit-transform: translate(75px, -75px) rotate(-180deg);
    }

    75% {
        transform: translate(75px, 0) rotate(-270deg) scale(0.5);
        -webkit-transform: translate(75px, 0) rotate(-270deg) scale(0.5);
    }

    100% {
        transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
    }
}


@-webkit-keyframes object_four {
    25% {
        -webkit-transform: translate(-75px, 0) rotate(-90deg) scale(0.5);
    }

    50% {
        -webkit-transform: translate(-75px, -75px) rotate(-180deg);
    }

    75% {
        -webkit-transform: translate(0, -75px) rotate(-270deg) scale(0.5);
    }

    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes object_four {
    25% {
        transform: translate(-75px, 0) rotate(-90deg) scale(0.5);
        -webkit-transform: translate(-75px, 0) rotate(-90deg) scale(0.5);
    }

    50% {
        transform: translate(-75px, -75px) rotate(-180deg);
        -webkit-transform: translate(-75px, -75px) rotate(-180deg);
    }

    75% {
        transform: translate(0, -75px) rotate(-270deg) scale(0.5);
        -webkit-transform: translate(0, -75px) rotate(-270deg) scale(0.5);
    }

    100% {
        transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
    }
}

/* Page loader css End */

/*Package section css Start*/

.package-card {
    background-color: #FFFFFF;
    margin-bottom: 1rem;
}

    .package-card .package-title {
        background-color: var(--card-color);
        border: 1px solid var(--card-color);
        padding: 12px 0;
        border-radius: 4px 4px 0 0;
    }

        .package-card .package-title .title-text {
            font-family: var(--frutiger);
            font-size: 1.2rem;
            text-align: center;
            color: #FFFFFF;
            margin-bottom: 0;
        }

    .package-card .package-body {
        background-color: #FFFFFF;
        border: 1px solid #E0E0E0;
        border-top: none;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .package-card .package-body .price-text {
            color: var(--card-color);
            font-size: 2.5rem;
        }

            .package-card .package-body .price-text .subtext {
                font-size: 16px;
                font-weight: 500;
                color: #777777;
            }

.package-footer {
    position: relative;
    z-index: 1;
    background-color: #F6F6F6;
    font-family: var(--frutiger);
    padding: 1rem;
    border: 1px solid #E0E0E0;
    border-top: none;
    border-radius: 0 0 4px 4px;
}

    .package-footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--card-color);
        opacity: 0.2;
        z-index: -1;
    }

    .package-footer .point-wrap {
        margin-bottom: 0;
    }

        .package-footer .point-wrap .point-item {
            padding-left: 28px;
            position: relative;
            color: var(--dark-gray);
            font-size: 14px;
            font-weight: 500;
            padding-top: 2px;
            padding-bottom: 2px;
        }

            .package-footer .point-wrap .point-item:before {
                content: "";
                background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iY3VycmVudENvbG9yIiBjbGFzcz0iYmkgYmktY2hlY2siIHZpZXdCb3g9IjAgMCAxNiAxNiI+CiAgPHBhdGggZD0iTTEwLjk3IDQuOTdhLjc1Ljc1IDAgMCAxIDEuMDcgMS4wNWwtMy45OSA0Ljk5YS43NS43NSAwIDAgMS0xLjA4LjAyTDQuMzI0IDguMzg0YS43NS43NSAwIDEgMSAxLjA2LTEuMDZsMi4wOTQgMi4wOTMgMy40NzMtNC40MjVhLjI2Ny4yNjcgMCAwIDEgLjAyLS4wMjJ6Ii8+Cjwvc3ZnPg==);
                background-repeat: no-repeat;
                background-size: 21px 21px;
                position: absolute;
                top: 2px;
                left: 0;
                width: 21px;
                height: 21px;
                opacity: 0.6;
            }

/*Package section css End*/

.task-desription {
    font-size: 15px;
    font-family: var(--frutiger);
    color: var(--dark-gray);
}

.small-graybox {
    border-radius: 4px;
    border: 1px solid var(--primary);
}

    .small-graybox .time-title-text {
        color: var(--secondary);
    }

.task-time-section {
    display: flex;
    font-family: var(--frutiger);
}

    .task-time-section .task-time {
        display: flex;
        align-items: center;
    }

        .task-time-section .task-time .date-icon {
            width: 24px;
            height: 24px;
            margin-right: 8px;
        }

.task-card-wrap {
    position: relative;
    background-color: #f2f2f2;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 12px;
    overflow: hidden;
}

    .task-card-wrap .task-heading {
        padding-right: 40px;
    }

    .task-card-wrap .task-label {
        color: #777777;
    }

    .task-card-wrap .more-option {
        position: absolute;
        top: 8px;
        right: 8px;
    }

        .task-card-wrap .more-option .more-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 2px;
        }

        .task-card-wrap .more-option .option-popup {
            position: absolute;
            top: 100%;
            right: 0;
            background-color: #FFFFFF;
            border-radius: 4px;
            width: 140px;
            box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
            overflow: hidden;
            opacity: 0;
            pointer-events: none;
        }

        .task-card-wrap .more-option .more-icon:hover {
            background-color: rgba(0, 0, 0, 0.15);
        }

        .task-card-wrap .more-option:hover .option-popup {
            opacity: 1;
            pointer-events: all;
        }

        .task-card-wrap .more-option .option-popup:hover ~ .more-icon {
            background-color: rgba(0, 0, 0, 0.15);
        }

        .task-card-wrap .more-option .option-popup .popup-link {
            padding: 8px 12px;
            display: flex;
            width: 100%;
            text-decoration: none;
            color: var(--secondary);
        }

            .task-card-wrap .more-option .option-popup .popup-link:hover {
                color: var(--white);
                background-color: var(--secondary);
            }

    .task-card-wrap .task-status {
        font-family: var(--frutiger);
        font-size: 14px;
        line-height: 17px;
        border-radius: 25px;
        display: inline-flex;
        padding: 2px 12px;
        margin: 8px 0;
    }

        .task-card-wrap .task-status.ongoing {
            background-color: #fdfd9b;
            color: #5a5a04;
        }

        .task-card-wrap .task-status.pending {
            background-color: #ffa8a8;
            color: #990404;
        }

        .task-card-wrap .task-status.completed {
            background-color: #b1eeb1;
            color: #008000;
        }

    .task-card-wrap .task-footer {
        height: 50px;
        border-top: 1px solid #e5e5e5;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 8px;
    }

        .task-card-wrap .task-footer .assign-icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            border-radius: 2px;
        }

            .task-card-wrap .task-footer .assign-icon:hover {
                background-color: rgba(0, 0, 0, 0.15);
            }

@keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.old-request-box {
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.modal .confirm-text {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.modal .modal-header .btn-close:focus {
    box-shadow: none;
}

.old-request-box .date-icon {
    margin-right: 8px;
    opacity: 0.2;
}

.old-request-box .date-label {
    line-height: 15px;
    font-size: 14px;
    color: #777777;
}

.old-request-box .date-text {
    line-height: 21px;
    color: #777777;
}

.new-request-box {
    background-color: #ffffff;
    border: 2px solid var(--primary);
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

    .new-request-box .confirm-text {
        color: var(--secondary);
        font-weight: 500;
    }

    .new-request-box .date-icon {
        margin-right: 8px;
        opacity: 0.8;
        color: var(--secondary);
    }

    .new-request-box .date-label {
        line-height: 15px;
        font-size: 14px;
        color: #777777;
    }

    .new-request-box .date-text {
        line-height: 21px;
        color: var(--secondary);
    }

.xdsoft_datetimepicker .xdsoft_calendar td:hover, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
    background-color: #044C75 !important;
}

.xdsoft_datetimepicker .xdsoft_label:hover span {
    text-decoration: none !important;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover {
    background-color: #044C75 !important;
}

/* Plus icon css Start */
.has-plusicon {
    position: relative;
}

    .has-plusicon .form-floating {
        margin-right: 70px;
        position: relative;
    }

    .has-plusicon .plus-btn {
        position: absolute;
        top: 0;
        right: 12px;
        width: 58px;
        height: 100%;
        background-color: #f2f2f2;
        color: var(--secondary);
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        transition: 0.3s ease-in-out;
    }

        .has-plusicon .plus-btn:hover {
            background-color: var(--secondary);
            color: var(--white);
        }

.delete-slot-btn {
    width: 42px;
    height: 42px;
    background-color: #E74C3C;
    color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: 0.3s ease-in-out;
}

    .delete-slot-btn:hover {
        background-color: #cf3b2c;
    }

.delete-answer-btn {
    background-color: #E74C3C;
    color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: 0.3s ease-in-out;
}

    .delete-answer-btn:hover {
        background-color: #cf3b2c;
    }
/* Plus icon css End */

/* Company Profile Page CSS Start*/

.profile-pic.p-l-100 {
    left: 50%;
    width: 186px;
    height: 186px;
    border-radius: 50%;
    background-color: #ffffff;
    transform: translate(-50%, -50%);
    box-shadow: 0px 3px 20px 0px #0000001F;
}
.company-tab a.nav-link {
    background-color: #ffffff;
    color: #475467;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    padding: 16px 12px;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    position: relative;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
}
.company-tab a.nav-link .nav-icon {
	display: inline-flex;
	margin-right: 10px;
}

    .company-tab a.nav-link.active {
        background-color: #FEEBEB;
        border-color: #C994A1;
        color: var(--secondary);
        font-weight: 700;
    }
    .company-tab a.nav-link.active:hover {
        background-color: #FEEBEB;
    }
    .company-tab a.nav-link:hover {
        background-color: #FEEBEB;
    }

.tab-pane {
    padding: 1rem 1rem 0;
    border-radius: 0 4px 4px 4px;
    border: 1px solid #d2dbe0;
    position: relative;
}

.tab-title-pill {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 4px 4px 0 0;
    background-color: var(--background);
    color: var(--secondary);
    font-weight: bold;
    margin-bottom: 0px;
    position: absolute;
    bottom: calc(100% + 1px);
    left: -1px;
    border: 1px solid #e0e0e0;
    border-bottom: 0;
}
.tab-pane.show {
    display: block;
}

.address-wrapper {
    background-color: #fff9e7;
    border: 1px solid #e0e0e0;
    border-radius: 0.25rem;
    padding: 0.75rem;
}

    .address-wrapper .address-title {
        color: var(--secondary);
        font-weight: 500;
        margin-bottom: 4px;
    }
    .address-wrapper.imp {
        border: 1px solid #6abb6a;
        background-color: #caefca;
    }

    .address-wrapper.require {
        border-color: red;
        background-color: #fde8e8;
    }

.upload-action-btn {
    text-align: center;
    margin-bottom: 8px;
}

    .upload-action-btn .btn {
        min-width: 70px;
    }

/* Company Profile Page CSS End */

.profile-banner .profile-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.profile-banner {
    width: 100%;
    height: 170px;
    /*background-image: url('../images/profile-bg.png');*/
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 24px;
    position: relative;
}

.profile-banner .upload-cover-btn{
    position: absolute;
    right: 28px;
    bottom: 24px;
    display: flex;
    flex-wrap: nowrap;
}

.profile-banner .edit-image-btn {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 44px;
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: 0px 3px 8px 0px #00000026;
    z-index:100;
}
.business-wrap {
    align-items: stretch;
    display: flex;
    width: 100%;
}
.business-wrap .business-detail {
    width: 306px;
    min-width: 306px;
    background-color: #ffffff;
    border-right: 1px solid var(--stroke);
    min-height: 100%;
    padding: 0 24px 24px;
}
.business-wrap .business-info-box {
	flex: 1 1 auto!important;
}
.business-wrap .business-info-box .tab-pane {
    padding: 24px 12px;
}
.business-city {
    font-size: 24px;
    font-weight: 700;
    color: #010101;
    font-family: var(--frutiger-bold);
    margin-bottom: 12px;
    text-align: center;
}
.edit-profile-image {
    position: absolute;
    top: 46px;
    right: 36px;
    width: 44px;
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 50%;
    border: none;
    outline: none;
    box-shadow: 0px 3px 8px 0px #00000026;
}
.approval-pending {
    height: 24px;
    border: 1px solid #E9D7FE;
    background: #F9F5FF;
    color: #6941C6;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
    white-space: nowrap;
}
.venderId {
    margin-bottom: 15px;
    font-weight: 700;
}
/*Accordion profile css start*/
.accordion.accordion-profile {
}

.accordion.accordion-profile .accordion-item {
	background-color: #FFFFFF;
	border: 1px solid var(--stroke);
    border-radius: 16px;
	box-shadow: 0px 3px 10px 0px #10182814;
	margin-bottom: 24px;
}
.accordion.accordion-profile .accordion-item .accordion-header .accordion-button {
	border-radius: 16px 16px 16px 16px;
	background-color: transparent;
	padding: 20px 24px;
	font-family: var(--frutiger);
	font-size: 20px;
	line-height: 20px;
	font-weight: 400;
	color: #000000;
	display: flex;
}
.accordion.accordion-profile .accordion-item .accordion-header .accordion-button[aria-expanded="true"] {
	background-color: #F2F2F2;
	border-bottom: 1px solid #D0D5DD;
	border-radius: 16px 16px 0 0;
}
.accordion.accordion-profile .accordion-item .accordion-header .accordion-button::after {
	background-size: 14px 14px;
    background-position: center;
    filter: saturate(0);
}
.accordion.accordion-profile .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
	filter: saturate(0);
}
.accordion.accordion-profile .accordion-item .accordion-header .accordion-button .accordion-step-icon {
	margin-right: 10px;
	color: #D0D5DD;
}
.accordion.accordion-profile .accordion-item.completed .accordion-header .accordion-button .accordion-step-icon {
	margin-right: 10px;
	color: #2DD26F;
}
.accordion.accordion-profile .accordion-item .accordion-body {
	border-radius: 0 0 16px 16px;
	padding: 24px 12px;
}

.label-theme {
	font-family: var(--frutiger);
	font-size: 16px;
	font-weight: 400;
	color: #475467;
	margin-bottom: 6px;
}
select.form-control.input-theme {
	-moz-appearance: auto;
	appearance: auto;
}
.form-control.input-theme {
	font-family: var(--frutiger);
	font-size: 16px;
	line-height: 18px;
	font-weight: 400;
	padding: 14px;
	color: #000000;
	border:1px solid #D0D5DD;
	box-shadow: 0px 1px 2px 0px #1018280D;
	border-radius: 8px;
	height: 46px;
}
textarea.form-control.input-theme {
	height: auto;
	min-height: 125px;
}
.form-control.input-theme:focus {
	background-color: #FAFAFA;
	border: 1px solid var(--secondary);
	caret-color: var(--secondary);
}
.form-control.input-theme::placeholder {
	color: #ADB1B8;
}
.para-text {
	color: #475467;
}
.upload-file-label {
	width: 100%;
	background-color: #F9FAFB;
	border: 2px dashed #DFE0E1;
	min-height: 128px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #475467;
	font-size: 16px;
	border-radius: 12px;
	cursor: pointer;
}
.upload-file-label .cloud-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	min-width: 40px;
	height: 40px;
	border-radius: 8px;
	background-color: #FFFFFF;
	border: 1px solid #DFE0E1;
	margin-bottom: 12px;
}
.yellow-checkbox-wrap {
	display: flex;
    flex-wrap: nowrap;
    align-items: center;
    height: 18px;
}
.yellow-checkbox-wrap input[type="checkbox"] {
	border: 2px solid;
	border-color: #F2BD2C;
	width: 18px;
	height: 18px;
	margin-right: 6px;
	accent-color: #F2BD2C;
}

.yellow-checkbox-wrap label {
	color: #D2A21D;
	font-size: 16px;
}
.form-section-title {
	color: var(--secondary);
	font-size: 20px;
	line-height: 20px;
	font-weight: 700;
	font-family: var(--frutiger-bold);
	margin-bottom: 20px;
}
.section-divider {
	width: 100%;
	border-bottom: 1px solid var(--stroke);
}
.container-fluid>.row>.section-divider {
	margin:0 12px;
	width: calc(100% - 24px);
}
.nav.nav-pills.tab-simple {
	border-bottom: 1px solid var(--stroke);
}
.nav.nav-pills.tab-simple a.nav-link {
	font-family: var(--frutiger);
	font-weight: 400;
	background-color: transparent;
	padding: 2px 4px 14px;
	border-radius: 0;
	border-bottom: 2px solid transparent;
	margin-right: 36px;
	color: #667085;
}
.nav.nav-pills.tab-simple a.nav-link.active {
	color: var(--secondary);
	font-weight: 700;
	border-bottom: 2px solid var(--secondary);
}

/*business History modal css start*/
.modal-backdrop {
    backdrop-filter: blur(4px);
    background-color: rgba(1, 1, 1,0.5);
    opacity: 1 !important;
}
.modal.modal-new .modal-dialog .modal-content {
	border-radius: 24px;
}
.modal.modal-new  .modal-dialog .modal-content .modal-header {
	background-color: #FFEFF3;
	padding: 24px;
	border-bottom: 1px solid #FFD7E1;
	border-radius: 24px 24px 0 0;
}
.modal.modal-new  .modal-dialog .modal-content .modal-header .modal-title {
	font-family: var(--frutiger);
	color: var(--secondary);
	font-weight: 700;
	font-size: 20px;
	line-height: 20px;
}
.modal.modal-new .modal-body .bu-box {
	background-color: #fafafa;
	padding: 16px 24px;
	margin-bottom: 32px;
}
.modal.modal-new .modal-body .bu-box .bu-ttl {
	color: #ADB1B8;
	font-size: 16px;
}
.modal.modal-new .modal-body .bu-box .bu-info {
	color: #475467;
	font-size: 18px;
}
.modal.modal-new .modal-body .bu-history-wrap {
	padding-left: 24px;
	position: relative;
}
.modal.modal-new .modal-body .bu-history-wrap .bu-point::before {
	content: "";
	width: 0;
	position: absolute;
	top: 22px;
	left: 76px;
	border-right: 1px solid #817676;
	height: 80px;
}
.modal.modal-new .modal-body .bu-history-wrap .bu-point:last-child::before {
	display: none;
}
.modal.modal-new .modal-body .bu-history-wrap .bu-point::after {
	content: "";
	position: absolute;
	top: 22px;
	left: 76px;
	width: 8px;
	height: 8px;
	background-color: #817676;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}
.modal.modal-new .modal-body .bu-history-wrap .bu-point {
	padding-left: 106px;
	position: relative;
	margin-bottom: 36px;
}
.modal.modal-new .modal-body .bu-history-wrap .bu-point .bu-action-text {
	font-size: 20px;
	line-height: 20px;
	color: #000000;
	font-weight: 400;
	margin-bottom: 8px;
}
.modal.modal-new .modal-body .bu-history-wrap .bu-point .bu-action-time {
	font-size: 16px;
	line-height: 16px;
	color: #768190;
	font-weight: 400;
}
.modal.modal-new .modal-body .bu-history-wrap .bu-point .bu-action-icon {
	position: absolute;
	left: 0;
	width: 46px;
	height: 46px;
	border-radius: 8px;
	border: 1px solid #D0D5DD;
	background-color: #FAFAFA;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000000;
}
.modal.modal-new .modal-body .bu-history-wrap .bu-point:first-child .bu-action-icon {
	background-color: #FFEFF3;
	border: 1px solid #FFD7E1;
	color: var(--secondary);
}
.modal.modal-new .modal-body .bu-history-wrap .bu-point:first-child .bu-action-text {
	font-weight: 700;
}
.modal.modal-new .modal-body .bu-history-wrap .bu-point:first-child::after {
	width: 12px;
	height: 12px;
	background-color: var(--secondary);
}
.modal.modal-new .modal-body .bu-history-wrap .bu-point:first-child::before {
	border-radius: 1px solid var(--secondary);
} 
/*business History modal css end*/



/*Create passwrod css start*/

.page-frame .login-page-logo {
    height: 70px;    
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
}

.back-banner-img {
    background-image: url('../images/group-bg.png'), url('../images/pattern-bg-line.png');
    background-size: 80%, cover;
    background-position: center, center bottom;
    background-repeat: no-repeat;
    border-radius: 24px;
    position:relative
}

body:has(.page-frame) {
    background-color: #FFFFFF;
}

.page-frame.p-24 {
    background-color: #FFFFFF;
    padding: 24px;
    background-image: url('../images/page-bg.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.mb-48 {
    margin-bottom: 48px;
}

.mx-490 {
    width: 100%;
    max-width: 494px;
    margin: 0 auto;
}

.text-yellow {
    color: var(--primary);
}

.has-icon {
    position: relative;
}

    .has-icon .form-control {
        padding-right: 50px !important;
    }

    .has-icon .icon-box {
        position: absolute;
        top: 0;
        right: 0;
        width: 46px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .has-icon .icon-box .eye-close{
        display: none;
    }

    .has-icon .icon-box.active .eye-close {
        display: block;
    }

    .has-icon .icon-box.active .eye-open {
        display: none;
    }

.pass-match {
    font-size: 14px;
    font-family: var(--frutiger);
    font-weight: 400;
    color: #717377;
    display: flex;
    flex-wrap: nowrap;
}

    .pass-match .true-icon {
        margin-right: 4px;
    }

    .pass-match.true {
        color: #2DD26F;
    }

.hello-text {
    font-weight: 400;
    font-family: var(--frutiger);
    color: #010101;
    font-size: 24px;
    margin-bottom: 36px;
}

    .hello-text .u-name {
        color: var(--primary);
        font-weight: 700;
        font-family: var(frutiger-bold);
    }

.create-pass-label {
    font-size: 48px;
    color: #010101;
    font-weight: 700;
    font-family: var(--frutiger);
}

.form-control.input-theme-yellow {
    font-family: var(--frutiger);
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    padding: 14px;
    color: #000000;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px 0px #1018280D;
    border-radius: 8px;
    height: 46px;
}

    .form-control.input-theme-yellow:focus {
        background-color: #FAFAFA;
        border: 1px solid var(--primary);
        caret-color: var(--primary);
    }

    .form-control.input-theme-yellow::placeholder {
        color: #ADB1B8;
    }

    .form-control.input-theme-yellow[type="password"] {
        letter-spacing: -1px;
    }

/*Create passwrod css end*/




/*=============  Responsive CSS [ make sure this code should be end of the file ] ================ */

@media (max-width: 992px) {
    .sidebar {
        position: fixed;
        left: -280px;
        top: 0;
        z-index: 100;
    }

        .sidebar.collapsed {
            left: 0;
            margin-left: 0;
        }

    .sidebar-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99;
        width: 100%;
        height: 100%;
        background-color: #333333;
        opacity: 0.3;
        display: none;
    }

    .top-fix-header {
        width: 100%;
        border-radius: 0;
    }

    .header-logo,
    .header-logo.show {
        opacity: 1 !important;
    }

    .main {
        border-radius: 0;
    }

    .search-box .form-control {
        padding-left: 20px;
        border-radius: 10px;
        width: 38px;
        transition: width .35s ease-in-out;
    }

        .search-box .form-control:focus {
            width: 250px;
            padding-left: 30px;
        }

    .sidebar-toogle-btn {
        transform: rotateY(180deg);
    }

    .page-frame {
        flex-direction: column;
    }

    .w-40, .w-60 {
        width: 100% !important;
    }

    .back-banner {
        background-image: none;
        height: auto !important;
    }

    .back-banner-img {
        min-height: 400px !important;
        background-size: 300px 300px, cover;
        background-position: bottom;
    }
}

@media (max-width: 767px) {
    .btn-theme-primary,
    .btn-theme-gray {
        min-width: 110px;
    }

    .footer-wrapper {
        flex-direction: column;
    }

    .mx-30 {
        margin-left: 15px;
        margin-right: 15px;
    }

    .section-title {
        margin-left: 15px;
        margin-right: 15px;
    }

    .searchbox-filter-wrap {
        padding-left: 15px;
        padding-right: 15px;
    }

    .content-area {
        margin: 0 15px 15px 15px;
        margin-top: calc( var(--header-height) + 20px);
    }

    .mx-450 {
        width: 100%;
        margin: 0 auto;
    }

    .serialtip-default {
        padding: 18px;
    }

    .vendor-scroll-wrap {
        max-height: 70vh;
    }

    .tab-content {
        margin-top: 50px;
    }
}

@media (max-width: 400px) {
    .header-popup-box {
        right: -50px;
    }

        .header-popup-box.w-150 {
            right: 0;
        }

        .header-popup-box .popup-body .notification-item .remove-item {
            opacity: 1;
        }

    .serialtip-default {
        padding: 12px;
    }
}

/*-----------------------------------------------------*/

/*Developer Style*/
.clsVendorPending {
    background-color: yellow !important;
}

.clsVendorApproved {
    background-color: green !important;
}

.clsVendorRejected {
    background-color: red !important;
}

.custom-upload-box {
    flex-direction: row !important;
    min-height: auto !important;
    cursor: pointer;
    position: relative !important;
}

.upload-icon {
    position: absolute;
    top: 2px !important;
    right: 2px !important;
    left: unset !important;
    width: 50px !important;
    min-width: 0 !important;
    transform: translate(0, 0) !important;
    height: calc(100% - 4px);
}


.file-readonly {
    cursor: not-allowed;
    background-color: #e9ecef;
    pointer-events: none;
}

    .file-readonly span {
        opacity: 0.5;
    }

    .file-readonly .upload-icon {
        background-color: #b1b1b1 !important
    }

.deleteFile {
    color: #ed6a6a;
    cursor: pointer;
}

.clsDisable {
    pointer-events: none;
    cursor: not-allowed;
}



.form-control.h-120 {
    height: 120px;
}

.StatusPill {
    padding: 2px 6px;
    border-radius: 25px;
    font-size: 14px;
    font-family: var(--frutiger);
    margin-right: 4px;
    white-space: nowrap;
    font-weight: 500;
    min-width: 96px;
    text-align: center;
}

    .StatusPill.pending {
        background-color: #FDF6BD;
        color: #7E7315;
    }

    .StatusPill.approved {
        background-color: #BDFDDE;
        color: #377E5C;
    }

    .StatusPill.rejected {
        background-color: #fdbdbd;
        color: #7e1515;
    }

    .statusPill.reschedule {
        background-color: #bdebfd;
        color: #2c6880;
    }

.text-alert {
    padding: 4px 12px;
    background-color: #ffe3e3;
    color: #FD0000;
    border-radius: 4px;
    animation: blink 0.5s alternate infinite;
    max-width: 800px;
}

.text-alert-noblink {
    padding: 4px 12px;
    background-color: #ffe3e3;
    color: #FD0000;
    border-radius: 4px;
    max-width: 800px;
}

/*.text-alert:hover{
    animation-play-state:paused;
}*/

.welcome-user-text {
    padding-left: 8px;
    font-size: 24px;
    font-weight: 200;
    color: var(--secondary);
}

/*.btn.pending-btn {
    background-color: #f8f8f8;
    margin-right: 0.75rem;
    border-radius: 4px;
    position: relative;
    color: var(--bs-blue);
    border: 1px solid transparent;
}*/

/*.pending-btn .badge-pill {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: red;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    font-weight: 400;
    color: #FFFFFF;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}*/


.tab-pill-wrap {
    display: flex;
    position: absolute;
    bottom: 100%;
    left: -1px;
    z-index: 0;
}

.tab-title-pill-btn {
    display: inline-flex;
    padding: 4px 12px;
    cursor: pointer;
    border-radius: 4px 4px 0 0;
    background-color: var(--background);
    color: var(--secondary);
    font-weight: bold;
    margin-bottom: 0px;
    border: 1px solid #e0e0e0;
    border-bottom: 0;
}

button.tab-title-pill-btn.active {
    background-color: var(--secondary);
    color: #ffffff;
}

.conflict-data, .debarrment-data {
    display: none;
}

    .conflict-data.show, .debarrment-data.show {
        display: block;
    }

.mw-auto {
    min-width: auto !important;
}


.btn-add-multiaddress {
    width: 28px;
    height: 28px;
    background-color: var(--secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    margin-bottom: 4px;
    border-radius: 4px
}

.btn-del-multiaddress {
    width: 28px;
    height: 28px;
    background-color: #e93b3b;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    margin-bottom: 4px;
    border-radius: 4px
}

/*.btn.pending-btn.awaiting {
    background-color: #f8a5c2;
    color: darkblue;
}

.btn.pending-btn.accepted {
    background-color: #c2ffc2;
    color: darkgreen;
}

.btn.pending-btn.pending {
    background-color: #f7d794;
    color: #574b90;
}

.btn.pending-btn.rejected {
    background-color: #B53471;
    color: #ffffff;
}

.btn.pending-btn.approved {
    background-color: #778beb;
    color: white;
}

.btn.pending-btn.all {
    background-color: #63cdda;
    min-width: 70px;
    color: #ffffff;
}

.btn.pending-btn.active {
    outline: 1px dashed #000000;
}

.btn.pending-btn.insurance-expired {
    background-color: #f39c12;
    color: white;
}*/


.invitation-expire-badge {
    background-color: #e74c3c;
    color: #FFFFFF;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.invitation-awaiting-badge {
    background-color: #fddde8;
    color: #d82261;    
    border: 1px solid #e9afc2;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.invitation-accepted-badge {
    background-color: #c2ffc2;
    color: darkgreen;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.invitation-pending-badge {
    background-color: #f7d794;
    color: #574b90;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.invitation-approved-badge {
    background-color: #778beb;
    color: white;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.invitation-rejected-badge {
    background-color: #B53471;
    color: white;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.invitation-profile-status-badge {
    background-color: #8e44ad;
    color: white;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.modal-history-wrapper {
    padding-left: 80px;
    position: relative;
}

    .modal-history-wrapper:before {
        content: "";
        position: absolute;
        left: 30px;
        top: 2px;
        width: 2px;
        height: calc( 100% - 2px );
        background-color: #e5e5e5;
    }

    .modal-history-wrapper .history-point {
        position: relative;
        background-color: #ddf0f4;
        border: 1px solid #e5e5e5;
        padding: 0.5rem 150px 0.5rem 0.5rem;
        border-radius: 4px;
        margin-bottom: 1rem;
        z-index: 2;
        display: flex;
    }

        .modal-history-wrapper .history-point .action-text {
            font-size: 15px;
            color: #333333;
        }

        .modal-history-wrapper .history-point:before {
            content: "";
            position: absolute;
            z-index: -1;
            left: 0;
            bottom: -4px;
            width: 100%;
            height: 4px;
            transform: scale(0.99,1);
            background-color: #f2f2f2;
            border-radius: 0 0 4px 4px;
            border: 1px solid #e5e5e5;
        }

        .modal-history-wrapper .history-point:after {
            content: "";
            position: absolute;
            top: 13px;
            left: -50px;
            width: 49px;
            height: 4px;
            border: 1px solid #e5e5e5;
            border-right: 0;
            border-left: 0;
            z-index: -1;
        }

        .modal-history-wrapper .history-point .left-point {
            position: absolute;
            left: -65px;
            top: 0;
            width: 28px;
            height: 28px;
            background-color: #333333;
            border-radius: 50%;
            border: 1px solid #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 14px;
        }

        .modal-history-wrapper .history-point .date-time-record {
            position: absolute;
            top: 9px;
            right: 8px;
            color: #818181;
            white-space: nowrap;
            font-size: 14px;
        }


.dataTables_wrapper div.dt-button-collection {
    width: 250px;
    max-height: 300px;
    overflow-y: auto;
    left: unset !important;
    right: 0;
}

.table-responsive:has(.dataTables_wrapper) {
    overflow: visible;
}

.status-label-box {
    position: absolute;
    top: 7px;
    right: 20px;
}

.accordion-button:focus:not(:focus-visible) {
    box-shadow: none;
}

.w-30px {
    width: 30px;
    min-width: 30px;
    display: inline-flex;
}

.pl-30px {
    padding-left: 30px;
}

.dataTables_wrapper .dataTables_filter {
    margin-bottom: 20px;
}
.dataTables_wrapper .top {
    display: flex;
    justify-content: space-between;
}
.dataTables_wrapper .top .dataTables_filter {
    float: unset;
}
.dataTables_wrapper .top .dataTables_filter label {
    position: relative;
}
.dataTables_wrapper .top .dataTables_filter label .glass-icon {
    position: absolute;
    left: 14px;
    top: 12px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dataTables_wrapper .top .dataTables_filter input {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    padding-left: 42px;
    min-width: 400px;
    font-size: 16px;
    line-height: 20px;
    font-family: var(--frutiger);
    color: #344054;
    margin-left: 0;
    height: 44px;
}
.dataTables_wrapper .top .dataTables_filter input:focus {
    outline: none;
    border-color: var(--secondary);
}
.dataTables_wrapper .top .dataTables_filter input:placeholder {
    color: #667085;
}
.dataTables_wrapper .top .dt-buttons {
    display: flex;
}


.form-upload.question-file {
    min-height: 60px;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 0.5rem;
    margin-top: 0.5rem;
}

    .form-upload.question-file label {
        position: static;
        transform: translate(0, 0);
    }

    .form-upload.question-file .file-wrap {
        margin-top: 0;
    }

.question-error {
    display: flex;
    justify-content: end;
}

label.checkbox-wrapper {
    width: 100%;
    background: #f2f2f2;
    padding: 10px 10px 28px 10px;
    position: relative;
    border-radius: 4px;
    min-height: 80px;
    height: 100%;
}

input.check-inp {
    position: absolute;
    right: 10px;
    bottom: 5px;
    width: 18px;
    height: 18px;
}

h4.check-titlebar {
    font-size: 16px;
}

.scroll-400 {
    overflow-y: auto;
    max-height: 360px;
}

label.inline-checkbox-wrapper {
    width: 100%;
    background: #f2f2f2;
    padding: 10px;
    position: relative;
    border-radius: 4px;
    min-height: 50px;
    height: 100%;
    justify-content: space-between;
    display: flex;
    flex-direction: row;
}

input.check-inp-inline {
    display: flex;
    width: 18px;
    height: 18px;
    min-width: 18px;
}

.select2-selection__clear {
    display: none !important;
}

.file-pill-preview {
    background-color: #FFFFFF;
    padding: 4px 8px 4px 4px;
    margin: 0 4px 4px 0;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    border-radius: 4px;
}

.file-pill-preview .file-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}

.file-pill-preview .file-icon img {
    height: 100%;
}
body:has(.add-product-wrapper.show) {
    overflow: hidden;
}

.scroll-body {
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    overflow-x: hidden;
    margin: 0;
    padding: 30px;
}

.uploadbtnmargin {
    margin-left: .5rem !important;
}
