@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;
  }
}
main {
  padding: 0.5em 1.5em;
  max-width: 1400px;
}

h1 {
  text-align: center;
  margin: 0.5em 0;
}

article {
  border-bottom: 1px solid #205169;
  padding-bottom: 1em;
}
article .article-header {
  margin: 2em 0 1em;
  color: #FFE900;
}
article .article-header h2 {
  margin: 0.2em 0;
}
article .article-header .article-date {
  text-align: right;
}
article a {
  color: #edbc0a;
}
article p, article ul, article ol {
  margin: 0.6em 0;
}
article h3 {
  margin-bottom: 0.1em;
  font-size: 1.1em;
  color: #FFE900;
}
article .signoff {
  margin-top: 1.5em;
  text-align: right;
}
article .signoff p {
  margin: 0;
}
article .signature {
  font-size: 1.2em;
  font-family: "Berkshire Swash", "Lora", serif;
}

code {
  background-color: #205169;
  color: #edbc0a;
  font-size: 0.8em;
  padding: 0.1em 0.2em;
}

@media only screen and (min-width: 600px) {
  main {
    padding: 0.5em 3em;
  }
  article .article-header {
    display: flex;
    justify-content: space-between;
    gap: 0.3em;
  }
}/*# sourceMappingURL=blog.css.map */