/**
 * global css file included in every page
 */

*{
    /* Lightweb Font Family */
    font-family: 'Outfit', sans-serif;
}
*::selection{
    /* New Markup Color */
    background: #3f51b5;
    color: #fff;
}

html{
    height: 100%;
}
body{
    display: flex;
    /*background-color: var(--bs-body-bg);*/
    background: linear-gradient(120deg, #000 0%, #3e2d00 200%);
    height: 100%;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{
    color: #b78400;
}
a{
    text-decoration: none;
    /*color: var(--bs-primary);*/
    color: #b78400;
}

.unselectable *{
   -webkit-tap-highlight-color: transparent;

   -moz-user-select: -moz-none;
   -khtml-user-select: none;
   -webkit-user-select: none;

   /*
     Introduced in IE 10.
     See http://ie.microsoft.com/testdrive/HTML5/msUserSelect/
   */
   -ms-user-select: none;
   user-select: none;
}

/* Side and Top Navigation */
.side-navigation{
    width: 220px;
    height: 100%;
    /*background: var(--bs-tertiary-bg);*/
    position: relative;
    border-top-right-radius: var(--bs-border-radius);
    border-bottom-right-radius: var(--bs-border-radius);
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    padding: 0;
}
.brand-logo{
    max-width: 100%;
    max-height: 80px;
    margin: 40px 0px;
}
.side-navigation .nav-link{
    font-size: 16px;
    color: grey;
    width: 100%;
}
.side-navigation .nav-link:hover{
    background-color: #1e190b;
}
.side-navigation .nav-link.active {
    /*background-color: var(--bs-secondary-bg);*/
    color: white;
}
.side-navigation .icon-link{
    gap: 2.5rem;
}
.side-navigation .copyright{
    color: grey;
    position: absolute;
    bottom: 0;
    left:0;
    font-size: 12px;
    padding: 10px;
}
.side-navigation .nav-link .bi::before, .side-navigation [class*=" bi-"]::before, .side-navigation [class^=bi-]::before{
    vertical-align: 0.125em;
}

.top-navigation .nav{
    padding: 0px 10px;
}
.top-navigation .nav-link{
    font-size: 20px;
    color: var(--bs-secondary-text-emphasis);
    padding: 20px 10px;
}
.top-navigation .nav-link:hover{
    color: var(--bs-primary);
}
.top-navigation .top-brand-logo{
    max-width: 100%;
    max-height: 50px;
}

.tl-subnav{
    display: flex;
    gap: 3rem;
    margin: 20px;
}
.tl-subnav-item{
    color: grey;
}
.tl-subnav-item.active{
    color: white;
}

/* General Form AND Choices.JS overwrites */
.form-control, .input-group-text, .form-select, 
.choices__inner, .choices__input, .choices__list--dropdown, .choices__list[aria-expanded]{
    background-color: #1e1e1e;
    border: none;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted{
    background-color: #292929;
}
div.choices, .is-open .choices__inner{
    border-radius: var(--bs-border-radius);
}
.choices__list--multiple .choices__item{
    background-color: var(--bs-primary);
    color: black;
    margin-bottom: 0 !important;
}
.choices__list--multiple .choices__button{
    filter: invert(1);
    border-left: 0 !important;
}
.choices__list--multiple .choices__item.is-highlighted{
    background-color: var(--bs-primary);
}

@media (max-width: 1200px){
    body{
        display:block;
    }
    .sidenav-toggle, .top-brand-logo{
        display: block !important;
    }
    .side-navigation{
      position:fixed; inset:0 auto 0 0;
      transform:translateX(-100%);
      transition:transform .25s ease;
      z-index:1000;
    }
    .side-navigation.open{
        transform:translateX(0); 
      box-shadow:0 8px 34px rgba(0,0,0,.2);
    }
    .main{
        width:100% !important;
    }
}

.tl-gradient{
    background: linear-gradient(120deg, var(--bs-tertiary-bg) 0%, #3e2d00 100%);
}
.tl-gradient-secondary{
    background: linear-gradient(120deg, var(--bs-tertiary-bg) 0%, #3e2d00 200%);
}
.tl-gradient-tertiary{
    background: linear-gradient(120deg, #000 0%, #3e2d00 200%);
}

/* Pages Default Section */
.lw-section{
    background-color: var(--bs-tertiary-bg);
    border-radius: var(--bs-border-radius);
    padding: 30px;
    margin-top: 30px;
}
@media (max-width: 575px){
    .lw-section{
        padding: 10px;
    }
}


/* TL Loader */
/* ===== Trackleads Top Loader ===== */
#tl-top-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 2147483647;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 120ms ease, visibility 120ms ease;
}

#tl-top-loader::before {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  height: 100%;
  width: 35%;
  background: #b78400;
  animation: tlTopLoaderMove 900ms ease-in-out infinite;
  will-change: transform;
}

#tl-top-loader.is-visible {
  opacity: 1;
  visibility: visible;
}

@keyframes tlTopLoaderMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(400%); }
}



/*
#lightwebNotificationsPopup{
    background-color: var(--bs-secondary-bg);
    position: fixed;
    top:55;
    right: 5;
    padding: 10px;
    border-radius: var(--bs-border-radius);
    border-top-right-radius: 0px;
}
.notification-list-item{
    background-color: var(--bs-secondary-bg);
    filter: brightness(1.03);
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    color: #616161;
    min-width: 350px;
    margin-bottom: 10px;
}
.notification-list-item:hover{
}
.notification-list-item-title{
    font-size: 18px;
}
.notification-list-item-timestamp{
    float: right;
    font-size: 12px;
}
.notification-list-item-timestamp-div{
    min-height: 21px;
}
*/
