* {
  box-sizing: border-box;
}

body {
  background: #071022;
  color: #fff;
  font-family: Verdana, Arial, sans-serif;
  font-size: 12px;
  /*text-shadow: 1px 1px 1px #071022;*/
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.content {
  background: #172136;
}

header {
  font-size: 2em;
  padding: 1em 0;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-space-between {
  justify-content: space-between;
}

nav {
  margin-bottom: 2rem;
}

nav ul {
  display: flex;
  flex-direction: row;
}

nav ul li {
  display: flex;
  flex: 1 auto;
  justify-content: center;
  align-items: center;
}

nav ul li:hover {
  background: rgba(255, 255, 255, 0.01);
}

nav ul li.selected {
  background: rgba(255, 255, 255, 0.2);
}

nav ul li a {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  padding: 1rem 0;
  cursor: pointer;
}

nav ul li a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.container {
  width: 800px;
  margin: 0 auto;
}

#app {
  /*width: 800px;*/
  /*margin: 0 auto;*/
  background: #172136;
}

.collector-information .npc-selector ul {
  color: #fff;
}

.collector-information .npc-selector ul li a {
  color: #fff;
  text-decoration: none;
}

/* region COLLECTIONS PAGE */
.npc-list {
  padding: 1rem 0;
  width: 200px;
}

.npc-collections {
  display: flex;
  flex: 1 auto;
  background: #313e59;
  padding: 1rem;
}

.npc-list li {
  display: flex;
  flex-direction: row;
  padding: 0.5rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.npc-list li:hover {
  background: rgba(255, 255, 255, 0.1);
}
.npc-list li.selected {
  background: #313e59;
  color: #fff;
}
.npc-list li span {
  display: flex;
  flex: 1 0;
}
.npc-list li span.progress {
  flex: 0 0;
  font-size: 0.8em;
  opacity: 0.5;
}

.collections-header {
  margin-bottom: 1rem;
}

.collections-header > :not(:first-child) {
  margin-top: 1rem;
}

.collection {
  margin: 0.5rem 0;
  transition: all linear 100ms;
}
.collection > .header {
  display: flex;
  align-items: center;
  font-size: 1.2em;
  padding: 0.3rem;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.collection > .header .name {
  color: #ffd700;
  font-weight: bold;
  flex: 1 0;
}
.collection > .header .progress {
  font-size: 0.8em;
  margin-right: 1em;
}
.collection > .header .actions {
  font-size: 1.2em;
  cursor: default;
}
.collection > .header .actions .fa {
  transition: all linear 100ms;
  opacity: 0.05;
}
.collection > .reward {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.collection.complete {
  background: rgba(0, 255, 0, 0.1);
}
.collection:hover .actions .fa, .collection.wishlist .actions .fa-star, .collection.complete .actions .fa-check {
  opacity: 1;
  color: rgba(255, 255, 255, 0.5);
}
.collection:hover .actions .fa:hover, .collection.wishlist .actions .fa-star:hover, .collection.complete .actions .fa-check:hover {
  color: rgba(255, 255, 255, 0.8);
}
.collection.wishlist .actions .fa.fa-star, .collection:hover.wishlist .actions .fa-star {
  color: #ffd700;
}
.collection.wishlist .actions .fa.fa-star:hover, .collection:hover.wishlist .actions .fa-star:hover {
  color: #d9b500;
}
.collection.complete .actions .fa.fa-check, .collection:hover.complete .actions .fa-check {
  color: #1fb11f;
}
.collection.complete .actions .fa.fa-check:hover, .collection:hover.complete .actions .fa-check:hover {
  color: #1b991b;
}
.collection:hover .actions .fa.fa-eraser:hover {
  color: #dc3e3e;
}
.collection .reward {
  cursor: default;
}

.collection .artefacts {
  background: rgba(0, 0, 0, 0.1);
  padding: 0.3rem 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.collection .reward {
  background: rgba(0, 0, 0, 0.1);
  padding: 0.3rem;
  font-size: 0.9em;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
}

.collection .artefact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 34px;
  height: 34px;
  /*padding: 2px;*/
  background: rgba(0, 0, 0, 0.5);
  margin-right: 0.25rem;
  /*box-shadow: 0px 1px 3px inset rgba(0, 0, 0, .4);*/
  border: 1px solid rgba(128, 128, 128, 0.2);
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.collection .artefact-icon.owned {
  background: rgba(0, 0, 0, 0.2);
}

.collection .artefact-icon.locked {
  background: rgba(200, 0, 0, 0.2);
}

.collection .artefact-icon:hover {
  /*background: rgba(255, 255, 255, .1);*/
  box-shadow: none;
  border: 1px solid gold;
}

.collection .artefact-icon > img {
  /*opacity: .4;*/
  filter: brightness(15%);
}

.collection .artefact-icon.owned > img {
  filter: brightness(100%);
}

/*.collection .artefact-icon:hover::before {*/
/*    content: attr(data-tooltip);*/
/*    position: absolute;*/
/*    top: -25%;*/
/*    z-index: 10;*/
/*    !*width: 200px;*!*/
/*    text-align: center;*/
/*    font-size: .8em;*/
/*    color: gold;*/
/*    background: #222;*/
/*    padding: .5em;*/
/*    white-space: nowrap;*/
/*    border: 1px solid #DDD;*/
/*}*/
.collection .artefact-icon .artefact-tooltip {
  position: absolute;
  top: 110%;
  z-index: 10;
  /*width: 100px;*/
  font-size: 0.8em;
  background: #222;
  padding: 0.5em;
  white-space: nowrap;
  border: 1px solid #DDD;
  display: none;
}

.collection .artefact-icon:hover .artefact-tooltip {
  display: block;
  pointer-events: none;
}

.artefact-tooltip .name {
  color: #d9b500;
  font-weight: bold;
}

.artefact-tooltip .details {
  display: flex;
  flex-direction: row;
}

.artefact-tooltip .details > div {
  display: flex;
  flex-direction: column;
}

.artefact-tooltip .details > :first-child {
  margin-right: 1em;
}

.artefact-tooltip .details > div > div {
  margin-top: 0.5em;
}

/* endregion */
.requirements .materials {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.requirements .materials .material {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0.25em;
  padding: 0.25em;
  background: #313e59;
  width: 100px;
}
.requirements .materials .material .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-right: 1em;
}
.target .collection-name {
  padding: 1em;
  font-weight: bold;
  color: #d9b500;
}
.target .target-artefacts {
  display: flex;
  flex-direction: row;
  padding-bottom: 1em;
}
.target .target-artefacts .target-artefact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 0.5em;
}
.target .target-artefacts .target-artefact .owned {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  margin: 0.25em 0;
}
.target .target-artefacts .target-artefact .controls {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.target .target-artefacts .target-artefact .controls > * {
  display: flex;
}
.target .target-artefacts .target-artefact .artefact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(128, 128, 128, 0.2);
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.target .target-artefacts .target-artefact .artefact img {
  display: flex;
}

[data-tooltip] {
  position: relative;
}

[data-tooltip]:hover::before {
  content: attr(data-tooltip);
  position: absolute;
  display: inline-block;
  top: 0;
  transform: translateY(-125%);
  z-index: 10;
  text-align: center;
  font-size: 0.8em;
  color: gold;
  background: #222;
  padding: 0.5em;
  white-space: nowrap;
  border: 1px solid #DDD;
  pointer-events: none;
}

[data-tooltip][data-tooltip-right]::before {
  right: 0;
}

[data-tooltip][data-tooltip-middle]::before {
  transform: translateX(50%);
  left: 50%;
}

[data-tooltip][data-tooltip-left]::before {
  left: 0;
}

/*# sourceMappingURL=style.css.map */
