@charset "UTF-8";
@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;
  -webkit-appearance: none;
     -moz-appearance: none;
          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;
  -moz-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;
  -moz-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 {
  min-width: 375px;
}

header {
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 10;
}

main {
  height: 100%;
  font-size: min(5.2vw, 3vh);
}
main::-webkit-scrollbar {
  width: 0;
  height: 0;
}

mark {
  background: none;
  font-weight: normal;
  font-size: larger;
  color: #FFE900;
}

.de-emphasize {
  opacity: 0.8;
  font-size: smaller;
}

nav {
  font-size: 0.8em;
  position: sticky;
  top: 40px;
  z-index: 10;
  display: flex;
  justify-content: space-around;
  text-align: center;
  height: 32px;
  background-image: linear-gradient(#205169, 70%, rgba(32, 81, 105, 0));
}
nav a {
  height: 100%;
  width: 100%;
  color: unset;
  text-decoration: none;
}
nav .nav-link {
  padding: 3px 0;
  cursor: pointer;
}
nav .nav-link.active {
  background-image: linear-gradient(#205169, #388db7);
  border-radius: 0 0 5px 5px;
}

.main-content {
  position: fixed;
  line-height: 1.5em;
  height: calc(100vh - 40px - 32px);
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}
.main-content::-webkit-scrollbar {
  width: 0;
  height: 0;
}

section.snap-section {
  scroll-snap-align: start;
  height: calc(100vh - 40px - 32px);
  margin-top: 1em;
  padding: 0.8em 1.2em;
  position: relative;
  max-width: 1600px;
}
section.snap-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-position: top center;
  background-size: cover;
  filter: brightness(15%);
}
section.snap-section h2 {
  font-size: 1.5em;
  margin: 0;
  margin-bottom: 0.7em;
  color: white;
}
section.snap-section h3 {
  margin: 0.7em 0;
}
section.snap-section p {
  margin: 0.6em 0;
}
section.snap-section ul {
  margin: 0.8em 0;
}
section.snap-section li {
  margin: 0.3em 0;
  padding-left: 0.5em;
}
section.snap-section li p.de-emphasize {
  margin: 0.2em 0;
  font-size: 0.7em;
}

#summary h2 {
  margin-bottom: 0;
}
#summary p {
  margin: 0.3em 0 1em 0;
}

#doesnt li {
  list-style-type: "❌";
}
#doesnt li span {
  font-size: larger;
}

#roadmap li {
  list-style-type: "▶️";
}

#faq-runes ul {
  line-height: smaller;
  font-size: 0.8em;
  margin: 0;
  padding-left: 1.2em;
  line-height: 1.8em;
}
#faq-runes li {
  margin: 0;
}
#faq-runes #shards {
  font-size: 0.9em;
  line-height: 1.5em;
}

.question {
  line-height: 1.2em;
  border-left: 2px solid #388db7;
  padding-left: 0.4em;
  margin-left: -0.4em;
}

#contact h2 {
  margin-bottom: 0.5em;
}
#contact h2:not(:first-of-type) {
  margin-top: 1em;
}
#contact p {
  margin: 0.2em 0;
}

#summary::before {
  background-image: url("../assets/volibear.jpg");
  filter: brightness(30%);
}

#does::before {
  background-image: url("../assets/masteryi.jpg");
}

#doesnt::before {
  background-image: url("../assets/mordekaiser.jpg");
  filter: brightness(30%);
}

#roadmap::before {
  background-image: url("../assets/missfortune.jpg");
}

#faq-work::before {
  background-image: url("../assets/heimerdinger.jpg");
}

#faq-unique::before {
  background-image: url("../assets/jhin.jpg");
  filter: brightness(30%);
}

#faq-runes::before {
  background-image: url("../assets/ryze.jpg");
}

#faq-bug::before {
  background-image: url("../assets/khazix.jpg");
}

#faq-riot::before {
  background-image: url("../assets/yasuo.jpg");
}

#faq-who::before {
  background-image: url("../assets/tristana.jpg");
  filter: brightness(30%);
}

#contact::before {
  background-image: url("../assets/blitz.jpg");
}/*# sourceMappingURL=about.css.map */