a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

*,
:after,
:before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

img {
  border: none;
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -ms-user-drag: none;
  -khtml-user-drag: none;
}

input,
select {
  outline: none;
  vertical-align: middle;
  padding: 0;
  background-color: transparent;
  border: none;
}

button {
  font-family: inherit;
  color: inherit;
  background: 0 0;
}

img:not([src]),
img[src=""] {
  opacity: 0 !important;
}

html {
  touch-action: manipulation;
}

body,
html {
  overscroll-behavior: contain;
  scrollbar-width: thin;
  width: 100%;
}

body {
  overflow-anchor: none;
  margin: 0;
/*  padding: 0 !important;*/
  font-size: 12px;
  line-height: 1.6;
  background: var(--background-color);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scrollbar-color: #20313d transparent;
}

body,
body #__nuxt {
  overflow-x: hidden;
}

a,
body,
button,
input,
textarea {
  color: var(--text-color);
}

a,
a:active {
  text-decoration: none;
}

a:active:hover,
button {
  cursor: pointer;
}

button {
  border: none;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-size: 12px;
  background-color: transparent;
}

:focus {
  outline: none;
}

::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
}

input::-webkit-input-placeholder {
  color: #aaabbd;
}

input::-moz-input-placeholder {
  color: #aaabbd;
}

input::-ms-input-placeholder {
  color: #aaabbd;
}

[type="number"] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
}

::-ms-clear,
::-ms-reveal {
  display: none;
}

::-o-clear {
  display: none;
}

body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  margin-right: 10px;
  width: 0;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 5px;
}

::-webkit-scrollbar-track {
  background: #0085c7;
  border-radius: 5px;
}

* {
  scrollbar-color: var(--shadow-color) transparent;
  scrollbar-width: thin;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.common-btn {
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  transition-duration: 0.3s;
  transition-timing-function: var(--cubic-bezier);
}

.common-btn:active {
  transform: scale(0.95);
}

:root {
  --text-color: #fff;
  --background-color: linear-gradient(180deg, #701be0, #385ae5);
  --box-color: #6387f5;
  --shadow-color: #fff;
  --border-radius: 5px;
  --cubic-bezier: cubic-bezier(0.36, 0.66, 0.04, 1);
}

.main {
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.main:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../../../img/bg.png) no-repeat top;
  position: fixed;
  z-index: -1;
}

img[lazy="loading"] {
  box-shadow: 0 9px 35px 0 hsla(0, 0%, 4%, 0.3);
  border-radius: 18px;
}

.fadeOrigin-enter,
.fadeOrigin-exit-done {
  transform: scale(0);
  opacity: 0;
  transform-origin: right top;
}

.fadeOrigin-enter-active,
.fadeOrigin-exit-active {
  transform: scale(1);
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease-out;
}

.fadeOrigin-exit {
  transform: scale(1);
  transform-origin: right top;
  opacity: 1;
}

.fadeOrigin-exit-active {
  transform: scale(0);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease-out;
}

.fade-enter,
.fade-exit-done {
  opacity: 0;
}

.fade-enter-active,
.fade-exit-active {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.fade-exit {
  opacity: 1;
}

.fade-exit-active {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slide-enter,
.slide-exit-done {
  transform: scale(0);
  opacity: 0;
}

.slide-enter-active,
.slide-exit-active {
  transform: scale(1);
  opacity: 1;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.slide-exit {
  transform: scale(1);
  opacity: 1;
}

.slide-exit-active {
  transform: scale(0);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

@media (max-width: 750px) {
  .main:before {
    background: url(../../../img/bgh5.png) no-repeat top;
    background-size: cover;
  }

  body::-webkit-scrollbar {
    margin-right: 1.3333333333vw;
  }

  ::-webkit-scrollbar {
    width: 1.3333333333vw;
  }

  img[lazy="loading"] {
    border-radius: 2.6666666667vw;
    box-shadow: 0 1.3333333333vw 5.3333333333vw 0 hsla(0, 0%, 4%, 0.3);
  }
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(1turn);
  }
}

@keyframes zoom_enter {
  0% {
    transform: scale(0.3) translateY(-50%);
  }
}

@keyframes zoom_leave {
  to {
    transform: scale(0.3) translateY(-50%);
  }
}

@keyframes height_enter {
  0% {
    transform: translateY(100%);
  }
}

@keyframes height_leave {
  to {
    transform: translateY(100%);
  }
}

.PageFooter_footer__Wfz1O {
  width: 100%;
  background: url(../../../img/footer/bg.png) no-repeat bottom;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
}

.PageFooter_footer__top__XYR_q {
  width: 1052px;
  padding-top: 20px;
}

.PageFooter_footer__top__XYR_q .PageFooter_item___KBF8 {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
  padding-left: 60px;
  position: relative;
}

.PageFooter_footer__top__XYR_q .PageFooter_item___KBF8 .PageFooter_p1__bMiqZ {
  font-weight: 800;
  font-size: 40px;
  line-height: 42px;
  color: #0d1828;
}

.PageFooter_footer__top__XYR_q .PageFooter_item___KBF8 .PageFooter_p2__N5_xX {
  color: #0d1828;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  margin-top: 30px;
}

.PageFooter_footer__top__XYR_q .PageFooter_item___KBF8 .PageFooter_p3__gJStC {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  margin-top: 30px;
}

.PageFooter_footer__top__XYR_q
  .PageFooter_item___KBF8
  .PageFooter_games__QsJ7R {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.PageFooter_footer__top__XYR_q
  .PageFooter_item___KBF8
  .PageFooter_games__QsJ7R
  .PageFooter_name__zOOUh {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
}

.PageFooter_footer__top__XYR_q .PageFooter_item___KBF8:last-child {
  margin-bottom: -30px;
}

.PageFooter_footer__top__XYR_q .PageFooter_item___KBF8:before {
  content: "";
  background: url(../../../img/footer/tip.svg) no-repeat 50%;
  background-size: contain;
  width: 43px;
  height: 43px;
  position: absolute;
  left: 0;
  top: 5px;
}

.PageFooter_footer__bottom__3_Sit {
  background: url(../../../img/footer/bottom-bg.png) no-repeat 0 100%;
  width: 100%;
  height: 180px;
  display: flex;
  align-items: flex-end;
}

.PageFooter_footer__bottom__3_Sit .PageFooter_content__A3nFv {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 65px;
}

.PageFooter_footer__bottom__3_Sit
  .PageFooter_content__A3nFv
  .PageFooter_logo__70kJU {
  margin-top: -60px;
  width: 263px;
  height: 56px;
}

.PageFooter_footer__bottom__3_Sit
  .PageFooter_content__A3nFv
  .PageFooter_logoH5__X8XuW {
  display: none;
}

.PageFooter_footer__bottom__3_Sit
  .PageFooter_content__A3nFv
  .PageFooter_list__T9JnF {
  margin-left: 100px;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.PageFooter_footer__bottom__3_Sit
  .PageFooter_content__A3nFv
  .PageFooter_list__item__buKLk {
  color: #c0dbff;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  margin-right: 40px;
}

.PageFooter_footer__bottom__3_Sit
  .PageFooter_content__A3nFv
  .PageFooter_list__item__buKLk:last-child {
  margin-right: 0;
}

.PageFooter_footer__bottom__3_Sit
  .PageFooter_content__A3nFv
  .PageFooter_list__T9JnF
  .PageFooter_right__e7fvX {
  position: absolute;
  right: -274px;
  bottom: 0;
}

.PageFooter_footer__bottom__3_Sit
  .PageFooter_content__A3nFv
  .PageFooter_h5-title__R7hTT {
  display: none;
}

@media (max-width: 1650px) {
  .PageFooter_footer__top__XYR_q .PageFooter_item___KBF8:last-child {
    margin-bottom: 30px;
  }

  .PageFooter_footer__bottom__3_Sit {
    background: none;
    height: 80px;
  }

  .PageFooter_footer__bottom__3_Sit .PageFooter_content__A3nFv {
    height: 80px;
    background: linear-gradient(180deg, #701be0, #385ae5);
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .PageFooter_footer__bottom__3_Sit
    .PageFooter_content__A3nFv
    .PageFooter_logo__70kJU {
    display: none;
  }

  .PageFooter_footer__bottom__3_Sit
    .PageFooter_content__A3nFv
    .PageFooter_list__T9JnF {
    margin-left: 0;
  }

  .PageFooter_footer__bottom__3_Sit
    .PageFooter_content__A3nFv
    .PageFooter_list__T9JnF
    .PageFooter_right__e7fvX {
    display: none;
  }
}

@media (max-width: 1072px) {
  .PageFooter_footer__top__XYR_q {
    width: 730px;
  }

  .PageFooter_footer__bottom__3_Sit
    .PageFooter_content__A3nFv
    .PageFooter_list__item__buKLk {
    font-size: 16px;
    line-height: 22px;
    margin-right: 20px;
  }
}

@media (max-width: 750px) {
  .PageFooter_footer__top__XYR_q {
    width: 100%;
    padding: 5.3333333333vw 16vw 0;
  }

  .PageFooter_footer__top__XYR_q .PageFooter_item___KBF8 {
    margin-bottom: 8vw;
    padding-left: 0;
  }

  .PageFooter_footer__top__XYR_q .PageFooter_item___KBF8 .PageFooter_p1__bMiqZ {
    font-size: 5.3333333333vw;
    line-height: 6.9333333333vw;
  }

  .PageFooter_footer__top__XYR_q .PageFooter_item___KBF8 .PageFooter_p2__N5_xX,
  .PageFooter_footer__top__XYR_q .PageFooter_item___KBF8 .PageFooter_p3__gJStC {
    font-size: 3.7333333333vw;
    line-height: 4.8vw;
    margin-top: 4.2666666667vw;
  }

  .PageFooter_footer__top__XYR_q
    .PageFooter_item___KBF8
    .PageFooter_games__QsJ7R {
    margin-top: 4.2666666667vw;
  }

  .PageFooter_footer__top__XYR_q
    .PageFooter_item___KBF8
    .PageFooter_games__QsJ7R
    .PageFooter_name__zOOUh {
    font-size: 3.7333333333vw;
    line-height: 4.8vw;
    color: #0d1828;
  }

  .PageFooter_footer__top__XYR_q .PageFooter_item___KBF8:last-child {
    margin-bottom: 8vw;
  }

  .PageFooter_footer__top__XYR_q .PageFooter_item___KBF8:before {
    display: none;
  }

  .PageFooter_footer__bottom__3_Sit {
    height: auto;
  }

  .PageFooter_footer__bottom__3_Sit .PageFooter_content__A3nFv {
    height: auto;
    flex-direction: column;
  }

  .PageFooter_footer__bottom__3_Sit
    .PageFooter_content__A3nFv
    .PageFooter_logoH5__X8XuW {
    display: block;
    margin: 4vw 0;
  }

  .PageFooter_footer__bottom__3_Sit
    .PageFooter_content__A3nFv
    .PageFooter_list__T9JnF {
    width: 100%;
    padding: 0 4.2666666667vw;
    flex-direction: column;
  }

  .PageFooter_footer__bottom__3_Sit
    .PageFooter_content__A3nFv
    .PageFooter_list__item__buKLk {
    border-radius: 14.4vw;
    background: #4f23a8;
    height: 13.8666666667vw;
    width: 100%;
    color: #c0dbff;
    font-size: 3.7333333333vw;
    line-height: 5.0666666667vw;
    margin-right: 0;
    margin-bottom: 1.0666666667vw;
    display: flex;
    align-items: center;
    padding: 3.2vw 6.4vw;
  }

  .PageFooter_footer__bottom__3_Sit
    .PageFooter_content__A3nFv
    .PageFooter_h5-title__R7hTT {
    display: block;
    font-weight: 600;
    font-size: 3.7333333333vw;
    line-height: 8vw;
    opacity: 0.6;
    margin: 6.4vw 0;
  }
}

.DialogMenu_dialog__JSNnx {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 31;
  border-radius: 16px;
  background: linear-gradient(180deg, #701be0, #385ae5);
  overflow: hidden;
}

.DialogMenu_dialog__JSNnx .DialogMenu_item__aoSRV {
  display: flex;
  align-items: center;
  position: relative;
  height: 50px;
  cursor: pointer;
  padding: 0 30px;
}

.DialogMenu_dialog__JSNnx .DialogMenu_item__aoSRV img {
  width: 24px;
  height: 24px;
}

.DialogMenu_dialog__JSNnx .DialogMenu_item__aoSRV span {
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
  margin-left: 10px;
}

.DialogMenu_dialog__JSNnx .DialogMenu_item__aoSRV:hover {
  background: hsla(0, 0%, 100%, 0.3);
}

@media (max-width: 750px) {
  .DialogMenu_dialog__JSNnx {
    top: 16vw;
    right: 5.3333333333vw;
  }

  .DialogMenu_dialog__JSNnx .DialogMenu_item__aoSRV {
    height: 13.3333333333vw;
    padding: 0 8vw;
  }

  .DialogMenu_dialog__JSNnx .DialogMenu_item__aoSRV img {
    width: 6.4vw;
    height: 6.4vw;
  }

  .DialogMenu_dialog__JSNnx .DialogMenu_item__aoSRV span {
    font-size: 4.8vw;
    line-height: 6.4vw;
    margin-left: 2.6666666667vw;
  }

  .DialogMenu_dialog__JSNnx .DialogMenu_item__aoSRV:hover {
    background: none;
  }
}

.install_install__WyRir {
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-right: 12px;
  cursor: pointer;
}

.install_install__WyRir img {
  width: 100%;
  height: 100%;
}

.install_install__WyRir:hover {
  transform: scale(1.1);
}

@media (max-width: 1225px) {
  .install_install__WyRir {
    width: 54px;
    height: 54px;
    margin-right: 16px;
  }

  .install_install__WyRir:hover {
    transform: scale(1);
  }
}

@media (max-width: 750px) {
  .install_install__WyRir {
    width: 12.8vw;
    height: 12.8vw;
    margin-right: 2.6666666667vw;
  }
}

.PageHeader_header__T36r7 {
  width: 100%;
  height: 120px;
  position: relative;
}

.PageHeader_header__main__41o25 {
  width: 100%;
  height: 120px;
  display: flex;

  justify-content: space-between;
  z-index: 31;
  padding: 0 50px;
}

.PageHeader_header__main__41o25 .PageHeader_logo__SJ6jA {
  display: block;
  height: 56px;
  margin-top: 12px;
}

.PageHeader_header__main__41o25 .PageHeader_menu__3OOgX {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  height: 46px;
  margin-top: 20px;
}

.PageHeader_header__main__41o25 .PageHeader_menu-item__mUAn_ {
  background: url(../../../img/header/nav-bg.svg) no-repeat 50%;
  background-size: contain;
  flex-shrink: 0;
  width: 156px;
  height: 100%;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
}

.PageHeader_header__main__41o25 .PageHeader_menu-item__mUAn_ img {
  margin-top: -5px;
  margin-right: 5px;
}

.PageHeader_header__main__41o25
  .PageHeader_menu-item__mUAn_
  .PageHeader_path__82JYX {
  margin-top: -5px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: #fff;
}

.PageHeader_header__main__41o25
  .PageHeader_menu-item__mUAn_.PageHeader_active__p__8E,
.PageHeader_header__main__41o25 .PageHeader_menu-item__mUAn_:hover {
  background: url(../../../img/header/nav-bg-active.svg) no-repeat 50%;
}

.PageHeader_header__main__41o25 .PageHeader_menu-item__mUAn_:last-child {
  margin-right: 0;
}

.PageHeader_header__main__41o25 .PageHeader_extend-info__8fD1j {
  width: 260px;
  height: 40px;
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.PageHeader_header__main__41o25
  .PageHeader_extend-info__8fD1j
  .PageHeader_input-info__hNNa9 {
  width: 100%;
  height: 40px;
  border-radius: 48px;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 4px 15px;
}

.PageHeader_header__main__41o25
  .PageHeader_extend-info__8fD1j
  .PageHeader_input-info__hNNa9
  .PageHeader_icon__Nui3r {
  width: 60px;
  height: 32px;
  cursor: pointer;
  background: url(../../../img/header/search-bg.svg) no-repeat 50%;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}

.PageHeader_header__main__41o25
  .PageHeader_extend-info__8fD1j
  .PageHeader_input-info__hNNa9
  .PageHeader_input__DY3py {
  flex: 1 1;
  min-width: 0;
  font-size: 16px;
  line-height: 19px;
  font-weight: 600;
  color: hsla(0, 0%, 100%, 0.75);
}
input::placeholder {
  color: white;
}

.PageHeader_header__main__41o25 .PageHeader_h5Active__CrPM_ {
  display: none;
}

.PageHeader_header__main__41o25:before {
  content: "";
  background: url(../../../img/header/logoBg.svg) no-repeat;
  background-size: contain;
  width: 436px;
  height: 120px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media (max-width: 1225px) {
  .PageHeader_header__main__41o25 .PageHeader_extend-info__8fD1j,
  .PageHeader_header__main__41o25 .PageHeader_menu__3OOgX {
    display: none;
  }

  .PageHeader_header__main__41o25 .PageHeader_h5Active__CrPM_ {
    display: flex;
    align-items: center;
    height: 54px;
    margin-top: 20px;
  }

  .PageHeader_header__main__41o25
    .PageHeader_h5Active__CrPM_
    .PageHeader_menuH5__AAAaI,
  .PageHeader_header__main__41o25
    .PageHeader_h5Active__CrPM_
    .PageHeader_search__bAzoq {
    width: 54px;
    height: 54px;
  }

  .PageHeader_header__main__41o25
    .PageHeader_h5Active__CrPM_
    .PageHeader_search__bAzoq {
    margin-right: 16px;
  }
}

@media (max-width: 750px) {
  .PageHeader_header__T36r7 {
    height: 19.2vw;
  }

  .PageHeader_header__main__41o25 {
    width: 100%;
    height: 19.2vw;
    padding: 0 4.2666666667vw;
  }

  .PageHeader_header__main__41o25 .PageHeader_logo__SJ6jA {
    display: block;
    width: 35.2vw;
    height: 7.4666666667vw;
    margin-top: 2.9333333333vw;
  }

  .PageHeader_header__main__41o25 .PageHeader_logo__SJ6jA img {
    width: 100%;
    height: 100%;
  }

  .PageHeader_header__main__41o25 .PageHeader_h5Active__CrPM_ {
    height: 12.8vw;
    margin-top: 1.3333333333vw;
  }

  .PageHeader_header__main__41o25
    .PageHeader_h5Active__CrPM_
    .PageHeader_menuH5__AAAaI,
  .PageHeader_header__main__41o25
    .PageHeader_h5Active__CrPM_
    .PageHeader_search__bAzoq {
    width: 12.8vw;
    height: 12.8vw;
  }

  .PageHeader_header__main__41o25
    .PageHeader_h5Active__CrPM_
    .PageHeader_menuH5__AAAaI
    img,
  .PageHeader_header__main__41o25
    .PageHeader_h5Active__CrPM_
    .PageHeader_search__bAzoq
    img {
    width: 100%;
    height: 100%;
  }

  .PageHeader_header__main__41o25
    .PageHeader_h5Active__CrPM_
    .PageHeader_search__bAzoq {
    margin-right: 2.6666666667vw;
  }

  .PageHeader_header__main__41o25:before {
    content: "";
    background: url(../../../img/header/logoBgH5.svg) no-repeat;
    background-size: contain;
    width: 48.2666666667vw;
    height: 19.2vw;
  }

  .PageHeader_header__T36r7.PageHeader_isPlay__5_Mqk {
    display: none;
  }
}

:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: hsla(0, 0%, 100%, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    90deg,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translateZ(var(--toastify-z-index));
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}

.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}

.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}

.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}

.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}

.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}

.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }

  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }

  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }

  .Toastify__toast-container--rtl {
    right: 0;
    left: auto;
  }
}

.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  z-index: 0;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--close-on-click {
  cursor: pointer;
}

.Toastify__toast-body {
  margin: auto 0;
  flex: 1 1 auto;
  padding: 6px;
  display: flex;
  align-items: center;
}

.Toastify__toast-body > div:last-child {
  word-break: break-word;
  flex: 1 1;
}

.Toastify__toast-icon {
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
  width: 20px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}

.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}

.Toastify__toast-theme--colored.Toastify__toast--default,
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}

.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}

.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}

.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}

.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}

.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  align-self: flex-start;
}

.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}

.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}

.Toastify__close-button:focus,
.Toastify__close-button:hover {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}

.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: auto;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes Toastify__bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes Toastify__bounceInUp {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes Toastify__bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.Toastify__bounce-enter--bottom-left,
.Toastify__bounce-enter--top-left {
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--bottom-right,
.Toastify__bounce-enter--top-right {
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--bottom-left,
.Toastify__bounce-exit--top-left {
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--bottom-right,
.Toastify__bounce-exit--top-right {
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes Toastify__zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  0% {
    transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotateX(-5deg);
  }

  to {
    transform: perspective(400px);
  }
}

@keyframes Toastify__flipOut {
  0% {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  0% {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes Toastify__slideInLeft {
  0% {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes Toastify__slideInUp {
  0% {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes Toastify__slideInDown {
  0% {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes Toastify__slideOutRight {
  0% {
    transform: translateZ(0);
  }

  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}

@keyframes Toastify__slideOutLeft {
  0% {
    transform: translateZ(0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}

@keyframes Toastify__slideOutDown {
  0% {
    transform: translateZ(0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}

@keyframes Toastify__slideOutUp {
  0% {
    transform: translateZ(0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}

.Toastify__slide-enter--bottom-left,
.Toastify__slide-enter--top-left {
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--bottom-right,
.Toastify__slide-enter--top-right {
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--bottom-left,
.Toastify__slide-exit--top-left {
  animation-name: Toastify__slideOutLeft;
}

.Toastify__slide-exit--bottom-right,
.Toastify__slide-exit--top-right {
  animation-name: Toastify__slideOutRight;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  0% {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(1turn);
  }
}

@font-face {
  font-family: __Fredoka_824319;
  font-style: normal;
  font-weight: 300 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/resource/media/37a3135ddca1ef89-s.woff2) format("woff2");
  unicode-range: U+0590-05ff, U+200c-2010, U+20aa, U+25cc, U+fb1d-fb4f;
}

@font-face {
  font-family: __Fredoka_824319;
  font-style: normal;
  font-weight: 300 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/resource/media/9815c8ed727d3163-s.woff2) format("woff2");
  unicode-range: U+0100-02af, U+0304, U+0308, U+0329, U+1e00-1e9f, U+1ef2-1eff,
    U+2020, U+20a0-20ab, U+20ad-20c0, U+2113, U+2c60-2c7f, U+a720-a7ff;
}

@font-face {
  font-family: __Fredoka_824319;
  font-style: normal;
  font-weight: 300 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(../media/c95a3d7e5d1d39ce-s.p.woff2) format("woff2");
  unicode-range: U+00??, U+0131, U+0152-0153, U+02bb-02bc, U+02c6, U+02da,
    U+02dc, U+0304, U+0308, U+0329, U+2000-206f, U+2074, U+20ac, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+feff, U+fffd;
}

@font-face {
  font-family: __Fredoka_Fallback_824319;
  src: local("Arial");
  ascent-override: 95.33%;
  descent-override: 23.1%;
  line-gap-override: 0%;
  size-adjust: 102.17%;
}

.PageFooter_logoH5__X8XuW img {
  width: 100px;
}

.PageHeader_logo__SJ6jA img {
  width: 250px;
}
.PageFooter_logo__70kJU img {
  width: 250px;
}

.__className_824319 {
  font-family: __Fredoka_824319, __Fredoka_Fallback_824319;
  font-style: normal;
}
