@import url('./custom-styles.css');


.tab-content>.active {
    opacity: 1;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --body-fonts: "Inter", sans-serif;
    --color-white: #FFFFFF;
    --PB-bg-color: #F3F4F6;
    --PB-bg-light: #F9FAFB;
    --PB_color-primary: #155DFC;
    --color-primary-light: #155DFCCC;
    --border-color: #E5E7EB;
    --text-color: #6A7282;
    --text-color-secondary: #364153;
    --color-danger: #E7000B;
    --color-danger-extra-light: #E7000B1A;
    --color-danger-light: #e7000bad;
    --muted-color: #99A1AF;
    --title-color: #101828;
    --PB_hover-bg: #E4EBFE;
    --PB_color-theme: #4367B0;
    --PB_box-shadow: 0 8px 10px -6px #0000001A;
    --btn-light-hover-bg: #E6E8EC;
    --PB_primary-gradient: linear-gradient(180deg, var(--PB_color-theme) 0%, #4C70BA 50%, #3A5A9A 100%);
    scrollbar-width: thin !important;
    scrollbar-color: #7A7A7A #E8E8E8;
}

:root::-webkit-scrollbar {
    width: 8px !important;
    border-radius: 20px !important;
}

:root::-webkit-scrollbar-track {
    background: #E8E8E8 !important;
    width: 8px !important;
}

:root::-webkit-scrollbar-thumb {
    background-color: #7A7A7A !important;
    border-radius: 20px !important;
    border: 2px solid transparent !important;
    width: 8px !important;
    background-clip: content-box !important;
}

body {
    font-family: var(--body-fonts);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: -0.15px;
    color: var(--text-color);
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.PB__db-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: auto;
    background-color: var(--PB-bg-light);
}

.PB__db-wrapper .PB__db-content {
    width: calc(100% - 240px);
    margin: 0 0 0 auto;
    padding: 20px;
    transition: width .35s ease-in-out;
    flex: 1 0 auto;
}

body.PB__sidebar-inactive .PB__db-content {
    width: calc(100% - 64px);
}

.PB__db-content>.bootstrap-container>.content,
.PB__db-content>.bootstrap-container {
    margin: 0 !important;
    padding: 0 !important;
    background-color: transparent;
}

html body .btn {
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--body-fonts);
    color: var(--text-color);
    text-decoration: none;
    line-height: 1;
    border: 1px solid transparent !important;
    background-color: transparent;
    margin: 0;
    transition: 0.35s all ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    outline: none !important;
    box-shadow: none !important;
    height: auto !important;
    min-height: auto !important;
    opacity: 1;
}

html body .btn-sm {
    padding-left: 10px;
    padding-right: 10px;
}

html body .btn-lg {
    min-width: 160px;
}

html body .btn-xl {
    min-width: 200px;
}

html body .btn:hover {
    color: var(--text-color);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10) !important;
}

@media (min-width: 1024px) {
    .hidden-dropdown-desktop {
        display: none !important;
    }
}

@media (max-width: 1023px) {
    .hidden-md {
        display: none !important;
    }
}

html body .btn-primary {
    background-color: var(--PB_color-primary) !important;
    border-color: var(--PB_color-primary) !important;
    color: var(--color-white) !important;
}

html body .btn-primary:hover {
    background-color: var(--color-primary-light) !important;
    border-color: var(--color-primary-light) !important;
    color: var(--color-white) !important;
}

html body .btn-danger {
    background-color: var(--color-danger) !important;
    border-color: var(--color-danger) !important;
    color: var(--color-white) !important;
}

html body .btn-danger:hover {
    background-color: var(--color-danger-light) !important;
    border-color: var(--color-danger-light) !important;
    color: var(--color-white) !important;
}

html body .btn__primary-theme {
    border-radius: 10px;
    background: var(--PB_color-theme);
    color: var(--color-white);
    border-color: var(--PB_color-theme);
}

html body .btn__primary-theme:hover {
    filter: brightness(110%);
    color: var(--color-white);
}

html body .btn-outline-light {
    background-color: var(--color-white) !important;
    border-color: var(--border-color) !important;
    color: var(--text-color-secondary) !important;
}

html body .btn-outline-light:hover,
html body .btn-outline-light:focus {
    background-color: var(--btn-light-hover-bg) !important;
    border-color: var(--btn-light-hover-bg) !important;
}

html body .btn-link {
    font-size: 16px;
    color: var(--PB_color-primary);
    font-weight: 500;
    line-height: 1.5;
    padding: 0;
    text-decoration: none;
    transition: 0.35s all ease-in-out;
    font-family: var(--body-fonts);
    display: inline-block;
}

html body .btn-link:hover {
    color: var(--color-primary-light);
    text-decoration: underline;
}


body label {
    font-family: var(--body-fonts);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
    color: var(--title-color);
    margin-bottom: 8px;
}

html body .form-control:not([type="checkbox"]):not([type="radio"]),
html body select.form-control,
html body select {
    border: 1px solid var(--border-color) !important;
    padding: 10px 12px !important;
    font-family: var(--body-fonts) !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 1 !important;
    letter-spacing: -0.15px !important;
    height: 40px !important;
    color: var(--title-color) !important;
    border-radius: 8px !important;
    background-color: var(--color-white) !important;
    box-shadow: none !important;
    width: 100% !important;
}

html body .form-control:not([type="checkbox"]):not([type="radio"]):focus,
html body select.form-control:focus,
html body select:focus,
html body .form-control:not([type="checkbox"]):not([type="radio"]):focus-visible,
html body select.form-control:focus-visible {
    border-color: var(--PB_color-primary) !important;
    outline: none !important;
    height: 40px !important;
}


/*--- Global Checkbox Style Start ---*/
html body .custom-checkbox {
    color: var(--text-color-secondary);
    font-size: 14px;
    font-weight: 400 !important;
    letter-spacing: -0.15px;
    font-family: var(--body-fonts);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

html body .custom-checkbox input {
    display: none;
}

html body .custom-checkbox .checkmark {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #0000001A;
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
    background: #fff;
    box-shadow: 0px 1px 2px 0px #0000000D;
}

html body .custom-checkbox input:checked+.checkmark {
    background: #4a6db6;
    border-color: #445485;
}

html body .custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
}

html body .custom-checkbox input:checked+.checkmark::after {
    opacity: 1;
}

/*--- Global Checkbox Style End ---*/

@media (max-width: 991.98px) {
    .PB__db-wrapper .PB__db-content {
        width: 100% !important;
        padding: 20px 15px;
    }
}

@media (max-width: 767.98px) {

    body,
    body p {
        font-size: 13px;
    }

    html body .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===================================
   GLOBAL STYLE END
=================================== */


/* ===================================
   PB HEADER STYLE START
=================================== */
.PB__header {
    z-index: 100;
    background-color: var(--color-white);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    transition: 0.35s all ease;
    width: calc(100% - 240px);
    margin: 0 0 0 auto;
    position: fixed;
    right: 0;
    top: 0;
}

body.PB__sidebar-inactive .PB__header {
    width: calc(100% - 64px);
}

.PB__header .PB__header-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.PB__header .PB__header-row {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.PB__header .PB__header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.PB__header .PB__header-action-btn {
    background: var(--color-white);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    transition: 0.35s all ease-in-out;
}

.PB__header .PB__header-action-btn:hover,
.PB__header-action-btn.active {
    background-color: var(--PB-bg-color) !important;
}


/*--- Notifications Style Start ---*/
.recent__bar {
    position: relative;
    z-index: 2;
}

.recent__bar .recent__icon.active {
    background-color: var(--PB-bg-color);
}

.recent__bar .recent__icon.active svg path {
    stroke: var(--PB_color-primary);
}

.recent__dropdown {
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    width: 320px;
    background: #FFF;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    display: none;
    overflow: hidden;
    border: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.recent__dropdown.active {
    display: block;
}

.recent__dropdown-header {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: rgba(249, 250, 251, .5);
    border-bottom: 1px solid var(--PB-bg-color);
    font-family: "Inter", sans-serif;
}

.recent__dropdown-header span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.15px;
    color: var(--title-color);
}

.recent__dropdown-header button {
    background: none;
    border: none !important;
    color: var(--PB_color-primary);
    cursor: pointer;
    margin-left: auto !important;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06px;
}

.recent__dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    max-height: 500px;
    overflow: auto;
}

.recent__dropdown-list li {
    display: flex !important;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: "Inter", sans-serif;
}

.recent__dropdown-list li img {
    height: auto;
    width: auto;
    object-fit: none;
}

.recent__dropdown-list li:hover {
    background: var(--PB_hover-bg);
}

.recent__dropdown-list .recent__dropdown-list-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background-color: var(--PB-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6A7282;
}

.recent__dropdown-list strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.15px;
    color: var(--title-color);
}

.recent__dropdown-list span {
    font-size: 11px;
    color: #6A7282;
    letter-spacing: 0.61px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
}

.recent__dropdown-footer {
    padding: 0 10px;
}

.recent__dropdown-footer a {
    font-size: 13px;
    color: #6A7282;
    text-decoration: none;
    padding: 4px 16px;
    text-align: center;
    background-color: rgba(249, 250, 251, .5);
    font-family: "Inter", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*--- Notifications Style End ---*/

.PB__header .PB__header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 70%;
    justify-content: flex-end;
}

.PB__header-search {
    max-width: 300px;
    width: 100%;
}

.PB__header-search .PB__header-search-group {
    width: 100%;
}

.PB__header-search .PB__header-search-input {
    width: 100%;
    border: 1px solid var(--border-color);
    padding: 11px 12px 11px 35px !important;
    color: var(--text-color);
    background-color: var(--PB-bg-light);
    border-radius: 10px;
    font-family: var(--body-fonts);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: -0.15px;
    outline: none !important;
    box-shadow: none;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE0LjAwMjcgMTRMMTEuMTA5NCAxMS4xMDY3IiBzdHJva2U9IiM5OUExQUYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNNy4zMzMzMyAxMi42NjY3QzEwLjI3ODkgMTIuNjY2NyAxMi42NjY3IDEwLjI3ODkgMTIuNjY2NyA3LjMzMzMzQzEyLjY2NjcgNC4zODc4MSAxMC4yNzg5IDIgNy4zMzMzMyAyQzQuMzg3ODEgMiAyIDQuMzg3ODEgMiA3LjMzMzMzQzIgMTAuMjc4OSA0LjM4NzgxIDEyLjY2NjcgNy4zMzMzMyAxMi42NjY3WiIgc3Ryb2tlPSIjOTlBMUFGIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
    background-size: 20px;
    background-position: 9px center;
    background-repeat: no-repeat;
}

.PB__header-search .PB__header-search-input:focus {
    border-color: var(--PB_color-primary);
}

/* HEADER SEARCH STYLE END */

.PB__gdd-container {
    position: relative;
}

.PB__gdd-container .PB__gdd-trigger {
    cursor: pointer;
}

.PB__gdd-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    overflow: hidden;
    z-index: 999;
}

.PB__gdd-dropdown.right {
    float: none;
    left: auto;
    right: 0;
}

.PB__gdd-dropdown .PB__gdd-card {
    border: 1px solid var(--border-color);
    margin-top: 2px;
    width: 200px;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--PB_box-shadow);
    overflow: hidden;
}

.PB__gdd-trigger:hover+.PB__gdd-dropdown,
.PB__gdd-dropdown:hover,
.PB__gdd-dropdown.active {
    display: block;
}

.PB__gdd-dropdown a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    font-family: var(--body-fonts);
    color: var(--title-color);
}

.PB__gdd-dropdown .delete {
    background-color: transparent;
    color: var(--color-danger);
}

.PB__gdd-dropdown a:hover {
    background: var(--PB_hover-bg);
}

.PB__gdd-dropdown .delete:hover {
    background-color: var(--color-danger-extra-light);
}

.PB__gdd-dropdown.show {
    display: block;
}

/* GLOBAL DROPDOWN STYLE END */


.PB__header-user {
    padding: 0 0 0 15px;
    border-left: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.PB__header-user .PB__avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--PB-bg-color);
    font-size: 16px;
    text-transform: uppercase;
    color: var(--title-color);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.PB__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.PB__header-user h4 {
    padding: 0;
    margin: 0;
    color: var(--title-color);
    font-weight: 500;
    font-size: 14px;
}

.PB__header-user .PB__header-user-info {
    margin-top: 2px;
}

.PB__header-user .PB__header-user-info span {
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    line-height: 1.25;
}

.header__search-form.active {
    display: block !important;
}

/*--- PB NOTIFICATION DROPDOWN STYLE START ---*/
.PB__notifications-container {
    position: relative;
}

.notifications__dropdown {
    position: absolute;
    right: -10px;
    top: calc(100% + 6px);
    z-index: 10;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 500px;
    box-shadow: var(--PB_box-shadow);
    background-color: var(--color-white);
    overflow: hidden;
    display: none;
}

.notifications__dropdown.active {
    display: block;
}

.notifications__dropdown .notifications__dropdown-head {
    padding: 15px 25px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.notifications__dropdown h4 {
    font-family: var(--body-fonts);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -0.31px;
    margin: 0;
}

.notifications__dropdown .notifications__dropdown-close {
    width: 24px;
    height: 24px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    margin: 0 !important;
    transition: 0.35s all ease-in-out;
    border-radius: 5px;
}

.notifications__dropdown-close:hover {
    background-color: var(--PB-bg-color) !important;
}

.notifications__dropdown .notifications__tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    border-bottom: 1px solid var(--border-color);
}

.notifications__tabs-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: transparent;
    border: none;
    font-size: 20px;
    color: var(--text-color);
    transition: 0.35s all ease-in-out;
}

.notifications__dropdown .notifications__tabs-btn:hover,
.notifications__dropdown .notifications__tabs-btn.active {
    background-color: #3D355475;
    color: var(--color-white);
}

.notifications__dropdown .notifications__tabs-content {
    max-height: 540px;
    overflow: auto;
    padding-bottom: 10px;
    display: none;
}

.notifications__dropdown .notifications__tabs-content.show {
    display: block;
}

.notifications__tabs-content .notifications__list {
    padding: 0;
}

.notifications__tabs-content .notifications__list a {
    padding: 15px 24px 15px 44px;
    border-bottom: 1px solid #F3F4F6;
    text-decoration: none;
    color: var(--text-color);
    display: block;
    position: relative;
}

.notifications__tabs-content .notifications__list li:last-child a {
    border-bottom: none;
}

.notifications__tabs-content .notifications__list a:before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--border-color);
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    left: 24px;
    top: 20px;
}

.notifications__tabs-content .notifications__list a.unread {
    background-color: #FAF5FF4D;
}

.notifications__tabs-content .notifications__list a:hover {
    background-color: var(--PB-bg-light);
}

.notifications__tabs-content .notifications__list a.unread:before {
    background-color: #AD46FF;
}

.notifications__tabs-content .notifications__list a>div>* {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notifications__tabs-content .notifications__list span {
    display: block;
    font-size: 12px;
}

.notifications__dropdown .notification__tag {
    color: #9810FA;

}

.notifications__tabs-content .notifications__list a.unread p {
    color: var(--title-color);
}

.notifications__dropdown .notifications__dropdown-footer {
    padding: 15px 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.notifications__dropdown-footer .btn {
    flex: 1;
}

.PB__logo a {
    font-size: 0;
}

/*--- PB NOTIFICATION DROPDOWN STYLE END ---*/

@media (max-width: 1199.98px) {
    .PB__header .PB__header-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .PB__header .PB__header-row {
        gap: 15px;
    }

    .notifications__dropdown {
        width: 400px;
    }
}

@media (max-width: 991.98px) {
    .PB__header {
        width: 100% !important;
    }

    .PB__header-search {
        max-width: max-content;
        position: relative;
    }

    .header__search-form {
        position: absolute;
        right: -40px;
        top: calc(100% + 5px);
        width: 270px;
        padding: 12px;
        border-radius: 0 0 5px 5px;
        box-shadow: var(--PB_box-shadow);
        background-color: var(--color-white);
    }


    .PB__header .PB__header-row {
        justify-content: initial;
    }
}

@media (max-width: 767.98px) {
    .PB__header {
        padding: 10px 0;
    }

    .PB__header-user .PB__header-user-info {
        display: none;
    }

    .PB__header .PB__header-right {
        gap: 5px;
        width: auto;
        margin-left: auto;
    }

    .PB__header .PB__header-actions,
    .PB__header .PB__header-row {
        gap: 5px;
    }

    .notifications__dropdown {
        width: 320px;
        right: -40px;
    }

    .notifications__dropdown .notifications__dropdown-head,
    .notifications__dropdown .notifications__tabs,
    .notifications__dropdown .notifications__dropdown-footer {
        padding: 12px 15px;
    }

    .notifications__tabs-content .notifications__list a {
        padding: 12px 20px 12px 30px;
    }

    .notifications__tabs-content .notifications__list a:before {
        left: 14px;
        top: 16px;
    }

    .notifications__dropdown .notifications__tabs {
        gap: 5px;
    }

    .notifications__tabs-btn {
        font-size: 16px;
    }

    .notifications__dropdown .notifications__tabs-content {
        max-height: 400px;
    }

    .PB__header-user {
        padding-left: 5px;
        border-left: none;
    }

    .PB__header-user .PB__avatar {
        width: 30px;
        height: 30px;
        border: 1px solid var(--border-color);
        font-size: 14px;
    }

    .PB__header .PB__header-action-btn {
        width: 30px;
        height: 30px;
    }

    .PB__logo {
        max-width: 150px;
    }

    .PB__logo img,
    .PB__logo svg {
        width: 100%;
        object-fit: contain;
    }
}

/* ===================================
   PB HEADER STYLE END
=================================== */


/* ===================================
   PB SIDEBAR STYLE START
=================================== */
.PB__sidebar {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--PB_primary-gradient);
    width: 240px;
    height: 100%;
    padding: 16px;
    border-radius: 0 8px 8px 0;
    overflow: auto;
    z-index: 110;
    transition: 0.35s all ease-in-out;
}

.PB__sidebar-overlay {
    background-color: rgba(0, 0, 0, .6);
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    transition: 0.35s all ease-in-out;
}

body.PB__sidebar-mobile-show .PB__sidebar-overlay {
    opacity: 1;
    z-index: 105;
    visibility: visible;
}

.PB__sidebar-container {
    display: flex;
    flex-direction: column;
}

.PB__sidebar .PB__sidebar .PB__sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 25px;
}

.PB__sidebar .PB__sidebar-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.31px;
    text-decoration: none;
    color: var(--color-white);
    white-space: nowrap;
}

.PB__sidebar .PB__sidebar-toggle {
    cursor: pointer;
}

.PB__sidebar .PB__sidebar-nav li+li {
    margin-top: 7px;
}

.PB__sidebar .PB__sidebar-link {
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: rgba(255, 255, 255, .8);
    letter-spacing: -0.1px;
    text-decoration: none;
    transition: 0.35s all ease-in-out;
}

.PB__sidebar .PB__sidebar-link i {
    font-size: 17px;
}

.PB__sidebar .PB__sidebar-link:hover,
.PB__sidebar .PB__sidebar-link.active {
    background: rgba(255, 255, 255, .20);
    color: var(--color-white);

}

/*--- Sidebar inactive style start ---*/
.PB__sidebar.inactive {
    width: 64px;
    padding: 16px 8px;
}

.PB__sidebar.inactive .PB__sidebar-head {
    justify-content: center;
}

.PB__sidebar.inactive .PB__sidebar-logo {
    display: none;
}

.PB__sidebar.inactive .PB__sidebar-link {
    font-size: 0;
    gap: 0;
}

.PB__sidebar.inactive .PB__sidebar-link i {
    font-size: 20px;
}

.PB__sidebar.inactive .sidebar__recent-box {
    display: none;
}


/*--- PB Sidebar submenu styles ---*/
.PB__sidebar .PB__sidebar-item--has-submenu {
    margin-top: 7px;
}

.PB__sidebar .PB__sidebar-nav .PB__sidebar-chevron {
    font-size: 12px;
    transition: transform 0.25s ease;
    margin: 0 0 0 auto;
}

.PB__sidebar .PB__sidebar-submenu {
    list-style: none;
    padding: 0;
    margin: 4px 0 0 12px;
}

.PB__sidebar .PB__sidebar-submenu li {
    margin: 0;
}

.PB__sidebar .PB__sidebar-nav .PB__sidebar-submenu li+li {
    margin-top: 2px;
}

.PB__sidebar .PB__sidebar-submenu-link {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 8px;
    transition: 0.2s ease;
}

.PB__sidebar .PB__sidebar-submenu-link:hover,
.PB__sidebar .PB__sidebar-submenu-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

.PB__sidebar.inactive .PB__sidebar-submenu,
.PB__sidebar.inactive .PB__sidebar-chevron {
    display: none !important;
}

/*--- PB Sidebar flyout (collapsed state hover) ---*/
.PB__sidebar.inactive {
    overflow: visible;
}

.PB__sidebar .PB__sidebar-flyout {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    z-index: 1050;
}

.PB__sidebar.inactive .PB__sidebar-item--has-submenu {
    position: relative;
}

.PB__sidebar.inactive .PB__sidebar-item--has-submenu:hover .PB__sidebar-flyout {
    display: block;
}

.PB__sidebar .PB__sidebar-flyout__content {
    margin-left: 16px;
    min-width: 215px;
    background: var(--PB_primary-gradient, #3A5A9A);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    padding: 0;
    position: relative;
    list-style: none;
}

.PB__sidebar .PB__sidebar-flyout__content::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 19px;
    border-width: 6px 6px 6px 0;
    border-style: solid;
    border-color: transparent;
    border-right-color: #3A5A9A;
}

.PB__sidebar .PB__sidebar-flyout__title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-white);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 0;
    text-transform: uppercase;
}

.PB__sidebar .PB__sidebar-flyout__list {
    list-style: none !important;
    margin: 0 !important;
    padding: 4px 6px !important;
    display: block !important;
}

.PB__sidebar .PB__sidebar-flyout__list li {
    margin: 0;
}

.PB__sidebar .PB__sidebar-flyout__list li a {
    display: block;
    padding: 8px 15px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 10px;
    background: transparent;
    white-space: nowrap;
    margin: 0;
}

.PB__sidebar .PB__sidebar-flyout__list li a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
}

.PB__sidebar:not(.inactive) .PB__sidebar-flyout {
    display: none !important;
}


/*--- Sidebar inactive style end ---*/


.sidebar__recent-box {
    margin-top: 30px;
}

.PB__sidebar .sidebar__recent-head {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    cursor: pointer;
}

.PB__sidebar .sidebar__recent-list {
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 14px;
    padding: 10px 5px;
    max-height: 220px;
    overflow: auto;
    margin-top: 12px;
    background: #FFFFFF0D;

}

.PB__sidebar .sidebar__recent-list li {
    margin: 0 !important;
}

.PB__sidebar .sidebar__recent-list li a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, .7) !important;
    cursor: pointer;
    white-space: nowrap;
    padding: 8px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    flex: 1;
    text-decoration: none !important;
    border-radius: 5px !important;
    line-height: 1 !important;
    margin: 0 !important
}

.PB__sidebar .sidebar__recent-list a:hover {
    background: rgba(255, 255, 255, .20);
    color: var(--color-white);
}

.PB__sidebar .sidebar__recent-list svg,
.PB__sidebar .sidebar__recent-list img {
    width: 16px;
    flex: 0 0 16px;
    object-position: center;
    object-fit: contain;
}

.PB__sidebar .sidebar__recent-list {
    display: block !important;
}

@media (max-width: 991.98px) {
    .PB__sidebar {
        left: -100%;
    }

    .PB__sidebar.show {
        left: 0;
    }
}

/* ===================================
   PB SIDEBAR FAVORITES VIEW ALL LINK STYLE START
=================================== */
.favorites-view-all-link {
    display: block;
    color: rgba(255, 255, 255, 0.50);
    text-align: center;
    font-family: var(--body-fonts);
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 16.5px;
    letter-spacing: 1.164px;
    text-transform: uppercase;
    text-decoration: underline !important;
    cursor: pointer;
    margin-top: 8px;
}

.favorites-view-all-link:hover,
.favorites-view-all-link:visited {
    color: #fff !important;
}







/* ===================================
   PB SIDEBAR STYLE END
=================================== */


/* ===================================
   PB LOGIN PAGE STYLE START
=================================== */
.PB__login-wrapper {
    height: 100%;
}

.PB__login-wrapper .PB__login-row {
    display: flex;
    height: 100%;
}

.PB__login-wrapper .PB__login-row>div {
    width: 50%;
}

.PB__login-wrapper .PB__login-content {
    position: relative;
    background-image: var(--PB_primary-gradient);
    padding: 54px;
    height: 100%;
    overflow: hidden;
}

.PB__login-wrapper .PB__login-text {
    max-width: 390px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.PB__login-wrapper .PB__login-logo {
    color: var(--color-white);
    font-family: var(--body-fonts);
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.6px;
    margin-bottom: 14px;
}

.PB__login-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
}

.PB__login-wrapper h1 {
    color: var(--color-white);
    font-family: var(--body-fonts);
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.369px;
    margin: 0;
}

.PB__login-wrapper .PB__login-content p {
    color: var(--color-white);
    opacity: .9;
    font-family: var(--body-fonts);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.449px;
    margin: 0;
}

.PB__login-wrapper .PB__login-content ul {
    margin-top: 14px;
}

.PB__login-wrapper .PB__login-content li {
    display: flex;
    gap: 12px;
}

.PB__login-wrapper .PB__login-content li+li {
    margin-top: 15px;
}

.PB__login-wrapper .PB__login-icons {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.20);
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
}

.PB__login-wrapper .PB__login-content h5 {
    color: var(--color-white);
    font-family: var(--body-fonts);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 155.556%;
    letter-spacing: -0.439px;
    margin: 0;
    padding: 0;
}

.PB__login-wrapper .PB__login-content span {
    color: rgba(255, 255, 255, 0.80);
    font-family: var(--body-fonts);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%;
    letter-spacing: -0.15px;
    display: block;
}

.login__top-img {
    position: absolute;
    right: 0;
    top: 0;
}

.login__bottom-img {
    position: absolute;
    bottom: 0;
    left: 0;
}

.PB__login-block {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-direction: column;
}

.PB__login-form {
    max-width: 448px;
    width: 100%;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: #FFF;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    font-family: var(--body-fonts);
}

.PB__login-form .PB__login-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.07px;
    margin: 0 0 8px 0;
    font-family: inherit;
    color: var(--title-color);
}

.PB__login-subtitle {
    color: var(--text-color);
    font-family: inherit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.312px;
    margin: 0 0 17px 0;
}

.PB__login-form .error {
    margin-bottom: 20px;
}

.PB__login-group+.PB__login-group {
    margin-top: 20px;
}

body .PB__login-form label {
    color: var(--text-color-secondary);
    font-family: inherit;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.15px;
}

.PB__login-form .PB__login-input-wrapper {
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--PB-bg-light);
    padding: 8px 8px 8px 14px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.PB__login-form .PB__login-input-wrapper input {
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #717182;
    font-family: inherit;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.15px;
    padding: 4px !important;
    width: 100%;
    min-height: auto !important;
    height: auto !important;
}

.PB__login-eye {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.PB__login-options {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
}

.PB__login-forgot-pw {
    color: var(--PB_color-theme);
    font-family: var(--body-fonts);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.15px;
    cursor: pointer;
}

.PB__login-form .btn__primary-theme {
    width: 100%;
    margin-top: 20px;
}

.PB__login-divider {
    margin: 44px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-family: var(--body-fonts);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    height: 16px;
    position: relative;
}

.PB__login-divider .PB__login-divider-line {
    border-top: 1px solid var(--border-color);
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.PB__login-divider:last-child {
    margin-bottom: 0;
}

.PB__login-divider-text {
    padding: 2px 8px;
    background-color: var(--color-white);
    position: relative;
    z-index: 1;
}

.PB__login-form .btn-outline-light {
    width: 100%;
}

.PB__login-eye .fa-eye-slash {
    display: none;
}

.PB__forgot-pw-form {
    margin: 30px 0 0 0;
}

.PB__forgot-pw-form .btn,
.PB__forgot-pw-form .btn:hover {
    text-transform: capitalize;
    font-size: inherit;
}

@media (max-width: 991.98px) {
    .PB__login-wrapper {
        padding: 48px;
        background: var(--PB_primary-gradient);
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
        overflow: auto;
    }

    .PB__login-wrapper .PB__login-row {
        flex-direction: column;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .PB__login-wrapper .PB__login-row>div {
        width: 100%;
    }

    .PB__login-wrapper .PB__login-content {
        display: none;
    }

    .PB__login-wrapper .PB__login-block {
        padding: 0;
        max-width: 400px;
        width: 100%;
    }

    .PB__login-wrapper .PB__login-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 45px;
    }
}

@media (max-width: 767.98px) {
    .PB__login-wrapper {
        padding: 48px 20px;
    }

    .PB__login-form {
        padding: 15px;
    }

    .PB__login-wrapper .PB__login-logo {
        margin-bottom: 30px;
        font-size: 20px;
    }
}

/* ===================================
   PB LOGIN PAGE STYLE END
=================================== */


/* ===================================
   UPSHEETS PAGE STYLE START
=================================== */
/*.PB__content-title-wrap {*/
/*    display: flex;*/
/*    align-items: flex-start;*/
/*    gap: 15px;*/
/*    justify-content: space-between;*/
/*    margin-bottom: 23px;*/
/*}*/

.PB__content-title {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    margin-bottom: 23px;
    text-align: left;
}

.PB__content-title .PB__content-title-text {
    color: var(--title-color);
    font-family: var(--body-fonts);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.07px;
    margin: 0 0 4px 0;
    float: none;
    text-align: left;
}

.PB__content-title-wrap p {
    font-family: var(--body-fonts);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%;
    letter-spacing: -0.15px;
    margin: 0;
    text-align: left;
}

body .PB__cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.PB__card {
    padding: 25px;
    box-shadow: var(--PB_box-shadow);
    border-radius: 10px;
    background-color: var(--color-white);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 7px;
    height: 100%;
}

.PB__card span {
    font-size: 30px;
    color: var(--title-color);
    font-weight: 400;
    display: block;
}

.PB__card span small {
    font-size: 65%;
    position: relative;
    bottom: -4px;
}

.PB__card p {
    margin: 0;
}

.PB__card p:last-child {
    color: var(--muted-color);
    font-size: 12px;
}


.leads__filters-card {
    padding: 25px;
    box-shadow: var(--PB_box-shadow);
    border-radius: 10px;
    background-color: var(--color-white);
    border: 1px solid var(--border-color);
    height: 100%;
    margin-top: 24px;
}


body .filters__form-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

body .filters__form-row>div {
    margin: 0;
}

body .filters__buttons {
    /*max-width: 300px;*/
    margin: 23px 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}


@media (max-width: 1199.98px) {
    .PB__card {
        padding: 15px;
    }

    body .PB__cards-row {
        gap: 15px;
    }

    body .filters__form-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    body .filters__form-row>.leads__group-first {
        grid-column: 1 / -1;
    }
}

@media (max-width: 991.98px) {
    body .PB__cards-row {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 10px;
        column-gap: 15px;
    }

    html body .PB__db-content .filters__form-row .leads__search-input {
        border: 1px solid var(--border-color) !important;
        background-color: var(--PB-bg-light) !important;
        background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE0LjAwMjcgMTRMMTEuMTA5NCAxMS4xMDY3IiBzdHJva2U9IiM5OUExQUYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNNy4zMzMzMyAxMi42NjY3QzEwLjI3ODkgMTIuNjY2NyAxMi42NjY3IDEwLjI3ODkgMTIuNjY2NyA3LjMzMzMzQzEyLjY2NjcgNC4zODc4MSAxMC4yNzg5IDIgNy4zMzMzMyAyQzQuMzg3ODEgMiAyIDQuMzg3ODEgMiA3LjMzMzMzQzIgMTAuMjc4OSA0LjM4NzgxIDEyLjY2NjcgNy4zMzMzMyAxMi42NjY3WiIgc3Ryb2tlPSIjOTlBMUFGIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==) !important;
        background-size: 20px;
        background-position: 9px center;
        background-repeat: no-repeat;
        padding-left: 35px !important;
    }

    body .filters__form-row {
        column-gap: 10px;
    }
}

@media (max-width: 767.98px) {
    body .PB__cards-row {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 10px;
        column-gap: 10px;
    }

    .PB__content-title .btn {
        padding: 10px;
    }

    .PB__content-title .btn span {
        display: none;
    }

    .PB__content-title>div {
        max-width: 260px;
    }

    .PB__card span {
        font-size: 24px;
    }

    .leads__filters-card {
        padding: 15px;
    }

    body .filters__buttons {
        width: 100%;
        flex-direction: row-reverse;
        gap: 15px;
    }

    body .filters__buttons .btn {
        flex: 1;
    }
}


/*Functional Table Style Start*/
.functional__table {
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: var(--PB_box-shadow);
    overflow: hidden;
    font-family: var(--body-fonts);
    margin-top: 24px;
    border: 1px solid var(--border-color);
}

.functional__table .functional__table-container {
    max-height: 577px;
    overflow-y: auto;
    overflow-x: auto;
}

.functional__table table {
    width: 100%;
    border-collapse: collapse;
}

.functional__table table thead {
    background-color: var(--PB-bg-color);
}

.functional__table table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: var(--title-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: none;
}

.functional__table table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-color);
}


.functional__table table tr:hover {
    background-color: var(--PB-bg-light);
}

.table__footer {
    padding: 15px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--PB-bg-light);
    border-top: 1px solid var(--border-color);
}

.table__footer span {
    font-family: var(--body-fonts);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
    color: var(--text-color);
    display: inline-block;
}

.table__footer__buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.table__footer .table__footer__button {
    padding: 8px;
    border: none !important;
    background-color: transparent;
    cursor: pointer;
    margin: 0 !important;
}


.functional__table .functional__table-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 27px;
    background-color: var(--color-white);
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
}

.functional__table .functional__table-filters {
    display: flex;
    align-items: center;
    gap: 20px;
}

.functional__table .filter__select-all {
    font-family: "Inter", sans-serif;
    font-weight: 600 !important;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin: 0 !important;
    color: #6A7282;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.functional__table .filter__select-all input {
    margin: 0 !important;
}

.functional__table-filters button {
    border: 1px solid var(--border-color) !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    cursor: pointer;
    background-color: var(--color-white);
    font-family: var(--body-fonts);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
    text-align: center;
    border-radius: 8px;
    margin: 0 !important;
}

.functional__table .functional__table-pagination {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 !important;
}

.functional__table .pagination_text {
    font-family: var(--body-fonts);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
    color: var(--text-color);
}

.functional__table-pagination button {
    padding: 0;
    border: none !important;
    cursor: pointer;
    background-color: transparent;
    margin: 0 !important;
    display: flex;
    align-items: center;
}

.functional__table-pagination button:disabled {
    opacity: .6;
}


.functional__table th div,
.functional__table th div a {
    display: flex;
    align-items: start;
    white-space: nowrap;
    color: var(--title-color);
    text-decoration: none;
}

.functional__table th:hover,
.functional__table th div a:hover {
    color: var(--PB_color-primary);
}

.functional__table table td {
    white-space: nowrap;
}

.functional__table table .td__wrapper {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
}


.functional__table .sugar_action_button {
    border: 1px solid var(--border-color) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 7px 11px !important;
    cursor: pointer !important;
    background-color: var(--color-white) !important;
    font-family: var(--body-fonts);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
    text-align: center;
    border-radius: 8px !important;
    margin: 0 !important;
    color: var(--text-color);
    height: auto;
}

.functional__table .sugar_action_button label,
.functional__table .sugar_action_button .selectedRecords.label,
.functional__table #actionLinkTop li.sugar_action_button a {
    color: var(--title-color) !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 20px !important;
    letter-spacing: -0.15px !important;
    margin: 0 !important;
    text-transform: capitalize !important;
    gap: 4px !important;
}

.functional__table #actionLinkTop .sugar_action_button .subnav,
.functional__table #actionLinkTop .sugar_action_button .subnav li,
.functional__table #actionLinkTop .sugar_action_button .subnav li a {
    background-color: var(--color-white) !important;
    text-align: left;
}

.functional__table #actionLinkTop .sugar_action_button .subnav {
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
}

.functional__table .sugar_action_button.hover.opened {
    top: 0 !important
}

.functional__table .clickMenu li ul.subnav {
    top: calc(100% + 4px) !important;
    left: 0 !important;
}

.functional__table #actionLinkTop .sugar_action_button .subnav li a:hover {
    color: var(--text-color) !important;
    background-color: var(--PB_hover-bg) !important;
}

.functional__table .suitepicon.suitepicon-action-caret {
    margin-left: 8px;
}

.table__footer {
    padding: 15px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--PB-bg-light);
    border-top: 1px solid var(--border-color);
}

.table__footer span {
    font-family: var(--body-fonts);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
    color: var(--text-color);
    display: inline-block;
}

.table__footer__buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.table__footer .table__footer__button {
    padding: 8px;
    border: none !important;
    background-color: transparent;
    cursor: pointer;
    margin: 0 !important;
}

#selectLinkTop .sugar_action_button {
    background-color: var(--PB-bg-light);
    padding: 0 4px 0 0;
    border: 1px solid transparent;
    border-radius: 4px;
    min-width: 32px;
    margin-left: 0
}

#selectLinkBottom {
    margin-right: 5px;
    position: relative;
    line-height: 0;
    min-height: 16px;
    min-width: 32px;
    margin-left: 0
}

#selectLinkBottom .sugar_action_button {
    background-color: #94A6B5;
    padding: 0 4px 0 0;
    border: 1px solid transparent;
    border-radius: 4px;
    min-width: 32px;
    margin-left: 0
}

#selectLinkTop .selectActionsDisabled {
    min-width: 32px;
    margin-left: 0px
}

#selectLinkTop li.sugar_action_button {
    padding: 0px;
    background-color: var(--primary);
    border: 1px solid transparent;
    border-radius: 4px
}

@-moz-document url-prefix() {
    #selectLinkTop li.sugar_action_button {
        padding-left: 7px
    }
}

#selectLinkBottom li.sugar_action_button {
    padding: 0px;
    background-color: #94A6B5;
    border: 1px solid transparent;
    border-radius: 4px
}

@-moz-document url-prefix() {
    #selectLinkBottom li.sugar_action_button {
        padding-left: 7px
    }
}

#selectLinkTop>.sugar_action_button>.subnav {
    background-color: var(--color-white) !important;
    border: 1px solid var(--border-color) !important;
    font-family: var(--body-fonts);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
    text-align: center;
    border-radius: 8px !important;
    margin: 0 !important;
    color: var(--text-color);
    height: auto;
}

#selectLinkTop>.sugar_action_button>.subnav a {
    padding: 5px 10px;
    color: var(--text-color) !important;
    font-family: var(--body-fonts);
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 20px !important;
    letter-spacing: -0.15px !important;
    margin: 0 !important;
    text-transform: capitalize !important;
}

#selectLinkTop>.sugar_action_button>.subnav a:hover {
    color: var(--text-color) !important;
    background-color: var(--PB-bg-light) !important;
}

#selectLinkTop .selectedRecords.label {
    color: #6a7282 !important;
    font-family: "Inter", sans-serif;
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 20px !important;
    letter-spacing: -0.15px !important;
    margin: 0 !important;
    text-transform: capitalize !important;
    padding: 0 7px !important;
}

#selectLinkTop>li>label {
    display: flex;
}

html body .evenListRowS1 {
    background-color: var(--color-white);
}

body .link,
.td__wrapper a,
body .subpanel-table a:not(.listViewThLinkS1,
    body .listViewTdToolsS1) {
    color: var(--PB_color-primary) !important;
}

.functional__table .label {
    font-family: var(--body-fonts) !important;
    font-size: 12px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 133.333% !important;
    padding: 4px 8px !important;
    border-radius: 8px !important;
}

body form#MassAssign_SecurityGroups {
    float: none;
    padding: 30px 20px;
    background: var(--PB-bg-color);
    margin-top: 24px !important;
    border-radius: 8px;
}

body #massassign_form {
    display: flex;
    gap: 30px;
}

body #massassign_form h3,
body #massassign_form h3 span {
    color: var(--title-color);
}

#massassign_form table {
    float: none;
}

body .listViewButtons .button {
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--body-fonts);
    color: var(--text-color);
    text-decoration: none;
    line-height: 1;
    border: 1px solid var(--PB-bg-color) !important;
    background-color: var(--PB-bg-color);
    margin: 0;
    transition: 0.35s all ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    outline: none !important;
    box-shadow: none !important;
    height: auto !important;
    min-height: auto !important;
    opacity: 1;
    background-color: var(--PB_color-primary) !important;
    border-color: var(--PB_color-primary) !important;
    color: var(--color-white) !important;
}

body .listViewButtons .button:hover,
body .listViewButtons .button:hover:not(#delete_button, .primary):hover {
    background-color: var(--color-primary-light) !important;
    border-color: var(--color-primary-light) !important;
    color: var(--color-white) !important;
}

@media (max-width: 767.98px) {
    body #massassign_form {
        flex-direction: column;
        gap: 10px;
    }

    .functional__table .functional__table-head {
        background-color: var(--PB-bg-color);
        padding: 15px 10px;
        gap: 5px;
    }

    .functional__table .pagination_text {
        display: none;
    }

    .functional__table-pagination button {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        border-radius: 8px;
        background-color: var(--color-white);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .functional__table-pagination button:disabled {
        opacity: .8;
    }

    .functional__table #listViewStartButton_top,
    .functional__table #listViewEndButton_top {
        display: none;
    }

    .functional__table .functional__table-filters {
        gap: 3px;
    }

    .functional__table-filters button {
        font-size: 0;
        gap: 0;
    }

    .functional__table .functional__table-pagination {
        gap: 5px;
    }

    #selectLinkTop {
        margin-right: 0 !important;
    }

    .functional__table .sugar_action_button {
        padding: 7px !important;
    }
}

/* List view mobile cards – hidden on desktop */

.list__view-mobile {
    display: none;
}

.list__view-mobile-card {
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color, #e5e7eb);
    padding: 16px;
    margin-bottom: 12px;
    font-family: var(--body-fonts, inherit);
}

.list__view-mobile-card:last-child {
    margin-bottom: 0;
}

.list__view-mobile-card__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.list__view-mobile-checkbox {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
}

.list__view-mobile-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--PB_color-primary, #2563eb);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.list__view-mobile-photo-label {
    font-size: 13px;
    color: var(--text-color, #374151);
}

.list__view-mobile-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #667085;
    margin-bottom: 4px;
}

.list__view-mobile-card__name {
    margin-bottom: 14px;
}

.list__view-mobile-name-link,
.list__view-mobile-value-link {
    font-size: 15px;
    font-weight: 700;
    color: var(--PB_color-primary, #2563eb);
    text-decoration: none;
}

.list__view-mobile-name-link:hover,
.list__view-mobile-value-link:hover {
    text-decoration: underline;
}

.list__view-mobile-name-value,
.list__view-mobile-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--title-color, #0a0a0a);
}

.list__view-mobile-card__twocol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    margin-bottom: 14px;
}

.list__view-mobile-twocol-item--right {
    text-align: right;
}

.list__view-mobile-twocol-item--right .list__view-mobile-label,
.list__view-mobile-twocol-item--right .list__view-mobile-value,
.list__view-mobile-twocol-item--right .list__view-mobile-value-link {
    justify-content: flex-end;
}

.list__view-mobile-twocol-item--right .list__view-mobile-value-link {
    display: inline-block;
}

.list__view-mobile-card__fourcol {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px 12px;
    margin-bottom: 14px;
}

.list__view-mobile-fourcol-item {
    min-width: 0;
}

.list__view-mobile-fourcol-item .list__view-mobile-value {
    font-size: 12px;
    font-weight: 700;
    word-break: break-word;
    color: var(--title-color);
}


.list__view-mobile-card__dates {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 16px;
    margin-bottom: 14px;
}

.list__view-mobile-dates-item .list__view-mobile-value {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-color);
}

.list__view-mobile-card input[type=checkbox] {
    margin: 0 !important;
}

.list__view-mobile-card__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.list__view-mobile-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--PB_color-primary);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.list__view-mobile-action:hover {
    text-decoration: underline;
}

.list__view-mobile-action-icon {
    flex-shrink: 0;
}

.list__view-mobile-empty {
    padding: 15px;
    text-align: center;
    color: var(--text-color);
    font-size: 14px;
}


@media (max-width: 991.98px) {

    /* Mobile list view: show cards, hide table */
    .functional__table .list__view-mobile {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 15px;
    }

    .functional__table .functional__table-container {
        display: none !important;
    }

    .list__view-mobile-card__fourcol {
        grid-template-columns: repeat(2, 1fr);
    }

    .list__view-mobile-card__dates {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .functional__table .list__view-mobile {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*Functional Table Style End*/

/* ===================================
   UPSHEETS PAGE STYLE END
=================================== */


/* ===================================
   EMAILS PAGE STYLE START
=================================== */
.email__page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 25px;
}

.email__page-head h3 {
    font-size: 16px;
    font-weight: 400;
    color: var(--title-color);
    margin: 0;
    line-height: 1.2;
    padding: 0 12px;
}

.email__head-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

#container.email,
#container.email div.yui-layout-doc {
    width: 100% !important;
    background-color: transparent !important;
    height: calc(100vh - 200px) !important;
}

body #container .yui-layout-unit-left .yui-layout-wrap,
body .yui-layout .yui-layout-unit div.yui-layout-bd,
body .yui-layout div.yui-layout-hd,
body .yui-layout #lefttabs,
body .yui-layout #lefttabs .yui-content {
    background-color: transparent !important;
    border: none !important;
}

body .yui-layout-unit-left.yui-resize .yui-layout-wrap .yui-layout-hd {
    padding: 0;
}

body .yui-layout .yui-layout-unit div.yui-layout-hd h2 {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    color: #4A5565;
    padding: 0 12px !important;
    background-color: transparent;
    margin: 0 0 12px 0 !important;
}

body .yui-layout #lefttabs .yui-content {
    padding: 0;
}

body .yui-layout .ygtvlabel {
    padding: 12px 12px 12px 42px !important;
    border-radius: 12px;
    /*box-shadow: 0 1px 3px 0 #0000001A;*/
    font-size: 16px;
    color: var(--text-color);
    line-height: 1;
    background-position: 12px center !important;
    background-size: 20px !important;
    display: flex;
    align-items: center;
}


body .yui-layout-unit {
    padding: 20px !important;
}

body .yui-layout .yui-layout-wrap,
body .yui-layout-unit {
    width: 100% !important;
}

/* ===================================
   EMAILS PAGE STYLE END
=================================== */


/* ===================================
   LEADS DETAIL PAGE STYLE START
=================================== */
body .panel {
    border-radius: 10px;
    border: 1px solid #E5E7EB;
    background: #FFF;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
}

.bidsTab .titleBar {
    background-color: #E8EAED;
    padding: 12px;
    color: #1E2939;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.312px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.panel-default>.panel-body {
    padding: 18px 24px 18px 24px;
}

.action-dropdown {
    position: relative;
    display: inline-flex;
    font-family: Arial, sans-serif;
}

.GMTV__card-head .action-dropdown .btn {
    border-radius: 7px !important;
    padding-inline: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.GMTV__card-content .action-dropdown .btn {
    border-radius: 7px !important;
    padding-inline: 1.5rem;
    padding-top: 7px;
    padding-bottom: 7px;
}

.action-main,
.action-toggle {
    background: #1e5bff;
    color: #fff;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    margin-right: 0px;
}

.action-toggle {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0 8px 8px 0;
}

.action-main {
    border-radius: 8px 0 0 8px;
}



.action-toggle.open i {
    transform: rotate(180deg);
}

.action-dropdown .btn+.btn {
    border-left: 1px solid var(--color-white) !important;
    margin-left: -8px;
    border-radius: 0 10px 10px 0
}

.action-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 6px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 6px 0;
    min-width: 200px;
    display: none;
    z-index: 99;
    max-height: 300px;
    overflow-y: auto;
}

.action-menu li a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.action-delete-item:hover {
    background-color: #E7000B1A !important;
    color: #E7000B !important;
    font-weight: 500 !important;
}

.action-menu li a:hover {
    background: #E4EBFE;
}

.action-menu .active {
    background: #E4EBFE !important;
    color: #4571B5 !important;
}


/*--- GMTV Upload Card Style Start ---*/
.uploaded__images-container {
    margin-left: -12px;
    margin-right: -12px;
}

.uploaded__images-container>div {
    margin: 12px 0;
    padding-left: 12px;
    padding-right: 12px;
}

.GMTV__upload-card {
    background: #fff;
    border-radius: 12px;
    /* overflow: hidden; */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.GMTV__upload-card .GMTV__card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
}

html body .GMTV__upload-card .custom-checkbox {
    font-weight: 500 !important;
}

.GMTV__upload-card .GMTV__card-image {
    background: var(--PB-bg-light);
    padding-bottom: 56%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-color);
    font-family: var(--body-fonts);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%;
    letter-spacing: -0.15px;
}

.GMTV__upload-card .GMTV__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.GMTV__upload-card .GMTV__card-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
}

.GMTV__upload-card .GMTV__upload-type {
    color: #E7000B;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    font-family: "Inter", sans-serif;
}

.GMTV__upload-card .GMTV__title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.GMTV__upload-card .GMTV__title-row h3 {
    font-size: 14px;
    margin: 0;
    color: #101828;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: -0.15px;
    font-family: "Inter", sans-serif;
}

.GMTV__upload-card .GMTV__card-menu-btn {
    font-size: 18px;
    cursor: pointer;
    color: #4A5565;
    padding: 0 5px;
}

.GMTV__upload-card .GMTV__upload-date {
    font-size: 12px;
    color: #6A7282;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.GMTV__upload-card .GMTV__menu-dropdown {
    position: absolute;
    right: 25px;
    top: 10px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 6px 0;
    margin: 0;
    width: 120px;
    display: none;
}

.GMTV__upload-card .GMTV__menu-dropdown li {
    padding: 3px 5px;
    font-size: 12px;
    cursor: pointer;
    color: #6A7282;
    font-family: "Inter", sans-serif;
}

.GMTV__upload-card .GMTV__menu-dropdown li:hover {
    background: #f1f5f9;
}

.GMTV__upload-card .GMTV__menu-dropdown li a {
    display: block;
}

/*--- GMTV Upload Card Style End ---*/

.SubPanel__table .link-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
    color: #4466AB;
}

.SubPanel__table .link-text:hover {
    text-decoration: underline;
}


/*--- SubPanel Style End ---*/



.detailView__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 30px;
    padding-top: 25px;
}

body .detailView__head .right__side {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 0;
    margin: 0;
    margin-left: auto;
}

.detailView__head h2 {
    color: var(--title-color);
    font-family: var(--body-fonts);
    font-size: 20px;
    font-weight: 500 !important;
    line-height: 120% !important;
    letter-spacing: -0.312px !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
}

.detailView__head .favorite {
    margin: 0;
    float: none;
}

body .upsheets_detail_view {
    padding: 25px;
    background-color: var(--color-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
}

.detail_nav {
    background: rgba(233, 233, 233, 0.60);
    border: 1px solid #E9E9E9 !important;
    padding: 6px 14px;
    border-radius: 6px;
    display: flex;
    height: 63px;
    padding: 0 16px;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    margin-bottom: 20px !important;

}

.detail_nav>li>a {
    gap: 8px;
    border-radius: 10px !important;
    padding: 12px !important;
    align-items: center !important;
    color: #4A5565 !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    letter-spacing: -0.31px !important;
    cursor: pointer;
    border: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.detail_nav>li>a path {
    fill: #4A5565;
}

.detail_nav>li.active>a,
.detail_nav>li>a:hover {
    background: var(--color-white) !important;
    color: #4571B5 !important;
}

.detail_nav>li.active>a path,
.detail_nav>li>a:hover path {
    fill: #4571B5;
}

.detail-view-tab-header {
    background: #E4EBFE;
    margin-top: 0px;
    padding: 15px 20px !important;
    border-radius: 8px 8px 0px 0px;
}

.tab-header-title {
    color: var(--title-color);
    font-family: var(--body-fonts);
    font-size: 18px;
    font-weight: 400 !important;
    line-height: 133.333% !important;
    letter-spacing: -0.312px;
    margin: 0;
}

body .light-color {
    color: var(--muted-color);
}

/* GMTV Cards */
.GMTV__container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-left: 35px;
    width: 100%;
    box-sizing: border-box;
}

/*--- Body Style End ---*/
.pricing__card {
    border: 1px solid #BEDBFF;
    border-radius: 10px;
    background: linear-gradient(135deg, #EFF6FF 0%, #EEF2FF 100%);
    font-family: "Inter", sans-serif;
    overflow: hidden;
}

.pricing__card .price__title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    font-size: 16px;
    font-weight: 500;
    color: #101828;
    line-height: 1.4;
    margin: 0;
    font-family: inherit;
}

.pricing__card .pricing__row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 0 14px 12px 14px;
}

.pricing__card .pricing__row>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    flex: 0 0 auto;
}

.pricing__card .pricing__row span {
    font-size: 12px;
    font-weight: 400;
    color: #155DFC;
    line-height: 1.4;
    display: block;
    font-family: inherit;
}


.pricing__card .pricing__bid {
    font-size: 24px;
    color: #101828;
    font-weight: 600;
    font-family: inherit;
}

.pricing__card .recommended__bid {
    color: #1447E6;
}

.pricing__card .pricing__percent {
    font-size: 12px;
    color: #00A63E;
    font-weight: 400;
    line-height: 1.4;
    display: block;
}


.pricing__accordion .pricing__accordion_head {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.15px;
    color: #1447E6;
    font-family: inherit;
    margin: 0;
    padding: 12px 20px;
    background-color: rgba(219, 234, 254, .5);
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    cursor: pointer;
}

.pricing__accordion_head svg {
    line-height: 1;
}


.pricing__accordion_head svg {
    transition: transform 0.3s ease;
}

.pricing__accordion_content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0 16px;
}

/* ACTIVE STATE */
.pricing__accordion.active .pricing__accordion_content {
    max-height: 300px;
    padding: 12px 16px 16px;
}

.pricing__accordion.active .pricing__accordion_head svg {
    transform: rotate(180deg);
}

/*--- Pricing Card Style End ---*/

.chatAI__card {
    padding: 15px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    border: 1px solid #E9D4FF;
    border-radius: 10px;
    background: linear-gradient(135deg, #FAF5FF 0%, #EEF2FF 100%);
    overflow: hidden;
    font-family: "Inter", sans-serif;
}

.chatAI__card .chatAI__title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    color: #101828;
    line-height: 1.4;
    font-family: inherit;
    width: 100%;
}

.chatAI__card p {
    font-size: 14px;
    color: #364153;
    letter-spacing: -0.15px;
    margin: 0;
    line-height: 1.65;
    width: 100%;
    font-family: inherit;
}

.chatAI__card a {
    background-color: #9810FA;
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: -0.15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 8px;
    line-height: 1.15;
    padding: 10px 24px;
    text-decoration: none;
    transition: 0.35s all ease-in-out;
    font-family: inherit;
}

.chatAI__card a:hover {
    filter: brightness(120%);
}

/*--- ChatAI Card Style End ---*/

.notes__card {
    border: 1px solid #FFF085;
    border-radius: 10px;
    background: linear-gradient(135deg, #FEFCE8 0%, #FFFBEB 100%);
    overflow: hidden;
    font-family: "Inter", sans-serif;
}

.notes__card .notes__head {
    padding: 20px;
    background: linear-gradient(135deg, #FEFCE8 0%, #FFFBEB 100%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.notes__card .notes__card_title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    color: #101828;
    line-height: 1.4;
    font-family: inherit;
    width: 100%;
}

.notes__card label {
    width: 100%;
}

.notes__card textarea {
    border: 1px solid #FFDF20;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 400;
    color: #364153;
    letter-spacing: -0.15px;
    line-height: 1.4;
    resize: none;
    width: 100%;
    box-sizing: border-box;
    border-radius: 8px;
}

.notes__card textarea::placeholder {
    color: #99A1AF;
}

.notes__card textarea:focus {
    outline: none;
}

.notes__card .notes__btn {
    background-color: #BAA002;
    border: none;
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: -0.15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 8px;
    line-height: 1.15;
    padding: 10px 24px;
    text-decoration: none;
    transition: 0.35s all ease-in-out;
    font-family: inherit;
    cursor: pointer;
}

.notes__card .notes__btn:hover {
    filter: brightness(120%);
}

.notes__card .notes__body {
    padding: 16px 20px;
    border-top: 1px solid #FFF085;
    ;
}

.notes__card .notes__body_title {
    font-size: 14px;
    font-weight: 500;
    color: #A65F00;
    letter-spacing: -0.15px;
    margin: 0 0 12px 0;
    line-height: 1.4;
}


.notes__card .saved__note {
    padding: 12px;
    border: 1px solid #FFF085;
    background-color: #fff;
    border-radius: 8px;
}

.notes__card .saved__note_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    font-size: 12px;
    font-weight: 400;
    font-family: inherit;
    margin-bottom: 10px;
}

.notes__card .saved__note_head span {
    display: flex;
    align-items: center;
    gap: 3px;
}

.notes__card .saved__note_head span:first-child {
    font-weight: 500;
    color: #A65F00;
}

.notes__card .saved__note_head span:last-child {
    color: #99A1AF;
}

.notes__card .saved__note p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
    color: #364153;
    letter-spacing: -0.15px;
    margin: 0;
}


.saved__note+.saved__note {
    margin-top: 12px;
}

.detail-view-field .badge {
    border-width: 1px;
    border-radius: 8px;
    padding-top: 2px;
    padding-right: 8px;
    padding-bottom: 2px;
    padding-left: 8px;
    color: #fff;
}

.notes__card .show-more-notes {
    color: #A65F00;
    margin: 10px 0px;
    text-decoration: underline;
}

#notes-body .note-hidden {
    display: none;
}


.photos__slider {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    font-family: "Inter", sans-serif;
}

.photos__slider .photos__slider-main {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    padding-bottom: 69%;
    border: 1px solid #E5E7EB;
    font-size: 0;
}

.photos__slider .photos__slider-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
    position: absolute;
    left: 0;
    top: 0;
}

.photos__slider .photos__btn-prev,
.photos__slider .photos__btn-next {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    border: none !important;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    transition: 0.3s;
}

.photos__slider .photos__btn-prev:hover,
.photos__slider .photos__btn-next:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.photos__slider .photos__btn-next {
    left: auto;
    right: 12px;
}

.photos__slider .photos__counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    font-family: inherit;
    color: #101828;
    line-height: 1.5;
}

.photos__slider .photos__slider-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    background-color: #F9FAFB;
    padding: 8px 5px;
    border-radius: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.photos__slider-thumbs::-webkit-scrollbar {
    display: none;
}

.photos__slider .photos__slider-thumbs img {
    width: 64px;
    height: 48px;
    flex: 0 0 64px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid #D1D5DC;
    transition: 0.3s;
}

.photos__slider .photos__slider-thumbs img.active {
    opacity: 1;
    border-color: #2B7FFF;
}

.photos__slider #photos__mainImage {
    cursor: pointer;
}

.gallery__modal {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery__modal-container {
    max-width: 1160px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    padding: 100px;
    background-color: #FFF;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.gallery__modal-container:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: block;
    position: absolute;
    inset: 0;
    z-index: -1;
}

.gallery__modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    z-index: 10;
}

.photos__modal .gallery__modal-container {
    padding: 60px 40px 40px;
}

.photos__modal .photos__modal-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 85vh;
}

.photos__modal .photos__modal-content img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.gallery__modal .gallery__modal-prev,
.gallery__modal .gallery__modal-next {
    padding: 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border: none !important;
}

.gallery__modal .gallery__modal-prev {
    left: 15px;
}

.gallery__modal .gallery__modal-next {
    right: 15px;
}

.gallery__modal .gallery__modal-prev img,
.gallery__modal .gallery__modal-next svg,
.gallery__modal .gallery__modal-next img,
.gallery__modal .gallery__modal-prev svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery__modal-slides {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
}

.gallery__modal-img {
    width: 100%;
    height: 100%;
    text-align: center;
    transition: 0.5s all ease-in-out;
    overflow: hidden;
    padding-bottom: 60%;
    font-size: 0;
}


.gallery__modal-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 30px;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: 0.5s all ease-in-out;
    border-radius: 10px;
}

.gallery__modal-img.active img {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    top: 0;
    cursor: zoom-in;
}

.gallery__modal-img.active img.zoomed {
    transform: scale(2);
    cursor: zoom-out;
    transition: transform 0.3s ease-in-out;
    transform-origin: center center;
}

.gallery__modal-img.active.zoomed {
    overflow: auto;
    cursor: zoom-out;
}

.gallery__modal-img.active.zoomed img {
    cursor: zoom-out;
}

.photos__slider-main {
    cursor: pointer;
}

.photos__slider-main img {
    transition: opacity 0.2s;
}

.gallery__slides-counter {
    background-color: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .5);
    font-size: 14px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    padding: 8px 15px;
    border-radius: 35px;
    color: #FFF;
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
}

@media (max-width: 1700px) {
    .gallery__modal-container {
        padding: 60px;
    }

    .gallery__modal .gallery__modal-prev,
    .gallery__modal .gallery__modal-next {
        width: 40px;
    }

    .gallery__slides-counter {
        bottom: 15px;
    }
}

/*--- Photos Slider Style End ---*/


/* SubPanel style start */

.SubPanel__table {
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    font-family: "Inter", sans-serif;
    margin-bottom: 20px;
}

.SubPanel__table .SubPanel__header {
    background-color: #E4EBFE;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 20px;
}

.SubPanel__table .SubPanel__header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.SubPanel__table .SubPanel__header-left.SubPanel__toggle {
    cursor: pointer;
    user-select: none;
}

.SubPanel__table .SubPanel__chevron {
    transition: transform 0.3s ease;
    display: inline-block;
}

.SubPanel__table .SubPanel__chevron.SubPanel__chevron-rotated {
    transform: rotate(180deg);
}

.SubPanel__table .SubPanel__header-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.SubPanel__table .SubPanel__header h3 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.44px;
    color: #101828;
    font-family: inherit;
    line-height: 1.5;
    margin: 0;
}

.SubPanel__table .SubPanel__btn {
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 500;
    font-family: inherit;
    line-height: 1;
    letter-spacing: -0.15px;
    border: 1px solid rgba(0, 0, 0, .1);
    background-color: #fff;
    color: #0A0A0A;
    transition: background-color 0.2s;
}

.SubPanel__table .SubPanel__btn:hover {
    background-color: #f5f5f5;
}

.SubPanel__table .SubPanel__btn-primary {
    background-color: #155DFC;
    border-color: #155DFC;
    color: #fff;
}

.SubPanel__table .SubPanel__btn-primary:hover {
    background-color: #0056b3;
}

.SubPanel__btn span {
    line-height: 1
}


.SubPanel__table-container {
    overflow-x: auto;
}

.SubPanel__table table {
    width: 100%;
    border-collapse: collapse;
}

.SubPanel__table thead {
    background-color: #f8f9fa;
}

.SubPanel__table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: #4A5565;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: none;
}

.SubPanel__table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    color: #4A5565;
}

.SubPanel__table tbody tr:hover {
    background-color: #f8f9fa;
}

.SubPanel__table .type-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.SubPanel__table .type-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.SubPanel__table .icon-call {
    color: #1976d2;
}

.SubPanel__table .icon-email {
    color: #7b1fa2;
}

.SubPanel__table .icon-text {
    color: #388e3c;
}

.SubPanel__table .icon-note {
    color: #616161;
}

.SubPanel__table .type-text {
    font-weight: 500;
    width: 80px;
}

.SubPanel__table .status {
    padding: 0;
    display: inline-block;
}

.SubPanel__table .status-completed,
.SubPanel__table .status-sent,
.SubPanel__table .status-delivered,
.SubPanel__table .status-logged {
    color: #00A63E;
}

.SubPanel__table .status-received {
    color: #155DFC;
}

.SubPanel__table .subject {
    max-width: 600px;
    display: block;
    color: #101828;

}

.SubPanel__table .SubPanel__pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 12px 20px;
    background-color: transparent;
    gap: 12px;
}

.SubPanel__table .pagination-info {
    font-size: 12px;
    color: #6A7282;
    font-weight: 400;
    line-height: 1;
    margin-right: 8px;
}

.SubPanel__table .pagination-btn {
    width: 25px;
    height: 25px;
    border-radius: 4px;
    border: none;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    margin: 0;
}

.SubPanel__table .pagination-btn:hover {
    background-color: #f5f5f5;
}

.SubPanel__table .pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: transparent;
}

.SubPanel__table .arrow-icon {
    width: 24px;
    height: 24px;
    color: #4A5565;
}

.SubPanel__table .type-email {
    color: #a735fa;
}

.SubPanel__table .type-call {
    color: #2367fc;
}

.SubPanel__table .type-sms {
    color: #35b866;
}

.SubPanel__table .priority {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;

}

.SubPanel__table .priority-High {
    color: #E7000B;
}

.SubPanel__table .priority-Medium {
    color: #D08700;

}

.SubPanel__table .priority-Low {
    color: #D08700;

}

.SubPanel__table .bid-status {
    font-weight: 500;
    font-style: Medium;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0px;
}

.SubPanel__table .bid-status-approved {
    background-color: #DCFCE7;
    color: #008236;
}

.SubPanel__table .bid-status-rejected {
    background-color: #FEE2E2;
    color: #A65F00;
}

.SubPanel__table .bid-status-review {
    background-color: #FEF9C2;
    color: #A65F00;
}

.SubPanel__table #top-bid-amount {
    color: #00A63E;
}

.SubPanel__table .bid-amount {
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
}

.SubPanel__table .direction {
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;

}

.SubPanel__table .direction-incoming {
    color: #155DFC;
}

.SubPanel__table .direction-outgoing {
    color: #9810FA;
}

.SubPanel__table .message-status {
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
}

.SubPanel__table .message-status-delivered {
    color: #00A63E;
}

.SubPanel__table .message-status-failed {
    color: #155DFC;
}

/*--- GMTV Modal Style Sart ---*/
.GMTV__modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: "Inter", sans-serif;
    transition: 0.35s all ease-in-out;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
}

.GMTV__modal .GMTV__modal-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, .5);
}

.GMTV__modal .GMTV__modal-container {
    background-color: #FFFFFF;
    border-radius: 10px;
    max-width: 512px;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .1);
}

.GMTV__modal .GMTV__modal-header {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid #E5E7EB;
}

.GMTV__modal .GMTV__modal-header h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.44px;
    color: #101828;
    margin: 0;
    font-family: "Inter", sans-serif;
}

.GMTV__modal .GMTV__modal-close {
    background-color: transparent;
    padding: 0;
    border: none;
    cursor: pointer;
    line-height: 1;
}


.GMTV__modal .GMTV__modal-body {
    padding: 20px 24px;
    max-height: calc(100vh - 170px);
    overflow: auto;
}

.GMTV___form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 20px;
}

.GMTV___form-group:last-child {
    margin-bottom: 0;
}

.GMTV___form-group>* {
    margin: 0;
}

.GMTV___form-group label {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    color: #364153;
    font-family: "Inter", sans-serif;
    margin: 0;
}

.GMTV___form-group .GMTV__form-element {
    background-color: #F3F3F5;
    padding: 7px 12px;
    border-radius: 8px;
    overflow: hidden;
    font-size: 14px;
    font-weight: 400;
    color: #717182;
    line-height: 1.55;
    display: flex;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #F3F3F5;
    outline: none;
    box-shadow: none;
}

.GMTV___form-group textarea.GMTV__form-element {
    height: 64px;
    resize: none;
}

.GMTV___form-group .GMTV__form-element:focus {
    border-color: #155DFC;
}

.GMTV__radios {
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 10px;
}

.GMTV__modal-footer {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    border-top: 1px solid #E5E7EB;
}

.GMTV__btn-light {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.15px;
    color: #0A0A0A;
    padding: 8px 15px;
    border: 1px solid rgba(0, 0, 0, .1);
    background-color: #FFFFFF;
    border-radius: 8px;
    transition: 0.35s all ease-in-out;
    cursor: pointer;
    text-decoration: none;
}

.GMTV__btn-light:hover {
    background-color: #f5f5f5;
}

.GMTV__btn-primary {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.15px;
    color: #FFFFFF;
    padding: 8px 15px;
    border: 1px solid #155DFC;
    background-color: #155DFC;
    border-radius: 8px;
    transition: 0.35s all ease-in-out;
    cursor: pointer;
    text-decoration: none;
}

.GMTV__btn-primary:hover {
    background-color: #0056b3;
}

.GMTV__upload-box {
    border: 2px solid #D1D5DC;
    border-radius: 10px;
    padding: 34px 18px;
    text-align: center;
    margin: auto;
    background: #F9FAFB;
    position: relative;
    width: 100%;
}

.GMTV__upload-box .GMTV__upload-icon {
    font-size: 40px;
    color: #aab0bd;
    margin-bottom: 12px;
}

.GMTV__upload-box .GMTV__upload-text {
    font-size: 16px;
    color: #101828;
    margin: 0;
    font-weight: 400;
    line-height: 1.35;
    font-family: "Inter", sans-serif;
}

.GMTV__upload-or {
    display: block;
    margin: 12px 0;
    color: #6A7282;
    font-size: 14px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}

.GMTV__upload-btn {
    padding: 10px 22px;
    border-radius: 10px;
    border: 1px solid #e1e4ea;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
}

/* Hidden file input */
.GMTV__upload-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.GMTV__members {
    width: 100%;
}

.GMTV__members .GMTV__members-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 400;
    color: #364153;
    font-family: "Inter", sans-serif;
}

.GMTV__members .GMTV__members-header a {
    color: #155DFC;
    text-decoration: none;
    font-weight: 500;
    font-family: inherit;
}

.GMTV__members .GMTV__members-list {
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    overflow-y: auto;
    height: 500px;
}

.GMTV__members .GMTV__member {
    display: flex;
    gap: 12px;
    cursor: pointer;
    padding: 10px;
}

.GMTV__member+.GMTV__member {
    border-top: 1px solid #E5E7EB;
}

.GMTV__member input {
    margin-top: 4px;
}

.GMTV__members-info strong {
    display: block;
    font-size: 16px;
    color: #101828;
    letter-spacing: -0.31px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}

.GMTV__members-info span {
    display: block;
    font-size: 14px;
    color: #6A7282;
    font-weight: 400;
    letter-spacing: -0.15px;
    font-family: "Inter", sans-serif;
}


body.modal-open {
    overflow: hidden;
}

.GMTV__modal.active {
    z-index: 99999999;
    opacity: 1;
    visibility: visible;
}

/*--- GMTV Modal Style End ---*/


.basic_info-card-top {
    display: flex;
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 10px;
    border: 0.794px solid #BEDBFF;
    background: #EFF6FF;
    margin-bottom: 20px;
    width: calc(100% - 20px);
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .basic_info-card-top {
        display: none;
    }
}

.basic_info-card-top h3 {
    color: #101828;
    font-family: var(--body-fonts);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.439px;
    margin: 0 0 12px 0;
}

.basic_info-card-top>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    gap: 5px;
}

.basic_info-card-top>div p,
.basic_info-card-top>div span {
    color: var(--text-color);
    font-family: var(--body-fonts);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.basic_info-card-top>div span {
    color: var(--title-color);
}

.basic_info-card-top .basic-ino-current-bid {
    color: #00A63E !important;
}


.right_side .vhr-card {
    box-shadow: 0px 0px 4px 1px #0000001A;
    border-radius: 10px;
    padding: 15px;
    background-color: var(--color-white);
}

.light-color {
    color: #b1b6be;
}

.fw-600 {
    font-weight: 600;
}

.mileage-span {
    font-weight: 600;
    background: #F9FAFB;
    padding: 4px 10px;
    border: 1px solid #D1D5DC;
    border-radius: 20px;
    font-size: 12px;
    line-height: 16px;
}

.vhr-report {
    padding: 8px;
    font-size: 12px;
    line-height: 16px;
    border-radius: 10px;
    font-weight: 600;
}

.vhr-report-container {
    gap: 30px;
}

@media (max-width: 1199.98px) {
    body .details___row_wrapper {
        flex-direction: column-reverse;
        row-gap: 30px;
    }

    body .details___row_wrapper:before {
        content: none;
    }

    body .details___row_wrapper>div {
        width: 100%;
        float: none;
    }

    body .GMTV__container {
        padding-left: 0;
    }

    .detailView__head {
        padding-top: 50px;
    }
}

@media (max-width: 991.98px) {
    .detailView__head {
        flex-wrap: wrap;
        justify-content: initial;
        gap: 0;
        row-gap: 20px;
    }

    .detailView__head h2 {
        font-size: 14px !important;
        font-weight: 700 !important;
    }

    .detailView__head {
        padding-top: 15px;
    }

    body .detailView__head .right__side {
        gap: 5px;
    }

    body .detailView__head .right__side .btn {
        padding: 10px 12px;
    }

    body .upsheets_detail_view {
        padding: 20px 15px;
        padding: 0;
        border: none;
        box-shadow: none;
        background-color: transparent;
    }
    body .overview-cards {
        background-color: var(--color-white);
    }

    .chatAI__card a {
        width: 100%;
    }

    .details___row_wrapper .nav-tabs {
        gap: 4px;
    }

    .details___row_wrapper .nav-tabs>li>a {
        padding: 10px 12px !important;
        background-color: transparent !important;
        font-size: 12px !important;
    }

    .details___row_wrapper .nav-tabs>li>a svg {
        display: none;
    }

    .details___row_wrapper .panel-default>.panel-body {
        overflow-x: auto;
        padding: 20px 0 !important;
    }

    .detail-view-row,
    .edit-view-row {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .overview-cards .detail-view-row-item + .detail-view-row-item,
    .overview-cards .edit-view-row-item + .edit-view-row-item {
        border-top: 1px solid #F2F4F7;
        margin-bottom: 0;
    }
    .overview-cards .detail-view-row-item,
    .overview-cards .edit-view-row-item {
        margin-bottom: 0 !important;
        padding: 15px 10px !important;
        justify-content: space-between !important;
        width: 100% ;
    }

    .detail-view-row-item .form-group,
    .edit-view-row-item .form-group {
        display: flex;
        gap: 5px;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0;
        padding: 0 !important;
    }

    .detail-view-row-item .form-group label,
    .edit-view-row-item .form-group label,
    .seller-info-edit .edit-view-label {
        color: #667085;
        font-size: 13px;
        font-style: normal;
        font-weight: 700;
        line-height: 1.5;
        letter-spacing: -0.325px;
        text-transform: uppercase;
        margin-bottom: 0;
        font-family: var(--body-fonts);
    }

    body .detail-view-row-item .detail-value,
    body .edit-view-row-item .detail-value,
    .seller-info-edit .edit-view-field {
        color: var(--title-color);
        text-align: right;
        font-size: 13px;
        font-style: normal;
        font-weight: 900;
        line-height: 1.5;
        font-family: var(--body-fonts);
    }
    body .detail_nav,
    body .detail_nav {
        background-color: transparent;
        border: none !important;
        border-bottom: 1px solid #E9E9E9 !important;
        height: auto !important;
        border-radius: 0 !important;
    }
    .details___row_wrapper .nav-tabs,
    body .detail_nav {
        padding: 0 !important;
        justify-content: space-between;
    }

    .details___row_wrapper .nav-tabs>li>a,
    body .detail_nav>li>a {
        padding: 8px 4px !important;
        background-color: transparent !important;
        font-size: 11px !important;
        white-space: nowrap;
        font-weight: 600;
        border-bottom: 2px solid rgba(0, 0, 0, 0.00) !important;
        border-radius: 0 !important;

    }
    .details___row_wrapper .nav-tabs>.active>a,
    body .detail_nav>.active>a {
        border-bottom: 2px solid #4367B0 !important;
        background: rgba(239, 246, 255, 0.30) !important;
    }

    .seller-info-edit .seller-info-col,
    .seller-info-edit {
        padding: 0 !important;
    }
 }

@media (max-width: 767.98px) {
    

    .overview-cards .detail-view-row-item {
        flex-wrap: nowrap;
        display: flex;
        width: 100% !important;
    }

    .uploaded__images-container>div {
        width: 100% !important;
    }

    .bidsTab .titleBar {
        font-weight: 700 !important;
        font-size: 14px !important;
    }

    .bidsTab .titleBar .action-dropdown .btn {
        padding: 10px 10px !important;
    }
}

/* ===================================
   LEADS DETAIL PAGE STYLE END
=================================== */





/* ===================================
    DEALS Edit View PAGE AUTOCOMPLETE Input STYLE START
=================================== */

.yui-ac-content li.yui-ac-highlight {
    color: #101828 !important;
    border-bottom: 1px solid rgba(229, 231, 235, 0.40) !important;
    background: #E4EBFE !important;
}

/* ===================================
    DEALS Edit View PAGE AUTOCOMPLETE Input STYLE END
=================================== */


/* Mobile list view: vehicle and other value links – blue link style */
.list__view-mobile-value-link {
    color: #0066cc !important;
    text-decoration: none !important;
}

.list__view-mobile-value-link:hover {
    color: #004499 !important;
    text-decoration: underline !important;
}

.list__view-mobile-value-link:visited {
    color: #551a8b !important;
}


/* ===================================
    COMPOSE EMAIL PAGE MASK STYLE START
=================================== */

body .mask {
    z-index: 999 !important;
}

body .yui-module .hd,
body .yui-panel .hd {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
}

body .yui-module .hd {
    border-radius: 10px 10px 0 0;
    color: #101828;
    font-family: var(--body-fonts);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: -0.439px;
}

body .yui-panel .bd {
    border-radius: 0 0 10px 10px;
}

/* ===================================
    COMPOSE EMAIL PAGE MASK STYLE END
=================================== */


/* Temorary style to hide action buttons in subpanel body */
.subpanel-body .action_buttons {
    display: none;
}