:root {
    --bg-primary: #343432; /*iron black*/
    --primary: #bfc738; /*Codefusion Green*/

    --secondary: #343432;
    --primary-font: 'Montserrat', sans-serif;
    --secondary-font: 'Open Sans', sans-serif;
    --Sidebar-color: #e0e0e0;
}

/* First Load Splash Screen Styling */
.SsSplashScreen {
    position: absolute;
    top: 30vh;
    width: 100%;
    text-align: center;
    font-family: var(--secondary-font);
}

.SsSplashScreen .SplashLogoContainer {
    background-color: #e0e0e0;
    height: fit-content;
    width: fit-content;
    padding: 20px;
    border-radius: 50px;
    margin: 0 auto;
}

/* Wrapper to center the progress bar */
.SsSplashScreen .progressWrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

/* Outer bar container */
.SsSplashScreen .indeterminateBar {
    width: 350px;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

/* The animated inner bar */
.SsSplashScreen .indeterminateBar .bar {
    position: absolute;
    height: 100%;
    width: 20%;
    background-color: var(--primary);
    animation: indeterminate-animation 1.5s infinite ease-in-out;
    border-radius: 4px;
}

/* Animation keyframes */
@keyframes indeterminate-animation {
    0% {
        left: -30%;
        width: 30%;
    }

    50% {
        left: 35%;
        width: 40%;
    }

    100% {
        left: 100%;
        width: 30%;
    }
}

/* Text Styling*/
.dxbl-text {
    font-family: var(--secondary-font);
    font-weight: 400;
}

/* HyperLink Styling */
a {
    color: var(--secondary);
}

a:hover {
    color: var(--primary);
}

/* Button Styling */
.dxbl-btn-caption {
    font-family: var(--secondary-font);
    font-weight: 400;
}

.SsButton {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: white;
}

.SsButton:hover {
    background-color: white;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    transition: background-color .4s;
}

.SsButton.Submit {
    height: 40px;
    line-height: 100%;
}

/* Nav Bar Styling */
.SsNavBar {
    background-color: var(--bg-primary);
}

    .SsNavBar button.navbar-toggler {
        background-color: var(--bg-primary) !important;
    }

/* Searh Bar Styling */
.SsSearchWrapper button {
    background-color: var(--primary);
}

.SsSearchWrapper button {
    background-color: var(--primary);
}

/* Nav Profile Styling */
.SsProfile {
    color: white;
}
/* Right Side Bar Styling*/
.SsSiderbar-right {
    background-color: var(--Sidebar-color);
}

/* Tabs Styling */
.SsTabs dxbl-tab-item {
    border-style: none !important;
}
/* Side Bar Styling */
.SsSidebar {
    background-color: var(--Sidebar-color);
    border-right: 1px solid lightgrey;
}

.SsExpandCollapseIcon {
    mask-image: url("../images/CollapseButton.svg");
    -webkit-mask-image: url("../images/ExpandButton.svg");
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: currentColor;
}

.SsSidebar .SsTreeView li.dxbl-treeview-item button span.SsExpandCollapseIcon {
    transition: transform .08s;
    transform: rotate(0deg);
}

.SsSidebar .SsTreeView li.dxbl-treeview-item button[data-expanded] span.SsExpandCollapseIcon {
    transition: transform .05s;
    transform: rotate(90deg);
}

.SsSidebar .SsTreeView li.dxbl-treeview-item dxbl-expandable-container[expanded-state="False"] {
    transition: transform .08s;
    transition-property: display;
    transition-behavior: allow-discrete;
    transition-duration: 1s;
    transform: rotate(0deg);
}

.SsSidebar .SsTreeView li.dxbl-treeview-item dxbl-expandable-container[expanded-state="True"] {
    transition: transform .08s;
    transform: rotate(0deg);
    transition-property: display;
    transition-behavior: allow-discrete;
    transition-duration: 1s;
}

/* Grid Styling */
.SsGrid {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

    .SsGrid .alt-row-color {
        background-color: #eaeaea;
    }

    .SsGrid tbody tr.dxbl-grid-selected-row {
        background-color: var(--primary) !important;
    }

/* Grid Edit Popup Styling */
.SsGridEditPopup {
    min-width: 60vw;
}

.SsGridEditPopup .dxbl-popup-header {
    background-color: var(--primary) !important;
    color: white !important;
}

.SsGridEditPopup button.btn {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: white;
    height: 40px;
    line-height: 100%;
}

.SsGridEditPopup button.btn:hover {
    background-color: white;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    transition: background-color .4s;
}

.ssEditBtnContainer {
    margin-bottom: 5px;
}

/* DxPopUp Styling */
.SsPopup .dxbl-popup-header {
    background-color: var(--primary) !important;
}