﻿/* Yeti Bootstrap Overrides */
.spinner-wait {
    color: #FF6F00;
}

.btn-primary {
    border-radius: 6px !important;
}

.card {
    border-radius: 6px !important;
}

/*body {
    background-color: #f8f8f8 !important;
}
*/
.dxbl-text-edit {
    border-radius: 6px !important;
}

.alert {
    border-radius: 6px !important;
}

.dxbl-modal-title {
    font-weight: 500 !important;
}

/* Marketplace Styles */
.marketplace-container {
    display: flex;
    overflow-y: auto;
    overflow-x: hidden;
}

.marketplace-list-container {
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.marketplace-cart-container {
    min-width: 500px;
    max-width: 500px;
    background-color: #fff;
    padding: 1rem;
    border-radius: 12px;
    margin-left: 12px;
    border-color: #e4e6e6;
    border-width: 1px;
    border-style: solid;
}

.cart-button-image {
    margin-right: 0.5rem !important;
    vertical-align: middle !important;
    top: -1px !important;
}

.cart-grid {
    display: grid;
    align-items: start;
}

.cart-items-panel {
    overflow: hidden;
}

.cart-item {
    display: grid;
    grid-template-columns: 88px 1fr auto;
    gap: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
    align-items: start;
}

    .cart-item:last-child {
        border-bottom: none;
    }

.cart-item-img {
    width: 88px;
    height: 88px;
    border-radius: 8px;
    border: 1px solid;
    border-color: #E4E6E6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-item-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cart-total {
    display: grid;
    grid-template-columns: 88px 1fr auto;
    padding-bottom: 12px;
    align-items: start;
}

.cart-item-subtotal {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    font-size: 15px;
    font-weight: 600;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.cart-item-subtitle {
    font-size: 13px;
}

.cart-total-prompt {
    font-size: 18px;
    font-weight: 600;
}

.cart-total-value {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 18px;
    font-weight: 600;
}

.cart-remove-btn {
    font-size: 12px;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

    .cart-remove-btn:hover {
        color: #f04124;
    }

.cart-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    border: 1px solid;
    border-color: #E4E6E6;
}

.btn-icon-like {
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

/* Popup Animations */
#basketSlider {
    position: fixed;
    width: 300px;
    height: 100%;
    margin: 0;
    right: 0;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out; /* Define animation duration. */
    transform: translateX(-100%); /* Final visible position. */
    opacity: 1;
}

    /* Initial hidden state (off-screen to the right). */
    #basketSlider.hidden {
        transform: translateX(0);
        opacity: 0;
    }

/* Grid overrides */
dxbl-grid > .dxbl-grid-toolbar-container {
    padding-left: 8px !important;
    padding-right: 8px !important;
}

dxbl-grid {
    border-radius: 12px !important;
}

/* Marketplace */

/* Product Images */
.product-page-image {
    width: 80%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
}

.product-page-group .dxbl-group {
    border: none !important;
    padding: 0 !important;
}

.product-page-paragraph {
    font-size: 14px;
}

.product-page-accordian {
    margin-left: 12px;
    margin-right: 12px;
    width: 100%;
}

/* Document Icon */
    .pdf-icon {
    object-fit: cover;
    object-position: center top;
    height: 120px;
}

/* Produt Icons */
.list-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid;
    border-color: #E4E6E6;
}

.list-item-title {
    color: #334269 !important;
    font-weight: 600 !important;
}

.product-item-cover {
    width: 80%;
    height: auto;
    display: block;
    border-color: rgba(0,0,0,.125);
    border-radius: 8px;
}

/* Addresses */
.address-narrative {
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Tree View */
.dxbl-treeview-item-text {
    padding-left: 12px;
}

/* Schedule */
.dxbs-sc-apt-subject {
    color: #334269;
    font-weight: 600;
}

.dxbs-sc-apt-time {
    color: #000000;
}

.dxsc-apt-content {
    background-color: #C2E189;
}

.dxbs-sc-apt-description {
    color: #000000;
}

/* Button */
.dxbl-btn {
    border-radius: 6px !important;
}

.dxbl-btn-light {
    border-color: #d6d6d6 !important;
}

.edit-button-right {
    display: flex;
    justify-content: right;
}

/* Login and Security Pages */
.login-container {
    max-width: 100% !important;
}

.login-footer {
    margin-top: auto;
}

.login-image-container {
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.login-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.login-form, .login-image {
    flex: 1; /* Each takes 50%. */
    display: flex;
    justify-content: center;
    align-items: center;
}

    .login-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures image covers area without distortion. */
    }

/* Mobile Responsive: Stack vertically. */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }

    .login-image {
        display: none; /* Optional: hide image on small screens. */
    }
}

.security-logo {
    margin-top: 3rem;
    margin-bottom: 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 48px;
}

.security-form {
    width: 425px !important;
}

.login-field {
    font-size: 0.9rem;
}

.login-button {
    width: 160px !important;
}

.login-label {
    margin-bottom: 0.2rem;
}

.login-input-box {
    line-height: 1.4rem !important;
    border-radius: 6px !important;
}

.copyright-message {
    bottom: 0;
    margin-bottom: 3rem;
}

.form-control {
    font-size: 0.9rem !important;
}

/* File Upload */
.custom-drop-zone {
    padding: 0 !important;
    border-style: dashed !important;
    border-width: 2px !important;
    height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .custom-drop-zone svg {
        width: 42px;
        height: 42px;
    }

/* Spinner */
.spinner-primary {
    color: #334269;
}

/* Custoner List */
.customer-list-title {
    color: #334269 !important;
    font-weight: 600 !important;
}

/* Customer Pages */
.customer-they-owe {
    text-align: right;
    font-weight: 600 !important;
    padding-right: 8px !important;
}

.customer-you-owe {
    text-align: right;
    font-weight: 600 !important;
    padding-right: 8px !important;
}

.customer-contact-addresses-header {
    margin-bottom: -0.5rem !important;
}

/* Form Pages */
.main-div {
    overflow: hidden;
}

.form-header-toolbar-header {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.form-header-subtitle {
    font-size: 1rem !important;
}

.form-group-header {
    color: #334269 !important;
}

.form-comments-header {
    display: flex;
    flex-direction: row;
}

.form-header-edit-icon {
    font-size: 16px;
}

.form-header-left-item {
    flex-grow: 1;
    font-size: 18px;
}

.form-header-right-item {
    display: flex;
    justify-content: right;
    align-items: center;
}

.form-container {
    background-color: #FFFFFF;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 0.3rem;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

.form-heading {
    font-weight: 600;
    font-size: 0.9rem;
}

.form-subtotal {
    font-size: 1.2rem;
}

.form-subtotal-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.form-toolbar-header {
    border-bottom: 1px solid;
    padding-bottom: 0.8em;
    border-color: #E4E6E6;
    display: block;
}

.form-tabs-header {
    padding-top: 0.8em;
}

.form-body-container {
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
    /*height: 100vh;*/
}

.editor-row-layout {
    margin-left: -12px;
    margin-right: -12px;
}

.editor-toolbar-header {
    border-bottom: 1px solid;
    padding-bottom: 0.7em;
    border-color: #E4E6E6;
    display: block;
}

.editor-text-danger {
    color: #df382c;
}

.submit-terms {
    border: 2px solid #e4e4e4;
    padding: 12px;
    background-color: #f8f8f8;
}

.dialog-message-body {
    margin-left: 12px;
    margin-right: 12px;
}

.form-readonly-field {
    background-color: #f8f8f8 !important;
}

.ezy-button-icon {
    color: #334269;
}

/* List Elements */
.list-row-split {
    display: flex;
    align-items: center;
}

.list-row-column {
    flex: 50%;
}

.list-header {
    display: flex;
    flex-direction: row;
}

.list-header-image {
    padding-top: 8px;
    padding-right: 8px;
    color: #929292;
}

.list-search-box {
    width:400px !important;
}

.list-label {
    padding-top: 6px;
}

.inactive-row {
    text-decoration: line-through;
}

.list-command-icon {
    color: #2c3e50;
}

.list-info-icon {
    font-size: 22px;
    color: #3498db;
    vertical-align: middle;
}

.highlighted-item {
    color: red;
}

.list-highlighted-cell-good {
    background-color: #d1f2eb !important;
}

.list-highlighted-cell-bad {
    background-color: #fadbd8 !important;
}

.list-highlighted-cell-warning {
    background-color: #fdebd0 !important;
}

/* Bootstrap Overrides */
.modal-title {
    font-size: 1rem !important;
}

.modal-body {
    padding-left: 4px !important;
    padding-right: 4px !important;
}

.col-form-label {
    font-weight: 400 !important;
}

.hidden-item {
    display: none !important;
}

.card-header {
    padding-left: 12px !important;
}

/* Company Logo */
.company-logo {
    object-fit: cover;
}

.company-logo-button {
    padding-left: 0.75rem !important;
}

.company-logo-image {
    padding-left: 0.75rem !important;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

/* Main Layout and Navigation */
html, body, #app
{
    height: 100%;
    margin: 0;
    overflow: hidden;
    overscroll-behavior: none;
}

body {
    font-size: 0.9rem !important;
}

#app,
.dnh-header-container,
.dnh-content-container,
.dnh-content-container > .dnh-content,
.dnh-content > div:not(.modal-backdrop) {
    background-color: var(--bs-body-bg);
}

    #app.root {
        min-width: 375px;
    }

.body-background {
    background-color: #f8f8f8 !important;
}

.wait-cursor-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    flex-direction: column;
}

.wait-cursor-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    flex-direction: column;
}

/* Blazor specific */

#components-reconnect-modal > h5 {
    color: black;
    padding: 1rem;
    margin: 0 !important;
}

    #components-reconnect-modal > h5 > a {
        color: black;
        text-decoration: underline;
    }

/* Header */
.dnh-header-container:after {
    content: '';
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    height: 3.5rem;
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.12);
    z-index: 1030;
    pointer-events: none;
}

.dnh-header.navbar {
    position: relative;
    height: 3.5rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
    border: none;
    background-color: inherit;
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
}

.navbar-toggler:hover {
    background-color: #ffffff !important;
}

    .dnh-header.navbar .navbar-toggler {
        outline: none;
        box-shadow: none;
        padding: 0.5rem;
        margin: 0.5rem;
        border-radius: 50%;
    }

        .dnh-header.navbar .navbar-toggler .navbar-toggler-icon {
            mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 4.5C0 3.67157 0.671573 3 1.5 3H22.5C23.3284 3 24 3.67157 24 4.5C24 5.32843 23.3284 6 22.5 6H1.5C0.671573 6 0 5.32843 0 4.5Z' fill='currentColor' fill-opacity='1'/%3E%3Cpath d='M0 12.5C0 11.6716 0.671573 11 1.5 11H22.5C23.3284 11 24 11.6716 24 12.5C24 13.3284 23.3284 14 22.5 14H1.5C0.671573 14 0 13.3284 0 12.5Z' fill='black' fill-opacity='1'/%3E%3Cpath d='M24 20.5C24 19.6716 23.3284 19 22.5 19H1.5C0.671573 19 0 19.6716 0 20.5C0 21.3284 0.671573 22 1.5 22H22.5C23.3284 22 24 21.3284 24 20.5Z' fill='currentColor' fill-opacity='1'/%3E%3C/svg%3E%0A");
            -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 4.5C0 3.67157 0.671573 3 1.5 3H22.5C23.3284 3 24 3.67157 24 4.5C24 5.32843 23.3284 6 22.5 6H1.5C0.671573 6 0 5.32843 0 4.5Z' fill='currentColor' fill-opacity='1'/%3E%3Cpath d='M0 12.5C0 11.6716 0.671573 11 1.5 11H22.5C23.3284 11 24 11.6716 24 12.5C24 13.3284 23.3284 14 22.5 14H1.5C0.671573 14 0 13.3284 0 12.5Z' fill='black' fill-opacity='1'/%3E%3Cpath d='M24 20.5C24 19.6716 23.3284 19 22.5 19H1.5C0.671573 19 0 19.6716 0 20.5C0 21.3284 0.671573 22 1.5 22H22.5C23.3284 22 24 21.3284 24 20.5Z' fill='currentColor' fill-opacity='1'/%3E%3C/svg%3E%0A");
            background-color: #334269 !important;
            background-image: none;
            min-height: 1.5rem !important;
            height: 1.5rem !important;
            width: 1.5rem !important;
            display: block;
        }

    .dnh-header.navbar .dnh-btn-container {
        margin-left: auto;
        align-items: center;
    }

.dnh-header .logo-image {
    margin-left: 0.5rem;
    display: flex;
    margin-right: 0.75rem;
}

    .dnh-header .logo-image .logo-img {
        width: 123px;
        height: 18px;
        background-image: url(../images/eb_logo_RGB_main_long_teal_lime.png);
        display: block;
    }

.theme-blazing-dark .dnh-header .logo-image .logo-img,
.theme-cyborg .dnh-header .logo-image .logo-img,
.theme-darkly .dnh-header .logo-image .logo-img,
.theme-slate .dnh-header .logo-image .logo-img,
.theme-solar .dnh-header .logo-image .logo-img,
.theme-superhero .dnh-header .logo-image .logo-img {
    background-image: none;
    background-color: var(--bs-body-color);
    -webkit-mask: url(../images/logo.svg) no-repeat center;
}

.dnh-header .logo-image .logo-sec-img {
    width: 115px;
    height: 34px;
    background-color: var(--bs-body-color);
    -webkit-mask: url(../images/logo-sec.svg) no-repeat center;
    mask: url(../images/logo-sec.svg) no-repeat center;
    display: block;
}

.dnh-header .logo-sep {
    margin: 0 0.75rem;
    background: currentColor;
    opacity: 0.15;
    width: 1px;
    height: 2rem;
}

.download-btn {
    padding: .5rem .75rem .5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    border: none;
    line-height: 1.125rem;
    text-decoration: none;
    display: flex;
    align-items: center;
}

@media (max-width: 767.98px) {
    .download-btn {
        padding-left: .5rem;
        padding-right: .5rem;
    }

        .download-btn .wd-download-icon {
            margin-right: 0;
        }

        .download-btn span:not(.wd-download-icon) {
            display: none;
        }
}

.wd-download-icon {
    display: block;
    width: 1.125rem;
    height: 1.125rem;
    background-color: currentColor;
    mask-image: url("../images/download.svg");
    -webkit-mask-image: url("../images/download.svg");
    margin-right: 0.5rem;
    fill: currentColor;
}

.wd-theme-icon {
    width: 1rem;
    height: 1rem;
    background-color: var(--bs-body-color);
    mask-image: url("../images/theme.svg");
    -webkit-mask-image: url("../images/theme.svg");
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

.theme-settings:hover .wd-theme-icon {
    background-color: currentColor;
}

/* Breadcrumbs */
.wd-breadcrumbs-container {
    height: 3.5rem;
    display: block;
    border: 0;
    border-radius: 0;
    padding: 0;
    margin: 0;
    font-weight: normal;
}

.wd-breadcrumbs {
    max-width: 1920px;
    position: relative;
    height: 3.5rem;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin: 0 auto;
}

    .wd-breadcrumbs .items {
        margin-left: 280px;
        display: flex;
        align-items: center;
        padding: 1rem 1.5rem;
    }

        .wd-breadcrumbs .items > * {
            display: inline-block;
            font-size: 1rem;
            opacity: 0.6;
            margin-right: 0.8rem;
            white-space: nowrap;
        }

        .wd-breadcrumbs .items > a {
            color: inherit;
            text-decoration: none;
        }

        .wd-breadcrumbs .items > span {
            cursor: default;
        }

            .wd-breadcrumbs .items > span.separator {
                border-style: solid;
                border-width: 5px !important;
                border-top-color: transparent !important;
                border-right-color: transparent !important;
                border-bottom-color: transparent !important;
                border-color: currentColor;
                width: 0;
                height: 0;
                margin-top: 0.1rem;
                margin-right: 0.5rem;
            }

            .wd-breadcrumbs .items > span:last-child {
                display: none;
            }

@media (max-width: 1199.98px) {
    .wd-breadcrumbs-container:after {
        content: '';
        position: fixed;
        left: 0;
        top: 3.5rem;
        right: 0;
        height: 3.5rem;
        box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.12);
        z-index: 1025;
        pointer-events: none;
    }

    .wd-breadcrumbs .items {
        margin-left: 0;
        padding: 1rem 1.5rem;
    }
}

@media (max-height: 479.98px) {
    .wd-breadcrumbs-container {
        display: none;
    }

        .wd-breadcrumbs-container + .dnh-content-container {
            height: calc(100% - 3.5rem);
        }
}

/* Alert Overrides */
.alert {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

/* SideBar */
.sidebar {
    position: fixed;
    top: 3.5rem;
    bottom: 0;
    width: 280px;
    overflow: hidden;
    padding-bottom: 0;
    background-color: #f8f8f8 !important;
    line-height: 2.5rem;
    z-index: 1029;
    height: 100% !important;
}

    .sidebar > div {
        width: 280px;
    }

    .sidebar .info-wrapper {
        font-size: 0.9em;
        margin-left: 5px;
        padding: 0.5rem 0.6rem;
        position: relative;
        width: 245px;
    }

        .sidebar .info-wrapper:after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            border-top: 1px solid currentColor;
            opacity: 0.15;
        }

.nav-item {
    padding: 12px;
}


@media (min-width: 1200px) {
    .dnh-content.sidebar-hidden .sidebar,
    .dnh-content.sidebar-shown .sidebar {
        transition: width 0.2s ease-in-out;
    }

    .dnh-content.sidebar-hidden .sidebar {
        width: 0;
    }

    .wd-breadcrumbs.sidebar-hidden .items,
    .wd-breadcrumbs.sidebar-shown .items,
    .dnh-content.sidebar-hidden .main,
    .dnh-content.sidebar-shown .main {
        transition: all 0.2s ease-in-out;
    }

    .wd-breadcrumbs.sidebar-hidden .items,
    .dnh-content.sidebar-hidden .main {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 1199.98px) {
    .sidebar {
        position: fixed;
        left: 0;
        top: 3.5rem;
        height: calc(100% - 3.5rem);
        transform: translateX(-100%);
        padding-bottom: 0;
    }

        .sidebar .dx-scrollable {
            height: calc(100% - 3.5rem);
        }

    .sidebar-shown .sidebar,
    .sidebar-hidden .sidebar {
        transition: transform 0.1s ease-out;
    }

    .sidebar-shown .sidebar {
        transform: translateX(0);
    }

    .sidebar .info-wrapper {
        display: none;
    }
}

.sidebar-tree {
    width: calc(100% - 1.5rem);
}

    .sidebar-tree > .nav-pills > .nav-item:first-of-type {
        padding-top: 1rem;
    }

    .sidebar-tree > .nav-pills > .nav-item:last-of-type {
        padding-bottom: 1rem;
    }

.dxbs-tree.sidebar-tree .nav-pills > .nav-item .nav-link {
    border-radius: 0px;
    display: flex;
    align-items: center;
}

.dxbs-tree.sidebar-tree > .nav-pills > .nav-item > .nav-link {
    font-size: 1rem !important;
    font-weight: 600 !important;
    padding: .25rem 1rem .25rem .125rem;
}

    .dxbs-tree.sidebar-tree > .nav-pills > .nav-item > .nav-link[aria-expanded] ~ ul {
        margin: 0;
    }

.dxbs-tree.sidebar-tree .nav-pills > .nav-item .nav-link:not(.active) {
    color: inherit !important;
}

.dxbs-tree.sidebar-tree .nav-pills .nav-item .nav-link {
    text-transform: none;
}

    .dxbs-tree.sidebar-tree .nav-pills .nav-item .nav-link > span:not(.expand-btn):not(.image):not(.badge) {
        flex: 1;
    }

    .dxbs-tree.sidebar-tree .nav-pills .nav-item .nav-link > span.expand-btn {
        margin-right: 4px;
    }

    .dxbs-tree.sidebar-tree .nav-pills .nav-item .nav-link > span.badge {
        flex: 0;
        border-radius: 0.25rem !important;
        min-width: 3em;
    }

.dxbs-tree.sidebar-tree > ul.nav ul.nav {
    margin: 0 !important;
}

    .dxbs-tree.sidebar-tree > ul.nav ul.nav .nav-item {
        padding-bottom: 0;
    }

    .dxbs-tree.sidebar-tree > ul.nav ul.nav .nav-link {
        font-size: 0.825rem;
        font-weight: 400;
        padding: 0 1rem;
    }

    .dxbs-tree.sidebar-tree > ul.nav ul.nav ul.nav .nav-link {
        padding: 0 1rem 0 2rem;
    }

.dxbs-tree.sidebar-tree .badge {
    margin: 0;
    border: 0 !important;
    padding: 3px 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.dxbs-tree.sidebar-tree .item-ctp > .nav-link > .badge {
    color: rgba(var(--bs-dark-rgb),var(--bs-text-opacity)) !important;
    background-color: var(--bs-warning) !important;
    letter-spacing: 0.025em;
}

.dxbs-tree.sidebar-tree .item-maintenance > .nav-link > .badge {
    color: var(--bs-white) !important;
    background-color: var(--bs-orange) !important;
    letter-spacing: 0.025em;
    min-width: auto !important;
}

.sidebar .nav-pills .nav-item {
    margin: 0;
}

.dxbs-tree.sidebar-tree .nav-pills > .nav-item > .nav-link:not(.active) {
    background-image: none !important;
}

.dxbs-tree.sidebar-tree .nav-pills > .nav-item > .nav-link {
    border: none !important;
}

.dxbs-tree.sidebar-tree .nav-pills .nav-item.dx-badge-preview .nav-link > span.badge {
    min-width: inherit;
    font-weight: 700;
    color: #212529 !important;
    background-color: #ffc107 !important;
}

/* Search */
.search-editor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0 1rem 0 2.1rem;
    width: 280px;
    height: 3.5rem;
    min-height: 3.5rem;
    border: 0;
    border-radius: 0;
    box-shadow: inset -140px -8px 30px -100px rgba(0, 0, 0, 0.08);
}

    .search-editor .dxbs-textbox {
        flex-grow: 1;
    }

        .search-editor .dxbs-textbox input {
            background-color: transparent;
            border: 0;
            border-radius: 0;
            box-shadow: none;
            font-size: 1rem;
            outline: 0;
            padding: 0;
            width: 100%;
            height: 32px;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

.theme-blazing-dark .search-editor .dxbs-textbox input::placeholder {
    color: #888888;
}

.search-editor .icon {
    display: inline-block;
    opacity: 0.6;
    background-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    background-position: center center;
    background-color: currentColor;
    margin: 0 0 0 4px;
}

.search-editor .icon-search {
    cursor: pointer;
    width: 24px;
    height: 24px;
    mask-image: url("../images/Search.svg");
    -webkit-mask-image: url("../images/Search.svg");
}

.search-editor .icon-cancel-search {
    cursor: pointer;
    width: 18px;
    height: 18px;
    mask-image: url("../images/CancelSearch.svg");
    -webkit-mask-image: url("../images/CancelSearch.svg");
}

.search-results {
    transition: transform 0.1s ease-in-out;
    transform: translateY(-100%);
}

    .search-results.shown {
        padding: 1rem 2.1rem;
        position: relative;
        transform: translateY(0);
    }

    .search-results ul {
        display: flex;
        flex-direction: column;
        font-size: 1rem;
        padding: 0;
    }

        .search-results ul > li {
            list-style: none;
            padding-bottom: 1rem;
        }

            .search-results ul > li:last-child {
                padding-bottom: 0;
            }

            .search-results ul > li > a {
                color: inherit;
                padding: 0;
            }

                .search-results ul > li > a:first-child {
                    display: block;
                }

            .search-results ul > li > :not(:first-child) {
                display: inline-block;
                font-size: 0.9em;
                opacity: .75;
            }

            .search-results ul > li > a:not(:first-child) {
                border-bottom: 1px dashed;
                font-size: 0.9em;
                opacity: .75;
            }

                .search-results ul > li > a:not(:first-child):hover {
                    text-decoration: none;
                }

            .search-results ul > li > span.link-separator {
                border-radius: 0;
                border-style: solid;
                border-width: 5px !important;
                border-left-color: currentColor !important;
                border-top-color: transparent !important;
                border-right-color: transparent !important;
                border-bottom-color: transparent !important;
                width: 0;
                height: 0;
                margin: 0 0.2rem 0 0.4rem;
                padding: 0;
            }

    .search-results.shown:after {
        content: '';
        position: absolute;
        left: 5px;
        bottom: 0;
        border-top: 1px solid currentColor;
        opacity: 0.15;
        width: 295px;
        height: 0;
    }

/* Content */
.dnh-content-container {
    height: calc(100% - 3.5rem);
    overflow-y: auto;
    overscroll-behavior: none;
    position: relative;
}

    .dnh-content-container.animated {
        scroll-behavior: smooth;
    }

.dnh-content {
    margin: 0 auto;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: stretch;
    overflow: hidden;
}

    .dnh-content .main {
        -webkit-overflow-scrolling: touch;
        margin-left: 280px;
        width: calc(100% - 280px);
    }

.modal-open .main {
    -webkit-overflow-scrolling: auto;
}

.dnh-content .main > .content {
    padding: 0.7rem 1rem 0;
    margin-bottom: 1rem;
}

.dnh-content .main > .content-footer {
    height: 1em;
}

@media (max-width: 1199.98px) {
    .dnh-content .main {
        margin-left: 0;
        width: 100%;
    }

    .dnh-content .main {
        display: flex;
        flex-flow: column nowrap;
    }

        .dnh-content .main > .content {
            flex: 1 1 auto;
            /*padding: 1.1rem 1.5rem 0 1.5rem;*/
        }
}

/* Content Modal */
.dnh-content-modal.modal-backdrop {
    opacity: 0;
    pointer-events: none;
    top: 3.5rem;
    z-index: 1026;
}

    .dnh-content-modal.modal-backdrop.modal-backdrop-shown,
    .dnh-content-modal.modal-backdrop.modal-backdrop-hidden {
        transition: opacity 0.2s ease-in-out;
    }

    .dnh-content-modal.modal-backdrop.modal-backdrop-shown {
        cursor: pointer;
        pointer-events: all;
        opacity: 0.5;
    }

/* Theme Switcher */
.themeswitcher-container {
    background-color: inherit;
    position: absolute;
    top: calc(3.5rem + 1px);
    right: 0;
    width: 320px;
    height: 0;
    max-height: calc(100vh - 3.5rem);
    overflow: hidden;
    z-index: 1029;
}

.themeswitcher-container-shown,
.themeswitcher-container-hidden {
    transition: height 0.2s ease-in-out;
}

.themeswitcher-container-shown {
    height: calc(100vh - 3.5rem);
}

@media (max-width: 1199.98px) {
    .themeswitcher-container {
        position: fixed;
        top: 3.5rem;
        width: 320px;
        height: calc(100% - 3.5rem);
        transform: translateX(100%);
    }

    .themeswitcher-container-shown,
    .themeswitcher-container-hidden {
        transition: transform 0.2s ease-in-out;
    }

    .themeswitcher-container-shown {
        transform: translateX(0);
    }
}

/* Page */
.wd-page {
    display: flex;
    flex-flow: row nowrap;
    margin-left: -2rem;
    margin-right: -2rem;
}

    .wd-page .wd-page-content {
        flex: 1 1 auto;
        overflow: hidden;
        padding-right: 2rem;
        padding-left: 2rem;
        margin-right: 240px;
    }

.sidebar-shown .wd-page .wd-page-content,
.sidebar-hidden .wd-page .wd-page-content {
    transition: max-width 0.2s ease-in-out;
}

.sidebar-hidden .wd-page .wd-page-content {
    max-width: 1700px;
}

.wd-page .wd-page-content .wd-anchor {
    scroll-margin-top: 2rem;
    scroll-snap-margin-top: 2rem;
}

/* Page NavPanel */
.wd-page-right-container {
    flex: 1 0 auto;
    width: 220px;
    position: fixed;
    right: calc((100% - 1920px) / 2 + 40px);
    top: 7rem;
    bottom: 0;
    pointer-events: none;
}

.wd-page-nav .nav-pills {
    padding: 1.5rem 0;
    pointer-events: initial;
}

    .wd-page-nav .nav-pills .nav-link {
        border-radius: 0;
        border: none;
        font-size: .875rem;
        color: inherit;
        background: none;
        padding: .2195rem .75rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .wd-page-nav .nav-pills .nav-link.active {
            color: inherit;
            position: relative;
            transform: scale(1);
        }

            .wd-page-nav .nav-pills .nav-link.active:before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 3px;
                height: 100%;
                background-color: var(--bs-primary);
            }

            .wd-page-nav .nav-pills .nav-link.active:after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: currentColor;
                opacity: 0.05;
                z-index: -1;
            }

        .wd-page-nav .nav-pills .nav-link .badge:empty,
        .wd-page-nav .nav-header .badge:empty {
            display: none;
        }

        .wd-page-nav .nav-pills .nav-link .badge,
        .wd-page-nav .nav-header .badge {
            margin-left: 0.3em;
            border: 0;
            padding: 3px 4px;
            color: #fff;
            background-color: #a1a6ab;
            font-size: 0.75rem;
            font-weight: 400;
            border-radius: 0.25rem;
            min-width: 2.7em;
        }

.wd-page-nav .nav-header .badge {
    margin-left: 8px;
}

.wd-page-nav .nav-header {
    display: none;
    pointer-events: initial;
}

.wd-page-nav .nav-title {
    font-size: 1rem;
    font-weight: 600;
    padding: .5rem .75rem;
}

@media (max-width: 1920.02px) {
    .wd-page-right-container {
        right: 40px;
    }
}

@media (max-width: 1599.98px) {
    .wd-page {
        flex-flow: column nowrap;
        margin: 0;
    }

        .wd-page .wd-page-content {
            order: 1;
            padding-top: 0;
            padding-right: 0;
            padding-left: 0;
            margin-right: 0;
            overflow: visible;
        }

            .wd-page .wd-page-content .wd-anchor {
                scroll-margin-top: calc(2.875rem + 2rem);
                scroll-snap-margin-top: calc(2.875rem + 2rem);
            }

    .wd-page-right-container {
        display: none;
    }
}

/* Page Section */
.wd-page-section {
    margin-bottom: 2.5rem;
}

.wd-page-section-title .wd-anchor {
    opacity: 0;
    transition: opacity 150ms;
    width: 1.5rem;
    margin-left: -1.4rem;
    display: inline-block;
    text-decoration: none !important;
    text-align: center;
}

    .wd-page-section-title .wd-anchor:before {
        content: "#";
    }

@media (min-width: 1200px) {
    .wd-page-section-title .wd-anchor {
        width: 1.5rem;
        margin-left: -1.4rem;
    }
}

.wd-page-section-title > h1:hover .wd-anchor,
.wd-page-section-title > h2:hover .wd-anchor {
    opacity: 1;
}

.wd-page-section > .card {
    margin-top: 1rem;
    box-shadow: 0px 2px 8px 0 rgba(0, 0, 0, 0.08);
    position: static;
}

    .wd-page-section > .card > .card-header {
        padding: 4px 0 0;
    }

    .wd-page-section > .card > .card-header {
        padding: 0;
        border-bottom: 0;
    }

.theme-blazing-berry .wd-page-section > .card > .card-header > .nav-tabs > .nav-item > .nav-link.active,
.theme-blazing-dark .wd-page-section > .card > .card-header > .nav-tabs > .nav-item > .nav-link.active,
.theme-office-white .wd-page-section > .card > .card-header > .nav-tabs > .nav-item > .nav-link.active,
.theme-purple .wd-page-section > .card > .card-header > .nav-tabs > .nav-item > .nav-link.active,
.theme-materia .wd-page-section > .card > .card-header > .nav-tabs > .nav-item > .nav-link.active {
    background: none;
}

.theme-lumen .wd-page-section > .card > .card-header > .nav-tabs > .nav-item > .nav-link {
    margin-top: 0;
}

.theme-materia .invalid .dxbs-input-group input.form-control,
.theme-materia .invalid .dxbs-input-group textarea.form-control {
    box-shadow: 0 2px 0 #e51c23;
}

.theme-materia .modified.valid .dxbs-input-group input.form-control,
.theme-materia .modified.valid .dxbs-input-group textarea.form-control {
    box-shadow: 0 2px 0 #4caf50;
}

.wd-page-section > .card > .card-body {
    padding: 0;
    display: flex;
    flex-direction: row;
}

.wd-page-section > .card > .card-header > .nav-tabs {
    padding: 1px 0 0 16px;
}

    .wd-page-section > .card > .card-header > .nav-tabs > .nav-item > .nav-link {
        font-size: 0.875rem;
        padding-top: .6rem;
        padding-bottom: .4rem;
    }

.wd-page-section > .card > .card-header .wd-page-section-toolbar {
    align-self: center;
    margin-right: 0.6rem;
}

.wd-page-section.no-code .wd-page-section-component-area .component-container {
    padding: 1rem 0 0;
}

.wd-page-section.h-scroll .wd-page-section-code-area {
    overflow-x: auto;
}

.wd-page-section-component-area {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    width: 100%;
}

    .wd-page-section-component-area .wd-text {
        font-size: 0.75rem;
        opacity: 0.75;
    }

    .wd-page-section-component-area p.wd-text {
        margin-bottom: 0;
    }

    .wd-page-section-component-area .wd-text b {
        font-weight: 600;
    }

.popup-wd-events .popup-wd-events-button {
    width: 80px;
}

.popup-wd-events .dxbs-modal-footer {
    flex-wrap: nowrap;
}

.popup-wd-events-checkbox {
    width: 100%;
}

.wd-page-section-component-area .cw-240 {
    max-width: 240px;
    width: 100%;
}

.wd-page-section-component-area .minw-0 {
    min-width: 0;
}

.wd-page-section-component-area .text-decoration-underline {
    text-decoration: underline;
}

.wd-page-section-component-area .cw-320 {
    max-width: 320px;
    width: 100%;
}

.wd-page-section-component-area .cw-400 {
    max-width: 400px;
    width: 100%;
}

.wd-page-section-component-area .cw-480 {
    max-width: 480px;
    width: 100%;
}

.wd-page-section-component-area .cw-640 {
    max-width: 640px;
    width: 100%;
}

.wd-page-section-component-area .cw-800 {
    max-width: 800px;
    width: 100%;
}

.wd-page-section-component-area .cw-880 {
    max-width: 880px;
    width: 100%;
}

@media (min-width: 899.98px) {
    dxbl-modal > .dxbs-modal > .dxbs-popup.pw-800 {
        max-width: 800px;
        width: 800px;
    }
}

.wd-page-section-component-area .chi-220 {
    height: 220px !important;
}

.wd-page-section-component-area .ch-360 {
    height: 360px;
}

.wd-page-section-component-area .ch-480 {
    height: 480px;
}

.wd-page-section-component-area .ch-720 {
    height: 720px;
}

.wd-page-section-component-area .max-h-220 {
    max-height: 220px;
}

.wd-page-section-component-area .max-h-420 {
    max-height: 420px;
}

.wd-page-section-component-area .fs-825 {
    font-size: 0.825rem;
}

.wd-page-section-component-area .tm-8 {
    opacity: 0.8;
}

.wd-page-section-component-area .options-container {
    border-left: 0 !important;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    min-height: 2.8rem;
}

.wd-page-section-component-area .options-container,
.wd-page-section-component-area .option-group {
    border-right: 0 !important;
    border-top: 0 !important;
    padding: 9px 2rem calc(9px - 0.35rem);
}

.wd-page-section.h-scroll .wd-page-section-component-area .component-container {
    overflow-x: auto;
}

.wd-page-section-component-area .options-container .option-component {
    display: flex;
    align-items: center;
    margin-right: 0.75rem;
    margin-bottom: 0.35rem;
}

    .wd-page-section-component-area .options-container .option-component.small-spacing {
        margin-right: 0.375rem;
    }

    .wd-page-section-component-area .options-container .option-component:last-child {
        margin-right: 0;
    }

    .wd-page-section-component-area .options-container .option-component .ow-100 {
        width: 100px;
    }

    .wd-page-section-component-area .options-container .option-component .ow-120 {
        width: 120px;
    }

    .wd-page-section-component-area .options-container .option-component .ow-150 {
        width: 150px;
    }

    .wd-page-section-component-area .options-container .option-component .ow-180 {
        width: 180px;
    }

.wd-page-section-component-area > .w-100,
.wd-page-section-component-area > .dxbs-gridview {
    align-self: start;
}

.wd-page-section-component-area .component-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    min-height: 240px;
    width: 100%;
    padding: 2rem;
}

    .wd-page-section-component-area .component-container > .w-100,
    .wd-page-section-component-area .component-container > .dxbs-gridview {
        align-self: start;
    }

.wd-page-section-component-area .options-container .option-component.option-component-button > label {
    display: none;
}

.wd-page-section-component-area .options-container .option-component.option-component-check {
    flex-direction: row;
}

    .wd-page-section-component-area .options-container .option-component.option-component-check > dxbl-check {
        margin-right: 0.5rem;
    }

    .wd-page-section-component-area .options-container .option-component.option-component-check > label {
        margin-right: 0 !important;
    }

.wd-page-section-component-area .option-group {
    border-bottom: 0 !important;
}

    .wd-page-section-component-area .option-group:first-child {
        border-left: 0 !important;
    }

@media (max-width: 1142px) {
    .wd-page-section-component-area .option-group,
    .wd-page-section-component-area .options-container .option-group .option-component > dxbl-spinedit,
    .wd-page-section-component-area .options-container .option-group .option-component > dxbl-combobox,
    .wd-page-section-component-area .options-container .option-group .option-component > div,
    .wd-page-section-component-area .options-container .option-group .option-component > div > button {
        width: 100% !important;
    }
}

.wd-page-section-component-area .option-group .option-group-caption {
    text-align: start;
    font-weight: bold;
    white-space: nowrap;
}

.wd-page-section-component-area .option-group .option-group-content {
    display: flex;
    flex-direction: row;
}

    .wd-page-section-component-area .option-group .option-group-content .option-component > label {
        white-space: nowrap;
    }

.wd-page-section-component-area .options-container .option-component.option-button-group .option-component.option-component-button,
.wd-page-section-component-area .options-container .option-component.option-button-group .option-component.option-component-button:last-child {
    margin-bottom: 0;
}

@media (max-width: 479.98px) {
    .wd-page-section-component-area .options-container .option-component > dxbl-check {
        width: 100% !important;
    }

    .wd-page-section-component-area,
    .wd-page-section-component-area .component-container {
        min-height: 120px;
    }

        .wd-page-section-component-area .options-container,
        .wd-page-section-component-area .option-group .option-group-content {
            flex-direction: column;
            padding-bottom: 0.5rem;
        }

            .wd-page-section-component-area .options-container .option-component {
                flex-direction: column;
                margin-right: 0;
                margin-bottom: 0.6rem;
                width: 100% !important;
            }

                .wd-page-section-component-area .options-container .option-component.small-spacing {
                    margin-right: 0;
                    margin-bottom: 0.4rem;
                }

                .wd-page-section-component-area .options-container .option-component.option-component-button,
                .wd-page-section-component-area .options-container .option-component.option-button-group .option-component.option-component-button,
                .wd-page-section-component-area .options-container .option-component.option-button-group {
                    margin-bottom: 0.6rem;
                }

                    .wd-page-section-component-area .options-container .option-component.option-component-button.small-spacing,
                    .wd-page-section-component-area .options-container .option-component.option-button-group .option-component.option-component-button.small-spacing,
                    .wd-page-section-component-area .options-container .option-component.option-button-group.small-spacing {
                        margin-bottom: 0.3rem;
                    }

                    .wd-page-section-component-area .options-container .option-component.option-component-button > label {
                        display: none;
                    }

                .wd-page-section-component-area .options-container .option-component > label {
                    margin-right: 0 !important;
                    width: 100%;
                }

                .wd-page-section-component-area .options-container .option-component > dxbl-spinedit,
                .wd-page-section-component-area .options-container .option-component > dxbl-combobox,
                .wd-page-section-component-area .options-container .option-component > div,
                .wd-page-section-component-area .options-container .option-component > div > button {
                    width: 100% !important;
                }

                .wd-page-section-component-area .options-container .option-component .dxbs-dropdown-edit {
                    margin-bottom: 2px;
                }

        .wd-page-section-component-area .cw-320,
        .wd-page-section-component-area .cw-400,
        .wd-page-section-component-area .cw-480 {
            max-width: 100%;
        }
}

.wd-page-section-code-area {
    position: relative;
    width: 100%;
    min-height: 240px;
    display: flex;
    flex-grow: 1;
}

    .wd-page-section-code-area > .card {
        width: 100%;
        border: 0;
    }

        .wd-page-section-code-area > .card > .card-body {
            padding: 0;
            min-height: 1px;
        }

            .wd-page-section-code-area > .card > .card-body,
            .wd-page-section-code-area > .card > .card-body > pre {
                display: flex;
            }

                .wd-page-section-code-area > .card > .card-body > pre {
                    margin-bottom: 0;
                }

                    .wd-page-section-code-area > .card > .card-body > pre > code {
                        padding: 1rem !important;
                    }

                    .wd-page-section-code-area > .card > .card-body > pre,
                    .wd-page-section-code-area > .card > .card-body > pre > code {
                        width: 100%;
                    }

        .wd-page-section-code-area > .card > .card-header {
            background: transparent;
            display: flex;
            align-items: start;
            font-size: 0.75rem;
            font-weight: 400;
            padding: 0.45rem 1.2rem;
        }

            .wd-page-section-code-area > .card > .card-header .nav-item {
                display: flex;
            }

            .wd-page-section-code-area > .card > .card-header .nav-link {
                display: flex;
                align-items: center;
                padding: 0.3rem 0.5rem;
                margin-right: 0.7em;
            }

                .wd-page-section-code-area > .card > .card-header .nav-link:not(.active) {
                    color: inherit;
                }

            .wd-page-section-code-area > .card > .card-header .btn.btn-sm {
                margin-left: 8px;
            }

            .wd-page-section-code-area > .card > .card-header .copy-code,
            .wd-page-section-code-area > .card > .card-header .doc-link {
                font-size: 0.75rem;
            }

            .wd-page-section-code-area > .card > .card-header .btn.btn-sm.copy-code {
                margin-left: auto;
            }

            .wd-page-section-code-area > .card > .card-header .copy-code > span,
            .wd-page-section-code-area > .card > .card-header .doc-link > span {
                display: inline-block;
                vertical-align: middle;
            }

                .wd-page-section-code-area > .card > .card-header .copy-code > span:last-child,
                .wd-page-section-code-area > .card > .card-header .doc-link > span:last-child {
                    margin-left: 0.3rem;
                }

@media (max-width: 1199.98px) {
    .wd-page-section-code-area > .card > .card-header .copy-code > span:last-child,
    .wd-page-section-code-area > .card > .card-header .doc-link > span:last-child {
        display: none;
    }
}

.wd-page-section-code-area .icon {
    opacity: 0.6;
    background-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    background-position: center center;
    background-color: currentColor;
}

.wd-page-section-code-area .icon-doc {
    width: 16px;
    height: 16px;
    mask-image: url("../images/Document.svg");
    -webkit-mask-image: url("../images/Document.svg");
}

.wd-page-section-code-area .icon-copy {
    width: 16px;
    height: 16px;
    mask-image: url("../images/Copy.svg");
    -webkit-mask-image: url("../images/Copy.svg");
}

.wd-page-section-code-area .more-code > .btn {
    margin: 0.6em 0;
    padding: 0 0.2em;
}

    .wd-page-section-code-area .more-code > .btn:before {
        content: '...';
        display: block;
        margin-top: -0.5em;
        font-size: 0.8em;
    }

.wd-page-section-status-text {
    font-style: italic;
    margin-top: 0.5rem;
}

.wd-page-section-description {
    margin-top: 1.5rem;
}

    .wd-page-section-status-text a,
    .wd-page-section-description a {
        text-decoration: underline;
    }

/* Code Editor */
.hljs {
    background-color: transparent !important;
    padding: 0 !important;
}

.theme-solar .hljs,
.theme-superhero .hljs {
    background-color: rgba(255,255,255,0.8) !important;
}

/* Products */
.wd-products .row > div {
    margin-bottom: 1.5rem;
}

.wd-products .wd-product {
    cursor: pointer;
    display: block;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    height: 100%;
    margin: 0;
    text-decoration: none;
}

    .wd-products .wd-product:hover {
        transform: translate(0, -6px);
        transition: all .2s ease-out;
        box-shadow: 0 0.25rem 0.25rem rgba(0,0,0,0.1) !important;
    }

.wd-products-description > h2 {
    margin-bottom: 24px;
}

.wd-products-description p a {
    text-decoration: underline;
}

.wd-products .wd-product .wd-product-info {
    display: inline-block;
    font-size: 13px;
    opacity: 0.8;
}

.wd-products.theme-blazing-berry .wd-product {
    background: #f9f8fc;
}

.wd-product-icon {
    width: 40px;
    height: 40px;
    background-color: currentColor;
    opacity: 0.8;
}

.wd-product-icon-grid {
    mask-image: url("../images/landing/DataGrid.svg");
    -webkit-mask-image: url("../images/landing/DataGrid.svg");
}

.wd-product-icon-pivot {
    mask-image: url("../images/landing/PivotGrid.svg");
    -webkit-mask-image: url("../images/landing/PivotGrid.svg");
}

.wd-product-icon-charts {
    mask-image: url("../images/landing/Charts.svg");
    -webkit-mask-image: url("../images/landing/Charts.svg");
}

.wd-product-icon-scheduler {
    mask-image: url("../images/landing/Scheduler.svg");
    -webkit-mask-image: url("../images/landing/Scheduler.svg");
}

.wd-product-icon-editors {
    mask-image: url("../images/landing/Editors.svg");
    -webkit-mask-image: url("../images/landing/Editors.svg");
}

.wd-product-icon-navigation {
    mask-image: url("../images/landing/Navigation.svg");
    -webkit-mask-image: url("../images/landing/Navigation.svg");
}

.wd-product-icon-reports {
    mask-image: url("../images/landing/Reports.svg");
    -webkit-mask-image: url("../images/landing/Reports.svg");
}

.wd-product-icon-upload {
    mask-image: url("../images/landing/Upload.svg");
    -webkit-mask-image: url("../images/landing/Upload.svg");
}

.wd-product-icon-richedit {
    mask-image: url("../images/landing/RichEdit.svg");
    -webkit-mask-image: url("../images/landing/RichEdit.svg");
}

/* Icons */
.dnh-icon {
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-right: 9px !important;
    margin-left: -3px !important;
    background-color: currentColor;
}

.dnh-icon-expand,
.dnh-icon-collapse {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: currentColor;
}

.dnh-icon-collapse {
    mask-image: url("../images/CollapseButton.svg");
    -webkit-mask-image: url("../images/CollapseButton.svg");
}

.dnh-icon-expand {
    mask-image: url("../images/ExpandButton.svg");
    -webkit-mask-image: url("../images/ExpandButton.svg");
}

/* Target Container */
.target-container {
    flex-grow: 1;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: -2rem;
    padding: 2rem;
    width: calc(100% + 4rem);
}

    .target-container .target-caption {
        text-transform: uppercase;
        text-align: center;
        font-weight: 600;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

/* Upload Container */
.upload-container,
.upload-container > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* DropDown */
.dxbs-editor-dropdown .dxbs-editor-dropdown-body > * {
    border: none !important;
}

/* Flyout */
#section-Placement .component-container {
    padding: 0.75rem;
}

/* Misc */
.validation-errors {
    padding-left: 0;
    list-style-position: inside;
}

.validation-message {
    color: red;
}

.online-only-warning {
    margin-top: 32px;
    margin-bottom: 40px;
    padding: 16px 16px 0 66px;
    max-width: 1024px;
}

    .online-only-warning > img {
        width: 36px;
        height: 36px;
        position: absolute;
        top: 21px;
        left: 16px;
    }

    .online-only-warning .info-caption {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .online-only-warning .info-description {
        font-size: 14px;
        margin-bottom: 16px;
    }

.top-bar-button {
    background-color: none !important;
    border: none !important;
    padding: 10px !important;
    font-size: 16px !important;
    cursor: pointer !important;
    height: 40px !important;
    width: 40px !important;
    color: #5C5F62 !important;
}

    .top-bar-button:hover {
        background-color: #F6F6F7 !important;
    }

.top-bar-link {
    padding-top: 3px;
    /* color: #18bc9c; */
    color: #2c3e50;
}

.btn-round {
    background: #334269;
    text-align: center;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #FFFFFF;
    text-decoration: none
}

.btn-round-switch {
    background: #DCEDFF;
    text-align: center;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #FFFFFF;
    text-decoration: none
}

.btn-round-large {
    background: #D3D3D3;
    text-align: center;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    vertical-align: middle;
}

.btn-top-bar {
    background: #dee2e6;
    text-align: center;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #2c3e50;
    text-decoration: none;
    padding-left: 12px;
    padding-right: 12px;
}

/* Bootstrap Overrides */
.badge {
    border-radius: 6px !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
    font-size: 0.8rem !important;
}

.card {
    padding-bottom: 4px !important;
}

.dropdown-item {
    font-size: 14px !important;
    font-weight: 400 !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

    .dropdown-item:hover {
        background-color: #F6F6F7 !important;
    }

.dropdown-menu {
    z-index: 10000000 !important;
}

.dropdown-menu-right {
    right: 1rem;
    left: auto;
}

.dropdown-menu-selected-item {
    font-weight: 600 !important;
}

.dropdown-menu-right-indent {
    right: 3.5rem;
    left: auto;
}

.user-profile-group {
    padding-top: 4px;
}

.user-profile-header {
    font-size: 0.9rem;
    font-weight: 600;
    vertical-align: middle;
}

.user-profile-user-name {
    font-size: 0.9rem;
    font-weight: 400;
    vertical-align: middle;
}

.switch-user-header {
    font-size: 0.9rem;
    font-weight: 400;
    vertical-align: middle;
}

/* Nav Menu */
.dnh-navmenu {
    border-right: solid;
    border-width: 1px;
    border-color: #E4E6E6;
    height: 100%;
    padding-top: 12px !important;
    padding-left: 0px !important;
    padding-right: 8px !important;
}

.dnh-navmenu .nav-pills {
    background-color: #FFFFFF !important;
}

.dxbl-treeview-item-text {
    font-size: 14px !important;
    line-height: 2rem !important;
}

.dxbl-treeview-item-container {
    padding-left: 24px !important;
    padding-right: 24px !important;
    border-radius: 12px !important;
}

.nav-link.active {
    opacity: 0.5;
}

/* Selected Nav Menu item. */
.dxbl-treeview .dxbl-treeview-item > .dxbl-treeview-item-content > .dxbl-treeview-item-container:not(.dxbl-disabled):not(:disabled).dxbl-active::before {
    /*background-color: #2c3e50 !important;*/
    background-color: #99a1a8 !important;
}

/* Security elements. */
.validation-summary-errors ul {
    padding-left: 0 !important;
    list-style: none !important;
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
}

.validation-summary-errors {
    padding: 0.75rem 1.25rem;
    position: relative;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    color: #78281f;
    background-color: #fadbd8;
    border-color: #f8cdc8;
}

/* Dashboard */
.dashboard-icon {
    color: #2c3e50 !important;
    line-height: 1.4 !important;
}

.dashboard-card {
    border-radius: 12px !important;
}

.dashboard-item-text-lg {
    font-size: 1.2rem !important;
    vertical-align: middle;
}

.dashboard-item-text {
    font-size: 0.9rem !important;
    vertical-align: middle;
}

.dashboard-item-link {
    text-decoration: none !important;
    font-size: 0.9rem !important;
}

.dashboard-item-text-alert {
    color: red !important;
}

.v-h {
    visibility: hidden !important;
}

/* Grid Settings */
.grid-toolbar {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    height: 30px !important;
}

.cart-grid.dxbl-grid {
    border: none !important;
}

.dnhconnect-grid-hiddenheader {
    display: none;
}

.mobile-grid-toolbar {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    background-color: #FFFFFF;
}

.dnhconnect-grid-row:hover, .dnhconnect-grid-row:hover > td {
    background-color: #E6E6E6 !important;
    cursor: pointer;
}

.dnhconnect-grid td {
    border-left-width: 0px !important;
    border-right-width: 0px !important;
}

.dnhconnect-grid th {
    border-left-width: 0px !important;
    border-right-width: 0px !important;
}

.dnhconnect-grid:hover > th {
    text-decoration: none !important;
}

.dxbl-grid-header-row {
    background-color: #ffffff !important;
}

.dxbl-grid-header-content {
    line-height: 2rem !important;
}

.dxbl-grid .dxbl-grid-table > tbody > tr > td, .dxbl-grid .dxbl-grid-table > tbody > tr > th, .dxbl-grid .dxbl-grid-table > tfoot > tr > td, .dxbl-grid .dxbl-grid-table > tfoot > tr > th, .dxbl-grid .dxbl-grid-table > thead > tr > td, .dxbl-grid .dxbl-grid-table > thead > tr > th {
    line-height: 1.6rem !important;
}


.header-container {
    flex-shrink: 0;
}

.body-container {
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 1rem;
}

.main {
    background-color: #F8F8F8 !important;
}

.treeview-item-text-container {
    font-size: 1rem !important;
}

.dnhconnect-card-subitem {
    font-size: 0.8rem !important;
}
