﻿/*Custom CSS for DSI specific changes*/

/* looking at _Layout.cshtml   All sites use Site.css and DSI.css, whitelabels will also us ???.css see qnt.css  */
/* Quantariums white label does reference this*/


/* ***** Begin Overall HTML content ***************************************************************************/

/* Change font size for html content*/
html {
    font-size: 14px;
    background-color: rgba(var(--palette-neutral-2,248, 248, 248),1);
 
}

body {
    background-color: rgba(var(--palette-neutral-2,248, 248, 248),1);

}



@media (min-width: 768px) {
    html {
        font-size: 14px;
    }
}



/* ***** End Overall HTML content ***************************************************************************/

.k-treeview {
    line-height: .5;
}

/* ***** Begin Navbar content ***************************************************************************/

/* navbar customizations (not needed unless looking for changes to navbar only*/
.navbar {
    background-color: white;
}
    
.vt-navbar-nav > li {
    float: left;
    position: relative;
    margin-left: 10px;
    font-size: 16px !important;
    list-style-type: none !important;
}
.navbar-nav > li {
    float: left;
    position: relative;
}

.navbar-light .vt-navbar-nav .active a::after {
    border-bottom: 5px solid #007bff;
    bottom: -10px;
    content: " ";
    left: 0;
    position: absolute;
    right: 0;
    
}

.navbar-light .navbar-nav .nav-link {
    color: #007bff;
}
/* ***** End Navbar content ***************************************************************************/



/* ***** Begin Kendo Specific content ***************************************************************************/

.k-grid-header {
    background-color: #007bff !important;
    color: white !important;
    /*display: block !important;*/ 
}
.k-grid .k-table-thead {
    background-color: #007bff !important;
    color: white !important;
    /*display: block !important;*/
}

    /* Kendo combobox items*/
.k-grid .k-table-md {
    line-height: 1;
}



.k-grid-list {
    font-size: 14px;
}

.k-grid td {
    white-space: nowrap;
}
#StatusGrid .k-grid-header {
 
}
    #StatusGrid .k-grid-header th {
        padding: 4px 8px;
        font-size: 12px;
        line-height: .8;
    }

#StatusGrid .k-grid-content tr {

}

#StatusGrid .k-grid-content td {
    padding: 4px 8px;
    font-size: 12px;
    line-height: .5;
}

/*.small-grid .k-grid .k-table-th {
    padding 0,0,0,0 !important;
    line-height: .2 !important;
    align-items: center !important;
}

.small-grid .k-grid .k-table-md {
    line-height: .2 !important;
    align-items: center !important;
}*/


.small-grid .k-grid-content {
    height: 66px;
}

.small-grid-active-row {
    background-color: #FFDF88 !important;
    /*color: yellow !important;*/
}


/*.appbar-content {
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 6px;
    background-color: white;
    box-shadow: 0 3.2px 7.2px 0 var(--callout-shadow-color,rgba(0, 0, 0, .132)),0 .6px 1.8px 0 var(--callout-shadow-secondary-color,rgba(0, 0, 0, .108))
}*/

/* AppBar (countOrder menu) customization*/

.k-appbar .k-button, .confirm_yes, .confirm_no {
    border-style: none;
    color: white !important;
    width: 80px !important;
    border-radius: 5px !important;
    background-color: #007bff;
    border: none;
    font-weight: 500;
    transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
    outline: 1px solid;
    outline-color: rgba(0, 123, 255, .5);
    outline-offset: 0px;
    box-shadow: inset 0 0 20px rgba(0, 123, 255, 0);
}

    .k-appbar .k-button:hover {
        border: 1px solid;
        box-shadow: inset 0 0 20px rgba(0, 123, 255, .5), 0 0 20px rgba(0, 123, 255, .2);
        outline-color: rgba(0, 123, 255, 0);
        outline-offset: 15px;
        text-shadow: 1px 1px 2px #427388;
    }    

   /*not staying this way.   just testing options*/
/*#appBarShipBtn.k-button:disabled {
    opacity: .65;
    background-color: red !important;
    pointer-events: none;
}*/

/* Kendo drawer controls
    moved rest
    leaving this if changing colors for whitelabel
*/
.active-drawer {

    background-color: white;

}




.k-drawer-item {
    font-size: 14px;
    line-height: 1;
}
.k-icon {
    line-height: 1;
}

/* this is here to indent treelist braches*/
.field-list-content li {
    border-style: none !important;
    padding: 0px 0px 0px 15px !important;
    
}

/* drawer content (custom class, must be added to drawer content*/
#drawer-content li {
    padding-left: .89em;
    /*background: 0 0;        this was causing problem removed 4/15 by mark*/
    border-radius: 0;
    border-width: 0 0 1px;
    border-color: rgba(33, 37, 41, 0.125);
    border-style: solid;
    line-height: 1em;
    padding: 1.09em .84em 1.23em .84em;
}




/*   not sure why this is here.   probably something on control panel removed 5/9/22
    #drawer-content li:last-child {
        border: 0;
        height:auto;
    }*/

/* drawer content - required to fix scroll bar on hidden tabs, DO NOT ALTER or REMOVE*/
.hidden {
    display: none;
}

.k-window {
    border-color: #007bff;
    color: var(--kendo-color-on-app-surface, #424242);
    background-color: var(--kendo-color-surface-alt, #ffffff);
    box-shadow: 0 16px 18px rgba(0, 0, 0, 0.45), 0 4px 16px rgba(0, 0, 0, 0.25) !important;
}

    .k-window .k-window-titlebar {
        border-color: #007bff;
        background-color: #007bff;
        color: white;
    }
 /*    **** End Kendo Specific content *************************************************************