.music-player-container {
  display: none;
  justify-content: center;
  text-align: center;
  padding: 25px;
  padding: 30px;
  background: rgba(17, 0, 0, 0.666);
  color: #fff;
  position: relative;
  z-index: 999;
}
.music-player-container .music-player {
  color: #404040;
  height: 80px;
  max-width: 100%;
  text-align: left;
  border: #ccc 1px solid;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  display: inline-flex;
  flex-direction: row;
  background: #EEE;
}
.music-player-container .music-player.display-intro .music-details, .music-player-container .music-player.display-loading .music-details {
  display: none;
}
.music-player-container .music-player:not(.display-intro) .intro-text {
  display: none;
}
.music-player-container .music-player:not(.display-loading) .loading {
  display: none;
}
.music-player-container .music-player .play-controller {
  display: inline-flex;
  float: left;
  justify-content: center;
  align-items: center;
  width: 75px;
  font-size: 37.5px;
  color: #444;
  border-right: #ccc 1px solid;
  flex: none;
  cursor: pointer;
}
.music-player-container .music-player .intro-text, .music-player-container .music-player .loading {
  width: 450px;
  height: 100%;
  padding: 10px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14pt;
  line-height: 14pt;
  flex-direction: column;
}
.music-player-container .music-player .intro-text b, .music-player-container .music-player .loading b {
  margin-bottom: 5px;
}
.music-player-container .music-player .loading {
  background: rgba(0, 0, 0, 0.1);
  color: #888;
  font-size: 48px;
}
.music-player-container .music-player .music-details {
  width: 450px;
  height: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.music-player-container .music-player .music-details .name {
  margin-bottom: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.music-player-container .music-player .music-details .name .title {
  font-weight: 500;
  font-size: 18pt;
}
.music-player-container .music-player .music-details .name .author {
  color: rgba(0, 0, 0, 0.6);
}
.music-player-container .music-player .music-details .name .author::before {
  content: " - ";
}
.music-player-container .music-player .music-details .time-controller {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.music-player-container .music-player .music-details .time-controller .time-bar {
  height: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  width: 100%;
  cursor: pointer;
}
.music-player-container .music-player .music-details .time-controller .time-bar .elapsed {
  height: 100%;
  background: #e66;
  border-radius: 10px 0 0 10px;
}
.music-player-container .music-player .music-details .time-controller .time-bar .elapsed .slider-tip {
  float: right;
  width: 10px;
  height: 20px;
  border-radius: 10px;
  background: white;
  margin-right: -5px;
  margin-top: -5px;
  border: 1px solid #ccc;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.music-player-container .music-player .music-details .time-controller .volume {
  display: flex;
  font-size: 16pt;
  margin-left: 5px;
  margin-right: -5px;
  margin-bottom: -6.5px;
  margin-top: -6.5px;
  padding: 5px;
  cursor: pointer;
  z-index: 10;
}
.music-player-container .music-player .music-details .time-controller .volume:hover {
  transition: 0.25s ease-out background;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  margin-right: -85px;
}
.music-player-container .music-player .music-details .time-controller .volume:hover .volume-box {
  display: block;
}
.music-player-container .music-player .music-details .time-controller .volume .volume-box {
  width: 80px;
  display: none;
  padding: 8px;
}
.music-player-container .music-player .music-details .time-controller .volume .volume-box .volume-bar {
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
}
.music-player-container .music-player .music-details .time-controller .volume .volume-box .volume-bar .volume-fill {
  background: #fff;
  height: 100%;
  position: relative;
}
.music-player-container .music-player .music-details .time-controller .volume .volume-box .volume-bar .volume-tip {
  position: absolute;
  right: 0;
  top: 50%;
  height: 15px;
  margin: -7.5px -2px;
  width: 4px;
  background: #fff;
}
.music-player-container .music-player .music-details .time-controller .time-progression {
  margin-left: 10px;
  white-space: nowrap;
}
.music-player-container .music-player .music-details .countdown {
  height: 0;
  text-align: right;
  transform: translateY(-16px);
}
.music-player-container .music-player .music-details .countdown.hidden {
  visibility: hidden;
}
.music-player-container p {
  margin: 0;
  margin-top: 5px;
}
.music-player-container a {
  color: inherit;
}
.music-player-container #misaka10032-dance {
  position: absolute;
  left: calc(50% + 175px);
  bottom: 0;
  opacity: 0;
  transition: 0.5s ease-out opacity;
  width: 429px;
  height: 360px;
  background: url("img/misaka10032_dance_spritesheet.png");
  background-size: cover;
  z-index: -1;
  pointer-events: none;
}
.has-webp .music-player-container #misaka10032-dance {
  background-image: url("./img/webp/misaka10032_dance_spritesheet.webp");
}
@media (max-width: 1024px) {
  .music-player-container #misaka10032-dance {
    display: none;
  }
}
.music-player-container #sound-visualizer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.dev-announcement-container {
  padding: 10px;
  background: linear-gradient(-270deg, rgba(35, 169, 208, 0.9) 0%, rgba(121, 103, 187, 0.9) 100%);
}
.dev-announcement-container .dev-announcement {
  color: #fff;
  margin: 25px auto;
  text-align: center;
}
.dev-announcement-container .dev-announcement h2 {
  display: block;
  max-width: 450px;
  margin: auto;
}
.dev-announcement-container .dev-announcement p {
  font-size: 20px;
  line-height: 24px;
}
.dev-announcement-container .dev-announcement p, .dev-announcement-container .dev-announcement h1, .dev-announcement-container .dev-announcement h2 {
  margin-top: 0;
  margin-bottom: 24px;
}
.dev-announcement-container .dev-announcement svg {
  vertical-align: middle;
  margin: 0 4px;
}
.dev-announcement-container .dev-announcement a {
  font-size: 30px;
  line-height: 30px;
  font-weight: 600;
  color: #FFF;
  border-bottom: 3px solid #E66;
  text-decoration: none;
  transition: all 0.05s ease-out;
  padding: 0 10px;
}
.dev-announcement-container .dev-announcement a:hover {
  background: rgba(238, 102, 102, 0.6);
  border-bottom: 0 solid #E66;
}
.dev-announcement-container .dev-announcement a:focus {
  background: rgba(238, 102, 102, 0.2);
}

table {
  width: 100%;
  display: block;
  margin: 10px 0;
}
table tr {
  display: flex;
  justify-content: center;
}
table tr td,
table tr th {
  display: flex;
  flex-direction: column;
  width: 200px;
  padding: 15px 10px;
  justify-content: center;
  align-items: center;
}
table tr td b,
table tr th b {
  font-weight: 600;
  color: #222;
  letter-spacing: 1px;
  white-space: pre;
}
table thead {
  display: block;
}
table thead th {
  font-size: 24px;
  font-weight: normal;
}
table thead .highlight {
  background: #e66;
  font-weight: 700;
  color: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
table tbody {
  font-size: 18px;
  display: block;
}
table tbody tr:first-child td {
  border-top: 4px solid rgba(0, 0, 0, 0.1);
}
table tbody tr:last-child td {
  border-bottom: 4px solid rgba(0, 0, 0, 0.1);
}
table tbody tr td:first-child {
  border-left: 4px solid rgba(0, 0, 0, 0.1);
}
table tbody tr td:last-child {
  border-right: 4px solid rgba(0, 0, 0, 0.1);
}
table tbody .highlight {
  color: #e66;
  font-weight: 700;
  border-left: 4px solid #e66 !important;
  border-right: 4px solid #e66 !important;
}
table tbody tr:first-child .highlight {
  border-top: 4px solid #d65c5c;
}
table tbody tr:last-child .highlight {
  border-bottom: 4px solid #e66;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
table tbody tr:nth-child(odd) td {
  background: #fff;
}
table tbody tr:nth-child(even) td {
  background: #eaecee;
}
table tbody .fas {
  line-height: 32px;
  font-size: 24px;
}
table .category {
  width: 300px;
  text-align: left;
  align-items: baseline;
}

@keyframes image-appear {
  0%, 100% {
    transform: translateY(-15px);
    opacity: 0;
  }
  10%, 90% {
    transform: translateY(0);
    opacity: 1;
  }
}
.slideshow {
  text-align: center;
}
.slideshow picture, .slideshow img {
  display: none;
  max-width: 100%;
  animation-name: image-appear;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  opacity: 0;
}
.slideshow picture.shown, .slideshow .shown img {
  display: inline-block;
}
.slideshow .source {
  position: absolute;
  bottom: 10px;
  right: 50%;
  background: #e66;
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 2px;
  z-index: 100;
  opacity: 0.8;
}
.slideshow .source:hover {
  background: #F77;
  opacity: 1;
}

.compare {
  display: flex;
  overflow-x: auto;
  justify-content: center;
}
.compare .character {
  margin: 10px;
  display: inline-block;
  width: 200px;
  flex: 1 0 auto;
  background: #EEE;
  border: 2px solid #ccc;
  border-radius: 5px;
  max-width: 360px;
}
.compare .character img {
  width: 100%;
}
.compare .character .name {
  font-size: 40px;
  font-weight: 500;
  background: #F7F7F7;
  padding: 10px;
  border-top: 2px solid #d5d5d5;
}
.compare .character .name .small {
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
}
.compare .character ul {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
}
.compare .character ul li {
  padding: 10px;
  border-top: 2px solid #d5d5d5;
}

.google-searchbar {
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
  transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1);
  height: 44px;
  line-height: 44px;
  padding: 0 16px;
  font-size: 16px;
  font-family: arial, "Roboto Light", "Noto", sans-serif;
  font-weight: normal;
  font-feature-settings: initial;
  color: #000;
  margin: 16px 0;
  cursor: text;
  text-align: left;
  max-width: 512px;
  width: 100%;
  display: inline-block;
}
.google-searchbar:hover {
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.google-searchbar .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  float: right;
  font-size: 24px;
  color: #4285f4;
  height: 100%;
}
.google-searchbar .buttons * {
  cursor: pointer;
}
.google-searchbar .buttons :first-child {
  margin: 0 16px;
}

.google-definition {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
  font-family: arial, sans-serif;
  font-feature-settings: initial;
  background: #fff;
  padding: 16px;
  margin: 16px 0;
  color: #222;
  border-radius: 2px;
  text-align: left;
  max-width: 512px;
  width: 100%;
  display: inline-block;
}
.google-definition h1 {
  font-size: 32px;
  font-weight: 400;
  margin: 0;
}
.google-definition h3 {
  font-size: 18px;
  margin: 0;
  font-weight: normal;
}
.google-definition #listen:hover {
  color: #000;
  cursor: pointer;
  user-select: none;
}
.google-definition .noun {
  padding-top: 10px;
  font-style: italic;
  font-size: 13px;
}
.google-definition .definition {
  display: list-item;
  margin-left: 30px;
  padding-left: 0;
  padding-top: 10px;
  font-size: 13px;
  font-weight: 400;
}
.google-definition .definition b {
  font-weight: bold;
}
.google-definition .definition.no-bullet {
  display: block;
  margin-left: 0;
  padding-left: 20px;
}
.google-definition .definition .example {
  color: #878787;
}
.google-definition .definition .synonyms {
  display: flex;
}
.google-definition .definition .synonyms span:first-child {
  margin-right: 3px;
}
.google-definition .definition a {
  color: #1a0dab;
  text-decoration: none;
}
.google-definition .definition a:hover {
  text-decoration: underline;
}

.pope-francis {
  background-image: url("img/pope.png");
  min-height: 50vw !important;
}
.has-webp .pope-francis {
  background-image: url("img/webp/pope.webp");
}

.card-toogle {
  display: none;
}

.card {
  text-align: left;
  padding: 10px;
  width: 220px;
  height: 340px;
  vertical-align: middle;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
  background: #fff;
  cursor: pointer;
  transition: 0.1s all ease-out;
  font-size: 24px;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-weight: 400;
}
.card b {
  font-weight: 600;
  color: #333;
}
.card:hover {
  width: 230px;
  height: 350px;
  margin: 10px;
  padding: 15px;
  background: #F5F5F5;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}
input.card-toogle:checked ~ .card {
  background: #EEE;
  width: 240px;
  height: 360px;
  margin: 5px;
  padding: 20px;
}
input.card-toogle:checked ~ .card .question {
  display: none;
}
input.card-toogle:checked ~ .card .answer {
  display: block;
}
.card:active, input.card-toogle:checked ~ .card:active {
  background: #E5E5E5;
  width: 220px;
  height: 340px;
  margin: 15px;
  padding: 10px;
}
.card .answer {
  display: none;
  font-size: 20px;
}
* {
  box-sizing: border-box;
}

html {
  font-family: source-sans-pro, sans-serif;
  font-feature-settings: "ss03" 1;
  color: rgba(0, 0, 0, 0.87);
  margin: 0;
  overflow-x: hidden;
  max-width: 100%;
}

[lang|=el] {
  font-feature-settings: "ss03" 0 !important;
}

img {
  vertical-align: middle;
}

a {
  color: #e66;
}

.mobile {
  display: none;
}

.rainbow {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #f22), color-stop(0.15, #f2f), color-stop(0.3, #22f), color-stop(0.45, #2ff), color-stop(0.6, #2f2), color-stop(0.75, #2f2), color-stop(0.9, #ff2), color-stop(1, #f22));
  background-image: gradient(linear, left top, right top, color-stop(0, #f22), color-stop(0.15, #f2f), color-stop(0.3, #22f), color-stop(0.45, #2ff), color-stop(0.6, #2f2), color-stop(0.75, #2f2), color-stop(0.9, #ff2), color-stop(1, #f22));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.button {
  display: inline-block;
  border-radius: 1000px;
  padding: 15px 20px;
  background: #E66;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25), inset 0 -4px 0 rgba(0, 0, 0, 0.2);
  text-shadow: none;
  font-weight: 500;
  margin: 10px;
  transition: all linear 0.1s;
}
.button .fas, .button .fab {
  font-size: 32px;
  margin-right: 10px;
  vertical-align: sub;
}
.button.discord {
  background: #7289DA;
}
.button.reddit {
  color: #FF5700;
  background: #EFF7FF;
}
.button:hover {
  filter: brightness(1.15);
}

.language-select #language-protip {
  position: absolute;
  bottom: 100%;
  display: none;
  margin-bottom: 10px;
  padding: 20px 35px 20px 25px;
  background: #E66;
  border-radius: 5px;
  color: #fff;
  line-height: 1.25;
  font-size: 16px;
}
.language-select #language-protip #close-language-protip {
  position: absolute;
  top: 7.5px;
  right: 7.5px;
  font-size: 25px;
  cursor: pointer;
}
.language-select #language-protip::after {
  content: "";
  border: 10px transparent solid;
  border-top: 10px #E66 solid;
  position: absolute;
  top: 100%;
  left: 55px;
}

.select-wrapper {
  font-size: 20px;
  position: relative;
  min-width: 125px;
}
.select-wrapper .select-button {
  background: #eee;
  padding: 0 1em;
  padding-right: 3em;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  height: 2em;
  display: flex;
  align-items: center;
}
.select-wrapper .select-button .fas {
  position: absolute;
  top: 0;
  right: 0;
  width: 2em;
  height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #ccc;
}
.select-wrapper select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  font-size: 16px;
}

.small {
  font-size: 14px;
  font-weight: 500;
  display: block;
  opacity: 0.65;
}

.canvas-background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  filter: blur(1.5px);
  transition: background-color 0.5s ease-out;
}

.nose-button {
  cursor: pointer;
  position: absolute;
  top: calc(50% + 10px);
  left: calc(50% + 235px);
  height: 40px;
  width: 55px;
}

::selection {
  background: #e66;
  color: #fff;
}
.main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: top right;
  background-attachment: fixed;
}
.main .small {
  opacity: 1;
  margin-top: 20px;
}
.main .language-select {
  z-index: 100;
  display: flex;
}
.main #translator-mode {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 1000;
  display: none;
}
.main #translator-mode:target {
  display: flex;
}
.main #translator-mode > * {
  margin: 2px;
}
.main .disclaimer {
  margin: 10px;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  max-width: 600px;
}
.main .scroll-notice {
  width: 100%;
  position: absolute;
  left: 0;
  top: 80%;
  font-size: 18pt;
  z-index: 1000;
}
.main .scroll-notice .fas {
  font-size: 28pt;
  vertical-align: middle;
  margin-right: 10px;
}
.main .footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 10px;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.main .footer img {
  height: 70px;
  margin: 10px;
  opacity: 0.6;
  transition: 0.1s all linear;
}
.main .footer img:hover {
  opacity: 1;
}
.main .credits {
  flex: auto;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 5px #000;
  z-index: 150;
  text-align: right;
  margin-left: 20px;
}
.main .credits b {
  font-size: 22px;
}

.back-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 5;
}

.main .title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
  z-index: 10;
}
.main .title h1 {
  font-size: 128px;
  line-height: 128px;
  margin: 0;
  font-weight: 600;
}
.main .title h2 {
  font-size: 32px;
  margin: 0;
  font-weight: normal;
}
.main .title p {
  margin: 0 0 10px;
}
.main .title .button-container {
  margin: 60px;
}
.main .title .button-container > span {
  display: inline-block;
  vertical-align: top;
}
.main .title #discord-count,
.main .title #reddit-count {
  display: none;
}

.intro {
  background-image: url("./img/back.jpg");
  background-size: cover;
  background-position: top right;
  background-attachment: fixed;
}
.has-webp .intro {
  background-image: url("./img/webp/back.webp");
}
.intro .title h2 {
  background: rgba(238, 102, 102, 0.6);
  padding: 5px;
  border-radius: 5px;
}

.end {
  background-image: url("./img/back_end.jpg");
}
.has-webp .end {
  background-image: url("./img/webp/back_end.webp");
}
.end .title h2 {
  margin-top: 30px;
}

.scroll {
  box-shadow: 0 -12.5px 25px rgba(0, 0, 0, 0.25);
}

.section {
  width: 100%;
  overflow: hidden;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 10px;
  background: #fff;
  color: #404040;
  background-size: cover;
  background-position: center;
  min-height: 500px;
  border-bottom: solid 2px #ddd;
}
.section:nth-child(odd) {
  background-color: #F5F7F9;
}
.section:nth-child(even) {
  background-color: #EAECEE;
}
.section .center,
.section .left,
.section .right {
  display: inline-block;
  width: 50%;
  max-width: 512px;
  z-index: 10;
  padding: 50px 0;
  margin: 0 10px;
}
.section .image {
  padding: 0;
  display: flex;
}
.section .image img {
  min-height: 500px;
}
.section .left {
  text-align: right;
}
.section .image.left {
  justify-content: flex-end;
}
.section .image.right {
  justify-content: flex-start;
}
.section .center {
  width: 100%;
  max-width: 1024px;
  text-align: center;
}
.section h2 {
  color: #444;
  font-size: 42px;
  font-weight: 500;
  margin: 5px 0;
}
.section p {
  color: #555;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.4;
  margin: 24px 0 12px;
}
.section p b {
  font-weight: 500;
  color: #444;
}
.section.background {
  padding: 30px 0;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
}
.section.background h2 {
  color: #fff;
  font-size: 64px;
  font-weight: 500;
  margin: auto;
}
.section.background p {
  color: #fff;
  font-size: 32px;
  margin: auto 16px;
  font-weight: 400;
}
@media (max-width: 1024px) {
  @keyframes image-appear-mobile {
    0%, 100% {
      transform: translateY(-15px);
      opacity: 0;
    }
    10%, 90% {
      transform: translateY(0);
      opacity: 0.5;
    }
  }
  .mobile {
    display: block;
  }
  .section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .section.background h2 {
    font-size: 36px;
  }
  .section.background p {
    font-size: 18px;
  }
  .section .center,
  .section .left,
  .section .right {
    width: 100%;
    text-align: center;
    padding: 10px;
  }
  .section .center > h2,
  .section .left > h2,
  .section .right > h2 {
    margin: 30px 0;
  }
  .section .center > p,
  .section .left > p,
  .section .right > p {
    font-weight: 400;
  }
  .section .image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    justify-content: center !important;
    padding: 0;
    z-index: 5;
    background: none;
  }
  .section .image img {
    opacity: 0.35;
  }
  .section .image::after {
    content: "";
    position: absolute;
    bottom: 0;
    z-index: 99;
    background: linear-gradient(to bottom, rgba(234, 236, 238, 0) 0%, #EAECEE 100%);
    height: 100px;
    width: 100vw;
  }
  .section .slideshow img {
    animation-name: image-appear-mobile;
  }
  .title h1 {
    font-size: 84px;
    line-height: 72px;
  }
  .title p {
    font-size: 14px;
  }
  .title h2 {
    font-size: 26px;
  }
  table {
    overflow-x: scroll;
  }
  table tr {
    display: inline-flex;
  }
  table tr td,
  table tr th {
    flex: none;
  }
  .compare {
    justify-content: flex-start;
  }
  .slideshow .source {
    width: 100px;
    margin-right: -50px;
    padding: 10px 20px;
  }
  .nose-button {
    display: none;
  }
}
@media (max-width: 700px) {
  .main .footer {
    flex-direction: column;
    align-items: center;
  }
  .main .title .button-container {
    margin: 90px 60px;
  }
  .main .language-select {
    margin: 10px;
  }
  .main .language-select .select-wrapper {
    font-size: 25px;
  }
  .main .scroll-notice {
    display: none;
  }
}
[lang|=en] .translate-only {
  display: none;
}

.english-only {
  display: none !important;
}

[lang|=en] .english-only {
  display: block !important;
}

[lang|=fi] .google-definition .definition:last-child {
  display: none;
}

[lang|=zh], [lang|=ja], [lang|=ko] {
  font-family: sans-serif;
  font-feature-settings: initial;
}
/*# sourceMappingURL=style.css.map */
