﻿:root {
  --item-chunk-bg-dark: #21212b;
  --item-chunk-bg: #efefef;
  --container-width: 1219px;
  --takeover-bg: #fff;
  --takeover-bg-dark: #1a1a20;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 10px;
}
@media screen and (max-width: 1024px) {
  .container {
    padding: 0;
  }
}

body {
  padding-bottom: 0px;
}
body header > div {
  max-width: var(--container-width);
  margin: 0px auto;
  padding-right: 75px;
}
body #top-nav > div {
  max-width: var(--container-width);
  margin: 0px auto;
  padding-right: 75px;
}

#trait-combos-below,
#trait-combos-above {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 250px;
  margin: 15px 0;
}

body {
  position: relative;
}
body:not(.prvk) > div[style]:not(#lgg-tooltip) {
  position: absolute !important;
  top: 400px !important;
  overflow: visible !important;
  bottom: 0 !important;
}
body:not(.prvk) > div[style]:not(#lgg-tooltip) > div {
  position: sticky !important;
  top: 10px !important;
}

#trait-combos > h2 {
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 0px #000;
}
#trait-combos #faq-nudge {
  background-image: linear-gradient(to bottom, #3a9 0%, #3a6 100%);
  color: #fff;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5333333333);
  font-weight: bold;
  font-size: 16px;
  border-radius: 4px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5333333333);
  margin-bottom: 10px;
  padding: 5px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 2px;
  font-style: italic;
  margin-top: 10px;
}
#trait-combos #faq-nudge > p {
  margin: 0;
  padding: 0;
}
#trait-combos #faq-nudge > p > a {
  color: #ccc;
}

#combo-container #nav {
  position: sticky;
  top: 10px;
  width: 300px;
  float: left;
  max-height: calc(100vh - 20px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #666 #333;
}
#combo-container #nav #crafted-toggle {
  cursor: pointer;
  user-select: none;
  margin-bottom: 5px;
}
#combo-container #nav #crafted-toggle:hover {
  color: #fff;
}
#combo-container #nav #crafted-toggle i {
  color: #f70;
}
#combo-container #nav ul > li > div {
  cursor: pointer;
}
#combo-container #nav ul > li > div:hover {
  color: #fff;
}
#combo-container #nav ul > li > div.collapsed > i.fa-caret-down:before {
  content: "\f0da";
}
@media screen and (max-width: 1024px) {
  #combo-container #nav {
    float: none;
  }
  #combo-container #nav ul {
    display: none;
  }
}
#combo-container #season-container {
  margin-left: 330px;
}
#combo-container #season-container > #asdfasdf {
  background-color: #131315;
  height: 15px;
  position: sticky;
  top: 0;
  z-index: 4;
  margin-bottom: -15px;
}
#combo-container #season-container > h4.section-collapser {
  position: sticky;
  top: 10px;
  box-shadow: 0px 2px 0px #4a4a5b;
}
@media screen and (max-width: 1024px) {
  #combo-container #season-container {
    margin-left: 0;
  }
}

div.weapon {
  margin-bottom: 20px;
  margin-top: 20px;
}
div.weapon > a {
  display: grid;
  grid-template-areas: "icon name" "icon count";
  grid-template-columns: 50px auto;
  grid-template-rows: 30px 20px;
  column-gap: 10px;
  align-items: flex-start;
  text-decoration: none !important;
}
div.weapon > a > img {
  width: 50px;
  height: 50px;
  border: 1px solid #333;
  grid-area: icon;
}
div.weapon > a > strong {
  font-size: 16px;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5333333333);
  grid-area: name;
  vertical-align: top;
}
div.weapon > a > em {
  grid-area: count;
  color: #eee;
}
div.weapon > div {
  overflow-x: auto;
  width: 100%;
}
div.weapon > div > table img {
  width: 40px;
  height: 40px;
}
div.weapon > div > table td {
  text-align: center;
  width: 50px;
  text-shadow: 1px 1px 0px #000;
  font-weight: bold;
  color: #ccc;
}
div.weapon > div > table td:nth-child(1) {
  padding: 0 5px;
}

h4.section-collapser {
  border-radius: 4px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  padding: 5px 10px;
  margin: 0px;
  margin-bottom: 1px;
  color: #333;
  background-color: var(--item-chunk-bg);
  user-select: none;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5333333333);
  padding-left: 5px;
  grid-area: header;
  white-space: nowrap;
  transition: background-color;
  transition-duration: 0.5s;
  will-change: background-color;
  margin-bottom: 5px;
  position: sticky;
  top: 10px;
  z-index: 5;
}
h4.section-collapser:hover {
  font-weight: bold;
  background-color: #eee;
  color: #f70;
}
h4.section-collapser > i {
  width: 25px;
  text-align: center;
}
h4.section-collapser.collapsed > i.fa-caret-down:before {
  content: "\f0da";
}

body.dark h4.section-collapser {
  background-color: var(--item-chunk-bg-dark);
  color: #ddd;
  text-shadow: 1px 1px 1px #000;
}
body.dark h4.section-collapser:hover {
  background-color: #37374d !important;
  color: #f70;
}

*.collapse, *.collapsing {
  transition: all 0.3s;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///G:/Projects/Light/MAIN/Light.Web.MVC/Content/trait-combos.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AACA;EACI;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;AAEA;EALJ;IAMQ;;;;AAIR;EACI;;AAGI;EACI;EACA;EACA;;AAKJ;EACI;EACA;EACA;;;AAKZ;AAAA;EAEI;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;AAEA;EACI;EACA;EAEA;EACA;;AAEA;EACI;EACA;;;AAMR;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAEA;EACI;;;AAQZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AAIR;EACI;;AAEA;EACI;;AAGJ;EACI;;AAKR;EArCJ;IAsCQ;;EAEA;IACI;;;AAKZ;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAKJ;EApBJ;IAqBQ;;;;AAKZ;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAIR;EACI;EACA;;AAGI;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;;AASpB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;;;AAKJ;EACI;EACA;EACA;;AAEA;EACI;EACA;;;AAKZ;EACI%22%7D */