﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */


/* 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*/


/* there was an issues with listboxes and ddlistboxes putting bad characters as bullets.  Below code Attempts to prevent it.  2/2025*/
.k-listbox .k-item::before {
    content: none !important;
    display: none !important;
}



a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    /*margin-bottom: 5px;*/
    height: 100vh;
    width: 100%;
    max-width: 1350px;
    /*min-width: 950px;*/
    min-width: 1235px;
    overflow-y:hidden;
}

.footer {
    margin-bottom: -40px;
    height: 40px;
    position: absolute;
    /*bottom: 0;*/
    width: 100%;
    line-height: 40px; /* Vertically center the text there */
    white-space: nowrap;
}

.k-appbar{
    flex-flow:nowrap!important;
}


.container-fluid {
    padding-right: 0px;
}


.appbar-content {
    border-radius: 4px;
    overflow: hidden;
    height:41px;
    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))
}

.k-drawer-container {
    height: 100%;
}

.drawer-level-content {
    height: calc(100vh - 167px);
}

.k-drawer-content {
    min-width:1100px;
    margin-left:0px;
    background-color: rgba(var(--palette-neutral-2,248, 248, 248),1);
}
.active-drawer {
    border-radius: 4px;
    overflow: hidden;
    height: calc(100vh - 310px);
    padding-top: 5px;
    padding-bottom: 5px;
    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))
}

.active-drawer-content {
    padding: 10px 10px 10px 15px;
    height: 100%;
}

.extra-drawer-style {
    padding-top: 1px !important;
    height: 100%;
    padding-right: 0px !important;
}

/* grid styles
-------------------------------------------------- */
.k-grid-pager {
    height: 50px;
}


.k-icon-lg {
    font-size:48px
}



.k-window {
    box-shadow: 13px 12px 6px 0px rgb(0,0,0,0.4);
    border-radius: 10px;
}

.question-mark {
    display: inline-block;
    width: 20px; /* Adjust size as needed */
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    background-color: #f0f0f0; /* Adjust background color as needed */
    cursor: pointer;
    margin-left: 5px; /* Adjust spacing as needed */
}

.question-mark-tt {
    position: relative;
    cursor: pointer;
    display: inline-block;
    width: 20px; /* Adjust size as needed */
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    background-color: #f0f0f0; /* Adjust background color as needed */
    cursor: pointer;
    margin-left: 5px; /* Adjust spacing as needed */
}
    .question-mark-tt::after {
        content: attr(data-tooltip);
        position: absolute;
        bottom: 100%;
        left: 50%;
        width:200px;
        transform: translateX(-50%);
        background-color: #f0f0f0;
        color: black;
        padding: 5px;
        border-radius: 3px;
        display: none;
    }
.question-mark-tt:hover::after {
    display: block;
}

/*.k-drawer {
    background-color: #E4F1F5;
}*/