:root {
    --bg-primary: #343432; /*iron black*/
    --primary-color: #79975b; /*Elm green*/
    --primary: #79975b; /*Elm green*/
    --primary-font: 'Montserrat', sans-serif;
    --secondary-font: 'Open Sans', sans-serif;
}

.alt-item {
    background-color: #F2F3F5;
}

.ssCard-header {
    background-color: var(--primary-color);
    color: white;
    font-size: 22px;
    font-weight: bold;
}

.top-row 
{
    background-color: var(--bg-primary);
}

.ssCard {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    padding: 0 !important;
}

.bg-primary 
{
    background-color: var(--bg-primary) !important;
}

.table-primary, .table-primary > th, .table-primary > td {
    background-color: #79975b14;
}

.card {
    border-radius: 0px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.sidebar {
    background-color: #e0e0e0;
    border-right: 1px solid lightgrey;
}

.ssGridRow:nth-child(odd) {
    background-color: #F5F5F5;
}

.ssgrid {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.dxbl-grid-header-row {
    font-family: var(--primary-color);
    font-weight: 700;
}

.ssEditBtn {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
    height: 40px;
    line-height: 100%;
}

.ssEditBtnContainer {
    margin-bottom: 5px;
}

.ssEditBtn:hover {
    background-color: white;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    transition: background-color .4s;
}

.dxbl-text {
    font-family: var(--secondary-font);
    font-weight: 400;
}

.dxbl-modal > .dxbl-modal-root > .dxbl-popup > .dxbl-modal-content 
{
    border: none;
}

.ssGridEditPopup {
    min-width: 60vw;
}

.dxbl-popup-header {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.dxbl-treeview .dxbl-treeview-item > .dxbl-treeview-item-content > .dxbl-treeview-item-container 
{
    border-bottom: 1px solid lightgrey;
    border-radius: 0px;
}
/*Seedpark.css file*/
.profile .avatar {
    /*Without this Seedspark icon disappears in black backgrounds*/
    background-color: var(--bg-primary) !important;
    border-radius: 40px;
    cursor: pointer;
    max-width: 40px;
    transition: all 0.2s;
}

.profile .avalert {
    position: relative;
}

    .profile .avalert.alerts:before {
        background-color: red;
        border: 1px solid white;
        border-radius: 1em;
        content: "";
        display: block;
        font-size: 10px;
        height: 16px;
        line-height: 15px;
        position: absolute;
        right: 7px;
        text-align: center;
        top: 7px;
        width: 16px;
        z-index: 100;
    }

.profile .avatar:hover {
    opacity: 0.8;
}

.profile .avatar:active {
    opacity: 0.5;
}

.profile .nav-tabs {
    border: none;
}

.profile .nav-link, .profile li {
    cursor: pointer;
    padding: 10px;
}

    .profile li:not(.nav-item) {
        background-color: #2C3E50
    }

    .profile .nav-link:hover, .profile li:hover {
        opacity: 0.6;
    }

.profile .dropdown {
    background: inherit;
    border: 1px solid #e9e9e9;
    color: #000;
    display: flex;
    flex-direction: column;
    position: absolute;
    padding: 10px;
    right: 5px;
    top: 55px;
    transition: all 0.2s;
}

    .profile .dropdown a {
        margin: 2px 0;
    }

/*DEMO BANNER CSS for MainLayout*/
.demo-banner {
    font-size: 24px;
    background-color: #000000;
    color: #ff0000;
    width: 300px;
    text-align: center;
    border-radius: 15px;
    font-weight: BOLD;
}

/*FileBrowser*/
.custom-drop-zone {
    border-style: dashed;
    border-width: 2px !important;
}

.file-field {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px; /* space between grid items */
    justify-content: center;
    padding: 20px 40px;
}

.file-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 15px;
}

.file {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.file-name {
    border: none;
    overflow:hidden;
}

.file-box-content {
    width: 250px;
    max-width: 250px;
    height: 250px;
    box-shadow: 5px 5px 5px 5px #888;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
}

.file-box-content-top {
    height: 70% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: solid 1px lightgrey;
}

.file-box-content-bottom {
    width: 100%;
    height: 30% !important;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0.5rem;
    text-align: center;
    background-color: transparent;
    background-color: #F5F5F5 !important;
}

.no-files-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 150px;
    text-align: center;
    width: auto !important;
    padding: 2rem;
}