@import './normalize.css';
@import 'https://fonts.googleapis.com/css2?family=Lato&family=Lora:ital,wght@0,400;0,700;1,400;1,700&family=Berkshire+Swash&display=swap';
* {
  box-sizing: border-box;
}

:root {
  font-family: "Lato", sans-serif;
  color: #D6F1FF;
  font-size: 18px;
  line-height: 1.4em;
  caret-color: transparent;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  display: flex;
  flex-flow: column;
  background-color: #102D30;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(#030C0D, #102D30);
  background-size: cover;
  z-index: -100;
}

a {
  color: #FFE900;
}

header {
  display: flex;
  background-color: #205169;
  align-items: center;
}
header .site-logo {
  margin: 2px;
}
header .site-title {
  font: bold 1.5em "Lora", serif;
  line-height: 40px;
  margin-left: 0.2em;
}
header a {
  text-decoration: none;
  color: unset;
}

.patch-wrapper {
  line-height: normal;
  margin-left: auto;
  margin-right: 0.2em;
  text-align: right;
  opacity: 0.8;
}
.patch-wrapper .patch-label {
  font-size: 0.6rem;
}
.patch-wrapper .patch-number {
  font-size: 1rem;
}

main {
  width: 100%;
  max-width: 1600px;
  align-self: center;
  flex: 1 1 auto;
}
main.champ-select-view {
  padding: 1em 0.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lora", serif;
}

select {
  cursor: pointer;
  appearance: none;
  background-color: #205169;
  color: #D6F1FF;
  text-align: center;
  border-radius: 20px;
  padding: 0.1em;
}

label.checkbox {
  display: grid;
  grid-template-columns: 1em auto;
  gap: 1em;
  margin-top: 0.5em;
  color: rgba(214, 241, 255, 0.8);
}

input[type=checkbox].checkbox {
  -webkit-appearance: none;
  appearance: none;
  background-color: #205169;
  /* Not removed via appearance */
  margin: 0;
  width: 1.5em;
  height: 1.55em;
  border: 0.15em solid #000203;
  border-radius: 0.15em;
  display: grid;
  place-content: center;
}
input[type=checkbox].checkbox:before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #D6F1FF;
}
input[type=checkbox].checkbox:checked::before {
  transform: scale(1);
}

label.toggle {
  display: flex;
  gap: 0.5em;
  cursor: pointer;
}

input[type=checkbox].toggle {
  -webkit-appearance: none;
  appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: #205169;
  /* Not removed via appearance */
  cursor: pointer;
  margin: 0;
  width: 3em;
  height: 1.5em;
  display: block;
  border-radius: 100px;
  position: relative;
}
input[type=checkbox].toggle:after {
  content: "";
  position: absolute;
  top: 0.05em;
  left: 0.1em;
  width: 1.4em;
  height: 1.4em;
  background: #D6F1FF;
  border-radius: 90px;
  transition: 0.3s;
}
input[type=checkbox].toggle:checked {
  background: #107f4d;
}
input[type=checkbox].toggle:checked:after {
  transform: translateX(100%);
}

.collapsible {
  background-color: #205169;
  color: #D6F1FF;
  cursor: pointer;
  padding: 0.5rem;
  width: 100%;
  margin: 0.5rem 0 0 0;
  text-align: center;
  border: none;
  outline: none;
}

.start-hidden {
  display: none;
}

.loading-animation-container {
  height: 20px;
  width: 20px;
  background-color: transparent;
}

.morphing-circle {
  height: 100%;
  width: 100%;
  background-color: #205169;
  border-radius: 50%;
  transition: border-radius 0.5s ease, background-color 0.5s ease, transform 0.5s ease 0.5s;
  animation: morphing-circle-square 1.5s linear infinite;
}

.tippy-box[data-theme~=lbc] {
  background-color: #020a13;
  color: #D6F1FF;
  padding: 0.5rem;
  border: 4px double #5e491b;
  line-height: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
}
.tippy-box[data-theme~=lbc] .title {
  margin: 0;
  text-transform: uppercase;
}
.tippy-box[data-theme~=lbc] .price {
  color: #FFE900;
  margin: 0.2rem 0;
}
.tippy-box[data-theme~=lbc] .stats {
  color: #69c0d3;
  list-style-type: none;
  padding-left: 0;
}
.tippy-box[data-theme~=lbc] .stat-value {
  font-weight: bold;
}
.tippy-box[data-theme~=lbc] .mythic-stats {
  margin: 0.2rem 0;
  padding-left: 1rem;
  color: #69c0d3;
}

@keyframes morphing-circle-square {
  0% {
    border-radius: 50%;
  }
  25% {
    border-radius: 50%;
    background-color: #205169;
  }
  50% {
    border-radius: 0%;
    background-color: #D6F1FF;
    transform: rotate(0deg);
  }
  75% {
    border-radius: 0%;
    background-color: #D6F1FF;
    transform: rotate(90deg);
  }
  100% {
    border-radius: 50%;
    background-color: #205169;
    transform: rotate(90deg);
  }
}
@media only screen and (min-width: 600px) {
  :root {
    font-size: 22px;
  }
}
body {
  overflow-x: hidden;
}

.hidden {
  display: none !important;
}

.intro {
  padding: 1em 0.3em;
  text-align: center;
  border: 3px double #205169;
  border-radius: 3px;
}
.intro h1 {
  margin: 0;
  font-size: 1.8em;
  line-height: 1.2em;
  margin-bottom: 0.2em;
}
.intro h2 {
  margin: 0;
  margin-bottom: 1em;
  font-size: 0.9em;
  font-weight: normal;
}
.intro p {
  margin: 0;
}

.main-links {
  margin-top: 1em;
  font-size: 0.7em;
}
.main-links span {
  margin: 0 0.3em;
}
.main-links a {
  color: unset;
  text-decoration: none;
}
.main-links a:hover {
  text-decoration: underline;
  color: #FFE900;
}

p.get-started {
  text-align: center;
}

.position-filter {
  margin: auto;
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 0.8em;
}
.position-filter img {
  cursor: pointer;
  height: 2.5em;
  filter: grayscale(100%);
  transition: transform 0.2s ease-out, filter 0.2s ease-in;
}
.position-filter img:hover {
  transform: scale(1.3);
  filter: grayscale(0%);
}
.position-filter img.active {
  filter: grayscale(0%);
  transform: scale(1.3);
}

.grid-list {
  margin-top: 1em;
  display: grid;
  font-size: 0.7em;
  gap: 0.8em 0.5em;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
}
.grid-list.champ-list.loading {
  grid-template-columns: 20px auto;
  align-items: center;
}
.grid-list.champ-list.loading p {
  margin: 0;
  font-size: 1.2em;
}
.grid-list.item-list {
  margin-top: 0.5rem;
  margin-bottom: 1em;
}
.grid-list.item-list .item-options {
  margin-bottom: 0.2rem;
}
.grid-list figure {
  display: flex;
  flex: 0 0 100%;
  margin: 0;
  text-align: center;
  line-height: initial;
  transition: transform 0.2s ease-out, filter 0.2s ease-in;
  position: relative;
  aspect-ratio: 1/1;
}
.grid-list figure:hover {
  transform: scale(1.2);
  filter: saturate(140%);
  color: #FFE900;
  z-index: 10;
}
.grid-list figure:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: 0 0 0 2px #FFE900;
  border-radius: 10px;
  z-index: 2;
  cursor: pointer;
}
.grid-list figure:hover figcaption {
  opacity: 100%;
}
.grid-list img {
  width: 100%;
}
.grid-list figcaption {
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

.item-rank-heading-wrapper {
  text-transform: capitalize;
  margin: 1.5em auto;
  line-height: 0.5;
  width: 90%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1em;
  color: rgba(214, 241, 255, 0.8);
}
.item-rank-heading-wrapper::before, .item-rank-heading-wrapper::after {
  content: "";
  height: 5px;
  border-bottom: 1px solid rgba(214, 241, 255, 0.5);
  border-top: 1px solid rgba(214, 241, 255, 0.5);
  width: 100%;
}
.item-rank-heading-wrapper::before {
  justify-self: end;
}
.item-rank-heading-wrapper h2 {
  text-align: center;
  font-size: 1em;
  margin: 0;
}

.build-view-header {
  font-family: "Berkshire Swash", "Lora", serif;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  height: 70px;
  font-size: 1.8em;
}
.build-view-header img {
  height: 70px;
}
.build-view-header .champ-name-wrapper {
  display: flex;
  column-gap: 0.2em;
  row-gap: 0.1em;
  align-items: baseline;
  flex-wrap: wrap;
  margin-left: 0.3rem;
}
.build-view-header .champ-name-wrapper .champ-name {
  flex-shrink: 0;
}
.build-view-header .champ-name-wrapper .champ-title {
  font-size: 60%;
  opacity: 50%;
  grid-column: 3/4;
  display: inline;
  margin-left: 0.1rem;
}
.build-view-header .edit-champ-button {
  display: initial;
  position: absolute;
  font-size: 2rem;
  left: 0;
  top: 0;
  padding: 15px 10px 18px 18px;
  margin: 0;
  z-index: 2;
  opacity: 0;
}

.build-view-champ-image-wrapper {
  position: relative;
}
.build-view-champ-image-wrapper:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: all 0.3s;
}
.build-view-champ-image-wrapper:hover:after {
  opacity: 1;
  cursor: pointer;
}
.build-view-champ-image-wrapper:hover .edit-champ-button {
  color: #FFE900;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s;
}

.level-select-wrapper {
  display: flex;
  justify-content: center;
}

.champ-level-select {
  margin: 0.2rem 0.5rem;
  width: 100%;
}

.item-options {
  display: none;
  grid-row: 2;
  height: 1.2rem;
  background-color: #205169;
  font-size: 0.7rem;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  clip-path: polygon(calc(0% + 10px) 100%, 0% 0%, 100% 0%, calc(100% - 10px) 100%);
}

.item-belt {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  min-height: 50px;
  margin: 0.5rem 0;
}
.item-belt .build-item {
  border: 0 solid #D6F1FF;
  border-width: 2px 1px;
  position: relative;
  background-color: #205169;
  display: flex;
  justify-content: center;
  aspect-ratio: 1/1;
  position: relative;
  cursor: pointer;
}
.item-belt .build-item#buildItem0 {
  border-left-width: 2px;
}
.item-belt .build-item#buildItem5 {
  border-right-width: 2px;
}
.item-belt .build-item .add-item-button {
  display: flex;
  align-items: center;
}
.item-belt .build-item img {
  width: 100%;
}
.item-belt .remove-item.mobile {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(214, 241, 255, 0.6);
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 0.8rem;
}
.item-belt .remove-item.mobile p {
  margin: 0;
}
.item-belt .remove-item.desktop {
  display: none;
  position: absolute;
  font-size: 0.8rem;
  color: rgba(214, 241, 255, 0.8);
  right: 0.2rem;
  top: 0.2rem;
  margin: 0;
  z-index: 2;
  opacity: 100;
  padding: 2px 3px;
  border-radius: 10px;
}
.item-belt .remove-item.desktop:hover {
  background-color: rgba(214, 241, 255, 0.8);
  color: #D31B07;
}
@media (hover: hover) and (pointer: fine) {
  .item-belt .build-item:hover {
    border: 3px solid #FFE900;
    cursor: pointer;
    z-index: 2;
    transition: border-color 0.3s;
  }
  .item-belt .build-item:hover .add-item-button {
    color: #FFE900;
    cursor: pointer;
    transition: color 0.3s;
  }
}
.item-belt .build-item.active {
  border: 3px solid #FFE900;
  cursor: pointer;
  z-index: 2;
  transition: border-color 0.3s;
}
.item-belt .build-item.active .add-item-button {
  color: #FFE900;
  cursor: pointer;
  transition: color 0.3s;
}
.item-belt .build-item-wrapper.full .item-options {
  display: flex;
}
.item-belt .build-item-wrapper.full .build-item.active:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  background: rgba(0, 0, 0, 0.6);
}
.item-belt .build-item-wrapper.full .build-item.active .remove-item.mobile {
  display: flex;
}

.options-and-cost-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.8em;
  margin: 0.5em;
}

.options-wrapper {
  font-size: 0.9em;
  display: flex;
  align-items: center;
  gap: 0.1em;
  color: rgba(214, 241, 255, 0.8);
}
.options-wrapper i {
  font-size: 0.8em;
}

.build-stats-cost-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
  color: #e2ba3d;
  font-family: "Lora", serif;
  font-weight: bold;
  margin: 0;
  text-align: center;
}
.build-stats-cost-wrapper .build-stats-cost-icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
  display: inline-block;
}

#stackItemsHint {
  padding: 0.3em;
}

.item-select-view {
  margin-top: 0.3rem;
}
.item-select-view .item-options {
  display: flex;
}

.build-stats-display {
  display: grid;
  margin: 1em 2em;
  row-gap: 0.3em;
}
.build-stats-display .build-stat {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin: 0;
  border-bottom: 1px dashed rgba(214, 241, 255, 0.5);
  width: 100%;
}
.build-stats-display .build-stat .stat-icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
  display: inline-block;
  margin-bottom: 0.2em;
}
.build-stats-display .build-stat .stat-name {
  margin: 0;
  flex: 1;
  min-width: 0;
}
.build-stats-display .build-stat .stat-value {
  text-align: right;
  margin: 0;
  margin-left: auto;
  flex-shrink: 0;
  white-space: nowrap;
}

#filterCount {
  margin-left: 0.3rem;
  color: #205169;
  background-color: #D6F1FF;
  padding: 0 0.75rem 0.1rem;
  border-radius: 20px;
}

.item-filters {
  margin: 0rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
}
.item-filters.class-filters .filter-button {
  border-radius: 0;
  background-color: #0a1b1d;
}
.item-filters.active {
  margin: 1rem 0;
}
.item-filters .filter-button {
  font-size: smaller;
  color: #D6F1FF;
  background-color: #102D30;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  border: 1px solid #205169;
  outline: none;
  cursor: pointer;
}
.item-filters .filter-button.active {
  background-color: #205169;
  border-color: #D6F1FF;
}
.item-filters .filter-button:hover {
  border-color: #FFE900;
}

@media only screen and (min-width: 600px) {
  .build-stats-display {
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    column-gap: 2.5em;
    font-size: 18px;
    line-height: 1.4em;
  }
  .build-stats-display .build-stat {
    align-items: end;
  }
  main.champ-select-view {
    padding: 1em 3em;
  }
  .grid-list {
    font-size: 0.8em;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
  .build-view-header {
    grid-template-columns: auto 1fr;
    height: 125px;
  }
  .build-view-header img {
    height: 100%;
  }
  .build-view-header .edit-champ-button {
    font-size: 3rem;
    padding: 25px 16px 30px 30px;
  }
  .build-view-header .champ-name-wrapper {
    display: block;
    margin-left: 0.3em;
  }
  .build-view-header .champ-name-wrapper .champ-title {
    display: block;
    margin-top: 0.2rem;
    font-size: 50%;
  }
  .item-options {
    display: none !important;
  }
  .item-belt .build-item {
    position: relative;
  }
  .item-belt .build-item-wrapper.full:hover .remove-item.desktop {
    display: block;
  }
  .item-belt .build-item-wrapper.full .build-item.active:after {
    opacity: 0;
  }
  .item-belt .build-item-wrapper.full .build-item.active .remove-item.mobile {
    display: none;
  }
  .item-belt .build-item-wrapper.full .build-item-img {
    filter: none;
  }
}
@media only screen and (min-width: 800px) {
  .champ-level-select {
    width: 60%;
    padding: 0.3em;
  }
  .item-belt-wrapper {
    display: flex;
    justify-content: center;
  }
  .item-belt {
    width: 75%;
  }
  .options-and-cost-wrapper {
    flex-direction: column;
    align-items: flex-start;
    max-width: 75%;
    margin: auto;
    gap: 0;
  }
  .options-and-cost-wrapper .options-wrapper {
    align-self: flex-start;
  }
  .options-and-cost-wrapper .build-stats-cost-wrapper {
    align-self: center;
    width: 100%;
  }
  .item-select-view {
    margin: 1rem;
  }
  .build-item .add-item-button {
    font-size: 3em;
  }
  .item-belt .remove-item.desktop {
    font-size: 1rem;
    color: rgba(214, 241, 255, 0.8);
    right: 0.3rem;
    top: 0.3rem;
    padding: 2px 3px;
  }
  .item-belt .remove-item.desktop:hover {
    background-color: rgba(214, 241, 255, 0.8);
    color: #D31B07;
  }
  .item-rank-heading-wrapper {
    width: 75%;
  }
  .build-stats-display {
    margin: 0.5rem 2rem;
    font-size: inherit;
  }
}
@media only screen and (min-width: 1200px) {
  .build-item .add-item-button {
    font-size: 4em;
  }
  .build-stats-display {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  .item-belt .remove-item.desktop {
    font-size: 1.5rem;
    color: rgba(214, 241, 255, 0.8);
    right: 0.4rem;
    top: 0.4rem;
    padding: 6px;
  }
  .item-belt .remove-item.desktop:hover {
    background-color: rgba(214, 241, 255, 0.8);
    color: #D31B07;
  }
}

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