/*!****************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/styles.scss ***!
  \****************************************************************************************************************************************************************************************************************************************/
@font-face {
  font-family: "Fira Sans Condensed";
  src: url(fonts/FiraSansCondensed-Regular.514b8df8.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Fira Sans Condensed";
  src: url(fonts/FiraSansCondensed-SemiBold.64583fe5.ttf);
  font-weight: 600;
}
@font-face {
  font-family: "Fira Sans Condensed";
  src: url(fonts/FiraSansCondensed-Bold.c069e259.ttf);
  font-weight: 700;
}
@font-face {
  font-family: "Poppins";
  src: url(fonts/Poppins-Regular.35d26b78.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Poppins";
  src: url(fonts/Poppins-Medium.673ed423.ttf);
  font-weight: 500;
}
@font-face {
  font-family: "Poppins";
  src: url(fonts/Poppins-SemiBold.ac8d04b6.ttf);
  font-weight: 600;
}
@font-face {
  font-family: "Poppins";
  src: url(fonts/Poppins-Bold.cdb29a5d.ttf);
  font-weight: 700;
}
:root {
  scroll-behavior: smooth;
  --grape: #363273;
  --dk-grape: #23224A;
  --orange: #FBAA19;
  --sunshine: #FFD400;
  --grey: #F5F5F5;
  --heading: "Fira Sans Condensed", sans-serif;
  --body: "Poppins", sans-serif;
  --max-width: 928px;
  --padding: 16px;
  --vpadding: 50px;
}
@media (min-width: 1024px) {
  :root {
    --padding: 40px;
    --vpadding: 90px;
  }
}
/* typography */
body:not(.wp-admin) {
  margin: 0;
  padding: 0;
  text-wrap-style: pretty;
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.4;
  font-optical-sizing: auto;
  font-display: swap;
  color: var(--grape);
  background-color: white;
}
h1, h2, h3 {
  text-wrap-style: balance;
}
h1, h2 {
  font-family: var(--heading);
  font-weight: 600;
  line-height: 1;
}
sup {
  font-size: 0.5em;
}
a {
  color: inherit;
}
/* layout */
body, .block-editor .wp-block {
  container-type: inline-size;
}
.block-editor .wp-block {
  max-width: 90%;
}
/* components */
@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.button {
  --gradient-angle: 0deg;
  display: grid;
  place-items: center;
  padding: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--grape);
  background: linear-gradient(var(--gradient-angle), var(--orange), var(--sunshine));
  border-radius: 40px;
  transition: --gradient-angle 0.3s;
}
@container (min-width: 1024px) {
  .button {
    width: 220px;
    box-sizing: border-box;
  }
}
.button:focus, .button:hover {
  --gradient-angle: 180deg;
}
button.button {
  font-family: var(--body);
  font-size: 18px;
  border: none;
  cursor: pointer;
}
.nav-shortcuts a {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 100000;
  padding: 10px 20px;
  font-weight: bold;
  color: #000;
  background-color: #fff;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
  transform: translate3d(-50%, -200%, 0);
}
.nav-shortcuts a:focus {
  transform: translate3d(-50%, 0, 0);
}
@container (min-width: 1024px) {
  header .grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    width: 100%;
    max-width: var(--max-width);
    height: 0;
    margin-inline: auto;
    padding-inline: var(--padding);
  }
}
header .content, header .logo {
  padding-inline: var(--padding);
}
@container (min-width: 1024px) {
  header .content, header .logo {
    padding-inline: 0;
  }
}
header .inner {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
}
header .content {
  font-size: 12px;
  color: white;
  background-color: var(--dk-grape);
}
@container (min-width: 1024px) {
  header .content {
    font-size: 14px;
    background-color: transparent;
  }
}
header .content .inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
}
header .content p, header .content ul {
  margin-block: 1rem;
}
@container (min-width: 1024px) {
  header .content p, header .content ul {
    margin-block: 2rem;
  }
}
header .content ul {
  display: flex;
  gap: 1em;
  padding: 0;
  list-style: none;
  font-weight: 500;
}
header .logo {
  display: grid;
  place-items: center;
  height: 0;
  padding-inline: var(--padding);
}
@container (min-width: 1024px) {
  header .logo {
    padding-inline: 0;
  }
}
header .logo .inner {
  display: grid;
  justify-content: flex-end;
}
header .logo img {
  width: 100px;
  height: auto;
  padding: 1rem 1.5rem;
  background-color: white;
  border-radius: 0 0 28px 28px;
}
@container (min-width: 1024px) {
  header .logo img {
    width: 150px;
  }
}
footer .top, footer .bottom {
  padding: var(--vpadding) var(--padding);
  color: white;
}
footer .top {
  background-color: var(--grape);
}
footer .top .content {
  display: grid;
  gap: 2rem;
  font-size: 16px;
}
@container (min-width: 500px) {
  footer .top .content {
    font-size: 24px;
  }
}
@container (min-width: 850px) {
  footer .top .content {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 3rem;
  }
}
footer .top img {
  display: block;
  max-width: 100%;
  height: auto;
}
footer .top h2, footer .top p {
  margin: 0;
  line-height: 1.6;
}
footer .top h2 {
  font-family: inherit;
  font-size: inherit;
}
footer .bottom {
  background-color: var(--dk-grape);
}
footer .bottom .content {
  display: grid;
  gap: 1rem;
}
@container (min-width: 850px) {
  footer .bottom .content {
    grid-template-columns: 290px 1fr;
    gap: 0 3rem;
  }
}
footer .bottom ul {
  display: grid;
  gap: 1rem 2rem;
  margin: 0;
  padding: 0 0 1rem;
  list-style: none;
  border-bottom: 1px solid white;
}
@container (min-width: 850px) {
  footer .bottom ul {
    display: flex;
    margin-bottom: 1.5rem;
  }
}
footer .bottom ul a {
  text-decoration: none;
}
footer .bottom ul a:focus, footer .bottom ul a:hover {
  text-decoration: underline;
}
footer .bottom .copy {
  font-size: 12px;
}
footer .bottom p {
  margin: 0;
}
footer .bottom .logos {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-end;
}
@container (min-width: 850px) {
  footer .bottom .logos {
    grid-column: 1;
    grid-row: 1/span 2;
    margin-bottom: 0.2rem;
  }
}
footer .bottom .logos img {
  width: auto;
  max-height: 80px;
}
footer .bottom .logos img:nth-child(2) {
  height: 66px;
}
footer .content {
  max-width: var(--max-width);
  margin-inline: auto;
}
body.not-found header .content {
  background-color: #9E9E9E;
}
@container (min-width: 1024px) {
  body.not-found header .content {
    color: var(--dk-grape);
    background-color: transparent;
  }
}
error {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: var(--vpadding) var(--padding);
  box-sizing: border-box;
  background-color: #D9D9D9;
}
error .content {
  width: 100%;
  max-width: var(--max-width);
  padding: var(--padding);
  box-sizing: border-box;
  background-color: white;
  border-radius: 16px;
}
error .code {
  font-size: 120px;
  font-weight: bold;
  line-height: 1;
}
error h1 {
  font-size: 42px;
}
error a {
  font-weight: bold;
}
calculator {
  display: block;
  padding: var(--vpadding) var(--padding);
  background-color: #B3DAF4;
}
calculator .content {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: var(--padding);
  box-sizing: border-box;
  background-color: white;
  border-radius: 16px;
}
calculator h2 {
  font-family: inherit;
  font-size: 24px;
}
calculator form {
  display: grid;
  gap: 2rem;
  margin-block: 2rem 3rem;
}
@container (min-width: 700px) {
  calculator form {
    grid-template-columns: 1fr 1fr;
  }
}
calculator form .field {
  display: grid;
  gap: 0.5rem;
}
calculator form label {
  font-size: 14px;
  font-weight: bold;
}
calculator form input, calculator form select {
  height: 60px;
  padding: 0 1em;
  font-family: inherit;
  font-size: 16px;
  color: inherit;
  background-color: #FAFAFA;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
calculator form .select {
  display: grid;
}
calculator form .select select {
  grid-area: 1/1;
}
calculator form .select::after {
  content: "";
  grid-area: 1/1;
  justify-self: flex-end;
  align-self: center;
  display: block;
  width: 8px;
  height: 8px;
  margin-right: 1em;
  border: 3px solid black;
  border-top: none;
  border-left: none;
  transform: translateY(-3px) rotate(45deg);
  pointer-events: none;
}
@container (min-width: 700px) {
  calculator form button {
    grid-column: span 2;
  }
}
@container (min-width: 1024px) {
  calculator form button {
    justify-self: center;
  }
}
calculator .results {
  display: grid;
  gap: 1rem;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  interpolate-size: allow-keywords;
  transition: 0.3s;
}
calculator .results .buttons {
  display: grid;
  gap: 1rem;
  padding: var(--padding);
  background-color: var(--grey);
  border-radius: 12px;
}
@container (min-width: 1024px) {
  calculator .results .buttons {
    display: flex;
    justify-content: space-between;
  }
}
calculator .show {
  visibility: visible;
  height: auto;
}
calculator .mice {
  margin-top: 3rem;
  font-size: 12px;
}
.stats {
  display: grid;
  gap: 1rem;
}
.stats .row {
  padding: var(--padding);
  text-align: center;
  border-radius: 12px;
}
@container (min-width: 700px) {
  .stats .row:nth-child(1), .stats .row:nth-child(2) {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.stats .row:nth-child(1) .item:first-child, .stats .row:nth-child(2) .item:first-child {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--sunshine);
}
@container (min-width: 700px) {
  .stats .row:nth-child(1) .item:first-child, .stats .row:nth-child(2) .item:first-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    padding-right: 1rem;
    border-right: 1px solid var(--sunshine);
  }
}
@container (min-width: 700px) {
  .stats .row:nth-child(1) .item:last-child, .stats .row:nth-child(2) .item:last-child {
    padding-left: 1rem;
  }
}
.stats .row:nth-child(1) {
  background-color: #FFF8CC;
}
.stats .row:nth-child(2) {
  background-color: #FDE981;
}
.stats .row:nth-child(3) {
  background-color: #FCDA2B;
}
@container (min-width: 700px) {
  .stats .row:nth-child(3) .value {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.stats .value {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: bold;
}
@container (min-width: 1024px) {
  .stats .value {
    font-size: 36px;
  }
}
.stats .hide {
  display: none;
}
.stats .zero-wholes .wholes, .stats .zero-wholes .and {
  display: none;
}
.stats .zero-quarters .quarters, .stats .zero-quarters .and {
  display: none;
}
.stats .label {
  display: block;
  font-size: 14px;
}
@container (min-width: 1024px) {
  .stats .label {
    font-size: 18px;
  }
}
.stats .and {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-inline: auto;
  font-family: var(--body);
  font-size: 11px;
  background-color: white;
  border: 1px solid var(--grape);
  border-radius: 30px;
}
@container (min-width: 700px) {
  .stats .and {
    display: inline-grid;
    margin-inline: 0.75rem;
  }
}
@container (min-width: 1024px) {
  .stats .and {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

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