: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%,.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); transform: translateZ(var(--toastify-z-index)); position: fixed; padding: 4px; width: var(--toastify-toast-width); box-sizing: border-box; color: rgb(255, 255, 255); }
.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: 0px; left: 0px; margin: 0px; }
  .Toastify__toast-container--top-center, .Toastify__toast-container--top-left, .Toastify__toast-container--top-right { top: 0px; transform: translateX(0px); }
  .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-right { bottom: 0px; transform: translateX(0px); }
  .Toastify__toast-container--rtl { right: 0px; 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: rgba(0, 0, 0, 0.1) 0px 1px 10px 0px, rgba(0, 0, 0, 0.05) 0px 2px 15px 0px; 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 0px; flex: 1 1 auto; padding: 6px; display: flex; align-items: center; }
.Toastify__toast-body > div:last-child { word-break: break-word; flex: 1 1 0%; }
.Toastify__toast-icon { 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: 0px; border-radius: 0px; }
}
.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: rgb(255, 255, 255); background: transparent; outline: none; border: none; padding: 0px; cursor: pointer; opacity: 0.7; transition: 0.3s; align-self: flex-start; }
.Toastify__close-button--light { color: rgb(0, 0, 0); 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); }
  100% { transform: scaleX(0); }
}
.Toastify__progress-bar { position: absolute; bottom: 0px; left: 0px; width: 100%; height: 5px; z-index: var(--toastify-z-index); opacity: 0.7; transform-origin: left center; }
.Toastify__progress-bar--animated { animation: auto linear 0s 1 normal forwards running Toastify__trackProgress; }
.Toastify__progress-bar--controlled { transition: transform 0.2s; }
.Toastify__progress-bar--rtl { right: 0px; left: auto; transform-origin: right center; }
.Toastify__spinner { width: 20px; height: 20px; box-sizing: border-box; border-width: 2px; border-style: solid; border-image: initial; border-radius: 100%; border-top-color: ; border-bottom-color: ; border-left-color: ; border-right-color: var(--toastify-spinner-color); animation: 0.65s linear 0s infinite normal none running Toastify__spin; }
@keyframes Toastify__bounceInRight { 
  0%, 60%, 75%, 90%, 100% { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% { opacity: 0; transform: translate3d(3000px, 0px, 0px); }
  60% { opacity: 1; transform: translate3d(-25px, 0px, 0px); }
  75% { transform: translate3d(10px, 0px, 0px); }
  90% { transform: translate3d(-5px, 0px, 0px); }
  100% { transform: none; }
}
@keyframes Toastify__bounceOutRight { 
  20% { opacity: 1; transform: translate3d(-20px, 0px, 0px); }
  100% { opacity: 0; transform: translate3d(2000px, 0px, 0px); }
}
@keyframes Toastify__bounceInLeft { 
  0%, 60%, 75%, 90%, 100% { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% { opacity: 0; transform: translate3d(-3000px, 0px, 0px); }
  60% { opacity: 1; transform: translate3d(25px, 0px, 0px); }
  75% { transform: translate3d(-10px, 0px, 0px); }
  90% { transform: translate3d(5px, 0px, 0px); }
  100% { transform: none; }
}
@keyframes Toastify__bounceOutLeft { 
  20% { opacity: 1; transform: translate3d(20px, 0px, 0px); }
  100% { opacity: 0; transform: translate3d(-2000px, 0px, 0px); }
}
@keyframes Toastify__bounceInUp { 
  0%, 60%, 75%, 90%, 100% { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% { opacity: 0; transform: translate3d(0px, 3000px, 0px); }
  60% { opacity: 1; transform: translate3d(0px, -20px, 0px); }
  75% { transform: translate3d(0px, 10px, 0px); }
  90% { transform: translate3d(0px, -5px, 0px); }
  100% { transform: translateZ(0px); }
}
@keyframes Toastify__bounceOutUp { 
  20% { transform: translate3d(0px, -10px, 0px); }
  40%, 45% { opacity: 1; transform: translate3d(0px, 20px, 0px); }
  100% { opacity: 0; transform: translate3d(0px, -2000px, 0px); }
}
@keyframes Toastify__bounceInDown { 
  0%, 60%, 75%, 90%, 100% { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% { opacity: 0; transform: translate3d(0px, -3000px, 0px); }
  60% { opacity: 1; transform: translate3d(0px, 25px, 0px); }
  75% { transform: translate3d(0px, -10px, 0px); }
  90% { transform: translate3d(0px, 5px, 0px); }
  100% { transform: none; }
}
@keyframes Toastify__bounceOutDown { 
  20% { transform: translate3d(0px, 10px, 0px); }
  40%, 45% { opacity: 1; transform: translate3d(0px, -20px, 0px); }
  100% { opacity: 0; transform: translate3d(0px, 2000px, 0px); }
}
.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); }
  100% { 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); }
  100% { transform: perspective(400px); }
}
@keyframes Toastify__flipOut { 
  0% { transform: perspective(400px); }
  30% { transform: perspective(400px) rotateX(-20deg); opacity: 1; }
  100% { 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%, 0px, 0px); visibility: visible; }
  100% { transform: translateZ(0px); }
}
@keyframes Toastify__slideInLeft { 
  0% { transform: translate3d(-110%, 0px, 0px); visibility: visible; }
  100% { transform: translateZ(0px); }
}
@keyframes Toastify__slideInUp { 
  0% { transform: translate3d(0px, 110%, 0px); visibility: visible; }
  100% { transform: translateZ(0px); }
}
@keyframes Toastify__slideInDown { 
  0% { transform: translate3d(0px, -110%, 0px); visibility: visible; }
  100% { transform: translateZ(0px); }
}
@keyframes Toastify__slideOutRight { 
  0% { transform: translateZ(0px); }
  100% { visibility: hidden; transform: translate3d(110%, 0px, 0px); }
}
@keyframes Toastify__slideOutLeft { 
  0% { transform: translateZ(0px); }
  100% { visibility: hidden; transform: translate3d(-110%, 0px, 0px); }
}
@keyframes Toastify__slideOutDown { 
  0% { transform: translateZ(0px); }
  100% { visibility: hidden; transform: translate3d(0px, 500px, 0px); }
}
@keyframes Toastify__slideOutUp { 
  0% { transform: translateZ(0px); }
  100% { visibility: hidden; transform: translate3d(0px, -500px, 0px); }
}
.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); }
  100% { transform: rotate(1turn); }
}
@font-face { font-family: __Inter_e8ce0c; font-style: normal; font-weight: 100 900; font-display: swap; src: url("/_next/static/media/55c55f0601d81cf3-s.woff2") format("woff2"); unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }
@font-face { font-family: __Inter_e8ce0c; font-style: normal; font-weight: 100 900; font-display: swap; src: url("/_next/static/media/26a46d62cd723877-s.woff2") format("woff2"); unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116; }
@font-face { font-family: __Inter_e8ce0c; font-style: normal; font-weight: 100 900; font-display: swap; src: url("/_next/static/media/97e0cb1ae144a2a9-s.woff2") format("woff2"); unicode-range: U+1F00-1FFF; }
@font-face { font-family: __Inter_e8ce0c; font-style: normal; font-weight: 100 900; font-display: swap; src: url("/_next/static/media/581909926a08bbc8-s.woff2") format("woff2"); unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF; }
@font-face { font-family: __Inter_e8ce0c; font-style: normal; font-weight: 100 900; font-display: swap; src: url("/_next/static/media/df0a9ae256c0569c-s.woff2") format("woff2"); unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB; }
@font-face { font-family: __Inter_e8ce0c; font-style: normal; font-weight: 100 900; font-display: swap; src: url("/_next/static/media/8e9860b6e62d6359-s.woff2") format("woff2"); unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, 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: __Inter_e8ce0c; font-style: normal; font-weight: 100 900; font-display: swap; src: url("/_next/static/media/e4af272ccee01ff0-s.p.woff2") format("woff2"); unicode-range: U+0-FF, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: __Inter_Fallback_e8ce0c; src: local("Arial"); ascent-override: 90.2%; descent-override: 22.48%; line-gap-override: 0%; size-adjust: 107.4%; }
.__className_e8ce0c { font-family: __Inter_e8ce0c, __Inter_Fallback_e8ce0c; font-style: normal; }
.__variable_e8ce0c { --font-inter: "__Inter_e8ce0c","__Inter_Fallback_e8ce0c"; }
@font-face { font-family: __Lato_33ae59; font-style: normal; font-weight: 100; font-display: swap; src: url("/_next/static/media/4caeef6da8d39a4c-s.woff2") format("woff2"); unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, 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: __Lato_33ae59; font-style: normal; font-weight: 100; font-display: swap; src: url("/_next/static/media/55c20a7790588da9-s.p.woff2") format("woff2"); unicode-range: U+0-FF, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: __Lato_33ae59; font-style: normal; font-weight: 300; font-display: swap; src: url("/_next/static/media/6ec89c3f4265bc9b-s.woff2") format("woff2"); unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, 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: __Lato_33ae59; font-style: normal; font-weight: 300; font-display: swap; src: url("/_next/static/media/155cae559bbd1a77-s.p.woff2") format("woff2"); unicode-range: U+0-FF, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: __Lato_33ae59; font-style: normal; font-weight: 400; font-display: swap; src: url("/_next/static/media/f1df658da56627d0-s.woff2") format("woff2"); unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, 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: __Lato_33ae59; font-style: normal; font-weight: 400; font-display: swap; src: url("/_next/static/media/4de1fea1a954a5b6-s.p.woff2") format("woff2"); unicode-range: U+0-FF, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: __Lato_33ae59; font-style: normal; font-weight: 700; font-display: swap; src: url("/_next/static/media/162938472036e0a8-s.woff2") format("woff2"); unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, 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: __Lato_33ae59; font-style: normal; font-weight: 700; font-display: swap; src: url("/_next/static/media/6d664cce900333ee-s.p.woff2") format("woff2"); unicode-range: U+0-FF, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: __Lato_Fallback_33ae59; src: local("Arial"); ascent-override: 101.32%; descent-override: 21.87%; line-gap-override: 0%; size-adjust: 97.42%; }
.__className_33ae59 { font-family: __Lato_33ae59, __Lato_Fallback_33ae59; font-style: normal; }
.__variable_33ae59 { --font-lato: "__Lato_33ae59","__Lato_Fallback_33ae59"; }
@font-face { font-family: __Michroma_4e4be9; font-style: normal; font-weight: 400; font-display: swap; src: url("/_next/static/media/2a8b7f8c104bd133-s.woff2") format("woff2"); unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, 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: __Michroma_4e4be9; font-style: normal; font-weight: 400; font-display: swap; src: url("/_next/static/media/06084a2f60b23053-s.p.woff2") format("woff2"); unicode-range: U+0-FF, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: __Michroma_Fallback_4e4be9; src: local("Arial"); ascent-override: 81.53%; descent-override: 18.73%; line-gap-override: 0%; size-adjust: 141.81%; }
.__className_4e4be9 { font-family: __Michroma_4e4be9, __Michroma_Fallback_4e4be9; font-weight: 400; font-style: normal; }
.__variable_4e4be9 { --font-michroma: "__Michroma_4e4be9","__Michroma_Fallback_4e4be9"; }
@font-face { font-family: __montserratAlt_a7cf4f; src: url("/_next/static/media/242482f14b539d37-s.p.ttf") format("truetype"); font-display: swap; font-weight: 400; font-style: normal; }
@font-face { font-family: __montserratAlt_a7cf4f; src: url("/_next/static/media/db6bced8be49659c-s.p.ttf") format("truetype"); font-display: swap; font-weight: 600; font-style: normal; }
@font-face { font-family: __montserratAlt_Fallback_a7cf4f; src: local("Arial"); ascent-override: 64.99%; descent-override: 16.99%; line-gap-override: 0%; size-adjust: 114.17%; }
.__className_a7cf4f { font-family: __montserratAlt_a7cf4f, __montserratAlt_Fallback_a7cf4f; }
.__variable_a7cf4f { --font-montserrat-alt: "__montserratAlt_a7cf4f","__montserratAlt_Fallback_a7cf4f"; }
*, ::after, ::before { box-sizing: border-box; }
html { font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; line-height: 1.15; text-size-adjust: 100%; tab-size: 4; }
body { margin: 0px; }
hr { height: 0px; color: inherit; }
abbr[title] { text-decoration: underline dotted; }
b, strong { font-weight: bolder; }
code, kbd, pre, samp { font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; font-size: 1em; }
small { font-size: 80%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sub { bottom: -0.25em; }
sup { top: -0.5em; }
table { text-indent: 0px; border-color: inherit; }
button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0px; }
button, select { text-transform: none; }
[type="button"], [type="reset"], [type="submit"], button { appearance: button; }
legend { padding: 0px; }
progress { vertical-align: baseline; }
::-webkit-inner-spin-button, ::-webkit-outer-spin-button { height: auto; }
[type="search"] { appearance: textfield; outline-offset: -2px; }
::-webkit-search-decoration { appearance: none; }
::-webkit-file-upload-button { appearance: button; font: inherit; }
summary { display: list-item; }
[data-rk] .iekbcc0 { border: 0px; box-sizing: border-box; font-size: 100%; line-height: normal; margin: 0px; padding: 0px; text-align: left; vertical-align: baseline; -webkit-tap-highlight-color: transparent; }
[data-rk] .iekbcc1 { list-style: none; }
[data-rk] .iekbcc2 { quotes: none; }
[data-rk] .iekbcc2::after, [data-rk] .iekbcc2::before { content: ""; }
[data-rk] .iekbcc3 { border-collapse: collapse; border-spacing: 0px; }
[data-rk] .iekbcc4 { appearance: none; }
[data-rk] .iekbcc5 { outline: none; }
[data-rk] .iekbcc5::placeholder { opacity: 1; }
[data-rk] .iekbcc6 { background-color: transparent; color: inherit; }
[data-rk] .iekbcc7:disabled { opacity: 1; }
[data-rk] .iekbcc8::-webkit-search-cancel-button { appearance: none; }
[data-rk] .iekbcc9 { background: none; cursor: pointer; text-align: left; }
[data-rk] .iekbcca { color: inherit; text-decoration: none; }
[data-rk] .ju367v0 { align-items: flex-start; }
[data-rk] .ju367v2 { align-items: flex-end; }
[data-rk] .ju367v4 { align-items: center; }
[data-rk] .ju367v6 { display: none; }
[data-rk] .ju367v8 { display: block; }
[data-rk] .ju367va { display: flex; }
[data-rk] .ju367vc { display: inline; }
[data-rk] .ju367ve { align-self: flex-start; }
[data-rk] .ju367vf { align-self: flex-end; }
[data-rk] .ju367vg { align-self: center; }
[data-rk] .ju367vh { background-size: cover; }
[data-rk] .ju367vi { border-radius: 1px; }
[data-rk] .ju367vj { border-radius: 6px; }
[data-rk] .ju367vk { border-radius: 10px; }
[data-rk] .ju367vl { border-radius: 13px; }
[data-rk] .ju367vm { border-radius: var(--rk-radii-actionButton); }
[data-rk] .ju367vn { border-radius: var(--rk-radii-connectButton); }
[data-rk] .ju367vo { border-radius: var(--rk-radii-menuButton); }
[data-rk] .ju367vp { border-radius: var(--rk-radii-modal); }
[data-rk] .ju367vq { border-radius: var(--rk-radii-modalMobile); }
[data-rk] .ju367vr { border-radius: 25%; }
[data-rk] .ju367vs { border-radius: 9999px; }
[data-rk] .ju367vt { border-style: solid; }
[data-rk] .ju367vu { border-width: 0px; }
[data-rk] .ju367vv { border-width: 1px; }
[data-rk] .ju367vw { border-width: 2px; }
[data-rk] .ju367vx { border-width: 4px; }
[data-rk] .ju367vy { cursor: pointer; }
[data-rk] .ju367vz { flex-direction: row; }
[data-rk] .ju367v10 { flex-direction: column; }
[data-rk] .ju367v11 { font-family: var(--rk-fonts-body); }
[data-rk] .ju367v12 { font-size: 12px; line-height: 18px; }
[data-rk] .ju367v13 { font-size: 13px; line-height: 18px; }
[data-rk] .ju367v14 { font-size: 14px; line-height: 18px; }
[data-rk] .ju367v15 { font-size: 16px; line-height: 20px; }
[data-rk] .ju367v16 { font-size: 18px; line-height: 24px; }
[data-rk] .ju367v17 { font-size: 20px; line-height: 24px; }
[data-rk] .ju367v18 { font-size: 23px; line-height: 29px; }
[data-rk] .ju367v19 { font-weight: 400; }
[data-rk] .ju367v1a { font-weight: 500; }
[data-rk] .ju367v1b { font-weight: 600; }
[data-rk] .ju367v1c { font-weight: 700; }
[data-rk] .ju367v1d { font-weight: 800; }
[data-rk] .ju367v1e { gap: 0px; }
[data-rk] .ju367v1f { gap: 1px; }
[data-rk] .ju367v1g { gap: 2px; }
[data-rk] .ju367v1h { gap: 3px; }
[data-rk] .ju367v1i { gap: 4px; }
[data-rk] .ju367v1j { gap: 5px; }
[data-rk] .ju367v1k { gap: 6px; }
[data-rk] .ju367v1l { gap: 8px; }
[data-rk] .ju367v1m { gap: 10px; }
[data-rk] .ju367v1n { gap: 12px; }
[data-rk] .ju367v1o { gap: 14px; }
[data-rk] .ju367v1p { gap: 16px; }
[data-rk] .ju367v1q { gap: 18px; }
[data-rk] .ju367v1r { gap: 20px; }
[data-rk] .ju367v1s { gap: 24px; }
[data-rk] .ju367v1t { gap: 28px; }
[data-rk] .ju367v1u { gap: 32px; }
[data-rk] .ju367v1v { gap: 36px; }
[data-rk] .ju367v1w { gap: 44px; }
[data-rk] .ju367v1x { gap: 64px; }
[data-rk] .ju367v1y { }
[data-rk] .ju367v1z { height: 1px; }
[data-rk] .ju367v20 { height: 2px; }
[data-rk] .ju367v21 { height: 4px; }
[data-rk] .ju367v22 { height: 8px; }
[data-rk] .ju367v23 { height: 12px; }
[data-rk] .ju367v24 { height: 20px; }
[data-rk] .ju367v25 { height: 24px; }
[data-rk] .ju367v26 { height: 28px; }
[data-rk] .ju367v27 { height: 30px; }
[data-rk] .ju367v28 { height: 32px; }
[data-rk] .ju367v29 { height: 34px; }
[data-rk] .ju367v2a { height: 36px; }
[data-rk] .ju367v2b { height: 40px; }
[data-rk] .ju367v2c { height: 44px; }
[data-rk] .ju367v2d { height: 48px; }
[data-rk] .ju367v2e { height: 54px; }
[data-rk] .ju367v2f { height: 60px; }
[data-rk] .ju367v2g { height: 200px; }
[data-rk] .ju367v2h { height: 100%; }
[data-rk] .ju367v2i { height: max-content; }
[data-rk] .ju367v2j { justify-content: flex-start; }
[data-rk] .ju367v2k { justify-content: flex-end; }
[data-rk] .ju367v2l { justify-content: center; }
[data-rk] .ju367v2m { justify-content: space-between; }
[data-rk] .ju367v2n { justify-content: space-around; }
[data-rk] .ju367v2o { text-align: left; }
[data-rk] .ju367v2p { text-align: center; }
[data-rk] .ju367v2q { text-align: inherit; }
[data-rk] .ju367v2r { margin-bottom: 0px; }
[data-rk] .ju367v2s { margin-bottom: 1px; }
[data-rk] .ju367v2t { margin-bottom: 2px; }
[data-rk] .ju367v2u { margin-bottom: 3px; }
[data-rk] .ju367v2v { margin-bottom: 4px; }
[data-rk] .ju367v2w { margin-bottom: 5px; }
[data-rk] .ju367v2x { margin-bottom: 6px; }
[data-rk] .ju367v2y { margin-bottom: 8px; }
[data-rk] .ju367v2z { margin-bottom: 10px; }
[data-rk] .ju367v30 { margin-bottom: 12px; }
[data-rk] .ju367v31 { margin-bottom: 14px; }
[data-rk] .ju367v32 { margin-bottom: 16px; }
[data-rk] .ju367v33 { margin-bottom: 18px; }
[data-rk] .ju367v34 { margin-bottom: 20px; }
[data-rk] .ju367v35 { margin-bottom: 24px; }
[data-rk] .ju367v36 { margin-bottom: 28px; }
[data-rk] .ju367v37 { margin-bottom: 32px; }
[data-rk] .ju367v38 { margin-bottom: 36px; }
[data-rk] .ju367v39 { margin-bottom: 44px; }
[data-rk] .ju367v3a { margin-bottom: 64px; }
[data-rk] .ju367v3b { margin-bottom: -1px; }
[data-rk] .ju367v3c { margin-left: 0px; }
[data-rk] .ju367v3d { margin-left: 1px; }
[data-rk] .ju367v3e { margin-left: 2px; }
[data-rk] .ju367v3f { margin-left: 3px; }
[data-rk] .ju367v3g { margin-left: 4px; }
[data-rk] .ju367v3h { margin-left: 5px; }
[data-rk] .ju367v3i { margin-left: 6px; }
[data-rk] .ju367v3j { margin-left: 8px; }
[data-rk] .ju367v3k { margin-left: 10px; }
[data-rk] .ju367v3l { margin-left: 12px; }
[data-rk] .ju367v3m { margin-left: 14px; }
[data-rk] .ju367v3n { margin-left: 16px; }
[data-rk] .ju367v3o { margin-left: 18px; }
[data-rk] .ju367v3p { margin-left: 20px; }
[data-rk] .ju367v3q { margin-left: 24px; }
[data-rk] .ju367v3r { margin-left: 28px; }
[data-rk] .ju367v3s { margin-left: 32px; }
[data-rk] .ju367v3t { margin-left: 36px; }
[data-rk] .ju367v3u { margin-left: 44px; }
[data-rk] .ju367v3v { margin-left: 64px; }
[data-rk] .ju367v3w { margin-left: -1px; }
[data-rk] .ju367v3x { margin-right: 0px; }
[data-rk] .ju367v3y { margin-right: 1px; }
[data-rk] .ju367v3z { margin-right: 2px; }
[data-rk] .ju367v40 { margin-right: 3px; }
[data-rk] .ju367v41 { margin-right: 4px; }
[data-rk] .ju367v42 { margin-right: 5px; }
[data-rk] .ju367v43 { margin-right: 6px; }
[data-rk] .ju367v44 { margin-right: 8px; }
[data-rk] .ju367v45 { margin-right: 10px; }
[data-rk] .ju367v46 { margin-right: 12px; }
[data-rk] .ju367v47 { margin-right: 14px; }
[data-rk] .ju367v48 { margin-right: 16px; }
[data-rk] .ju367v49 { margin-right: 18px; }
[data-rk] .ju367v4a { margin-right: 20px; }
[data-rk] .ju367v4b { margin-right: 24px; }
[data-rk] .ju367v4c { margin-right: 28px; }
[data-rk] .ju367v4d { margin-right: 32px; }
[data-rk] .ju367v4e { margin-right: 36px; }
[data-rk] .ju367v4f { margin-right: 44px; }
[data-rk] .ju367v4g { margin-right: 64px; }
[data-rk] .ju367v4h { margin-right: -1px; }
[data-rk] .ju367v4i { margin-top: 0px; }
[data-rk] .ju367v4j { margin-top: 1px; }
[data-rk] .ju367v4k { margin-top: 2px; }
[data-rk] .ju367v4l { margin-top: 3px; }
[data-rk] .ju367v4m { margin-top: 4px; }
[data-rk] .ju367v4n { margin-top: 5px; }
[data-rk] .ju367v4o { margin-top: 6px; }
[data-rk] .ju367v4p { margin-top: 8px; }
[data-rk] .ju367v4q { margin-top: 10px; }
[data-rk] .ju367v4r { margin-top: 12px; }
[data-rk] .ju367v4s { margin-top: 14px; }
[data-rk] .ju367v4t { margin-top: 16px; }
[data-rk] .ju367v4u { margin-top: 18px; }
[data-rk] .ju367v4v { margin-top: 20px; }
[data-rk] .ju367v4w { margin-top: 24px; }
[data-rk] .ju367v4x { margin-top: 28px; }
[data-rk] .ju367v4y { margin-top: 32px; }
[data-rk] .ju367v4z { margin-top: 36px; }
[data-rk] .ju367v50 { margin-top: 44px; }
[data-rk] .ju367v51 { margin-top: 64px; }
[data-rk] .ju367v52 { margin-top: -1px; }
[data-rk] .ju367v53 { max-width: 1px; }
[data-rk] .ju367v54 { max-width: 2px; }
[data-rk] .ju367v55 { max-width: 4px; }
[data-rk] .ju367v56 { max-width: 8px; }
[data-rk] .ju367v57 { max-width: 12px; }
[data-rk] .ju367v58 { max-width: 20px; }
[data-rk] .ju367v59 { max-width: 24px; }
[data-rk] .ju367v5a { max-width: 28px; }
[data-rk] .ju367v5b { max-width: 30px; }
[data-rk] .ju367v5c { max-width: 32px; }
[data-rk] .ju367v5d { max-width: 34px; }
[data-rk] .ju367v5e { max-width: 36px; }
[data-rk] .ju367v5f { max-width: 40px; }
[data-rk] .ju367v5g { max-width: 44px; }
[data-rk] .ju367v5h { max-width: 48px; }
[data-rk] .ju367v5i { max-width: 54px; }
[data-rk] .ju367v5j { max-width: 60px; }
[data-rk] .ju367v5k { max-width: 200px; }
[data-rk] .ju367v5l { max-width: 100%; }
[data-rk] .ju367v5m { max-width: max-content; }
[data-rk] .ju367v5n { min-width: 1px; }
[data-rk] .ju367v5o { min-width: 2px; }
[data-rk] .ju367v5p { min-width: 4px; }
[data-rk] .ju367v5q { min-width: 8px; }
[data-rk] .ju367v5r { min-width: 12px; }
[data-rk] .ju367v5s { min-width: 20px; }
[data-rk] .ju367v5t { min-width: 24px; }
[data-rk] .ju367v5u { min-width: 28px; }
[data-rk] .ju367v5v { min-width: 30px; }
[data-rk] .ju367v5w { min-width: 32px; }
[data-rk] .ju367v5x { min-width: 34px; }
[data-rk] .ju367v5y { min-width: 36px; }
[data-rk] .ju367v5z { min-width: 40px; }
[data-rk] .ju367v60 { min-width: 44px; }
[data-rk] .ju367v61 { min-width: 48px; }
[data-rk] .ju367v62 { min-width: 54px; }
[data-rk] .ju367v63 { min-width: 60px; }
[data-rk] .ju367v64 { min-width: 200px; }
[data-rk] .ju367v65 { min-width: 100%; }
[data-rk] .ju367v66 { min-width: max-content; }
[data-rk] .ju367v67 { overflow: hidden; }
[data-rk] .ju367v68 { padding-bottom: 0px; }
[data-rk] .ju367v69 { padding-bottom: 1px; }
[data-rk] .ju367v6a { padding-bottom: 2px; }
[data-rk] .ju367v6b { padding-bottom: 3px; }
[data-rk] .ju367v6c { padding-bottom: 4px; }
[data-rk] .ju367v6d { padding-bottom: 5px; }
[data-rk] .ju367v6e { padding-bottom: 6px; }
[data-rk] .ju367v6f { padding-bottom: 8px; }
[data-rk] .ju367v6g { padding-bottom: 10px; }
[data-rk] .ju367v6h { padding-bottom: 12px; }
[data-rk] .ju367v6i { padding-bottom: 14px; }
[data-rk] .ju367v6j { padding-bottom: 16px; }
[data-rk] .ju367v6k { padding-bottom: 18px; }
[data-rk] .ju367v6l { padding-bottom: 20px; }
[data-rk] .ju367v6m { padding-bottom: 24px; }
[data-rk] .ju367v6n { padding-bottom: 28px; }
[data-rk] .ju367v6o { padding-bottom: 32px; }
[data-rk] .ju367v6p { padding-bottom: 36px; }
[data-rk] .ju367v6q { padding-bottom: 44px; }
[data-rk] .ju367v6r { padding-bottom: 64px; }
[data-rk] .ju367v6s { }
[data-rk] .ju367v6t { padding-left: 0px; }
[data-rk] .ju367v6u { padding-left: 1px; }
[data-rk] .ju367v6v { padding-left: 2px; }
[data-rk] .ju367v6w { padding-left: 3px; }
[data-rk] .ju367v6x { padding-left: 4px; }
[data-rk] .ju367v6y { padding-left: 5px; }
[data-rk] .ju367v6z { padding-left: 6px; }
[data-rk] .ju367v70 { padding-left: 8px; }
[data-rk] .ju367v71 { padding-left: 10px; }
[data-rk] .ju367v72 { padding-left: 12px; }
[data-rk] .ju367v73 { padding-left: 14px; }
[data-rk] .ju367v74 { padding-left: 16px; }
[data-rk] .ju367v75 { padding-left: 18px; }
[data-rk] .ju367v76 { padding-left: 20px; }
[data-rk] .ju367v77 { padding-left: 24px; }
[data-rk] .ju367v78 { padding-left: 28px; }
[data-rk] .ju367v79 { padding-left: 32px; }
[data-rk] .ju367v7a { padding-left: 36px; }
[data-rk] .ju367v7b { padding-left: 44px; }
[data-rk] .ju367v7c { padding-left: 64px; }
[data-rk] .ju367v7d { }
[data-rk] .ju367v7e { padding-right: 0px; }
[data-rk] .ju367v7f { padding-right: 1px; }
[data-rk] .ju367v7g { padding-right: 2px; }
[data-rk] .ju367v7h { padding-right: 3px; }
[data-rk] .ju367v7i { padding-right: 4px; }
[data-rk] .ju367v7j { padding-right: 5px; }
[data-rk] .ju367v7k { padding-right: 6px; }
[data-rk] .ju367v7l { padding-right: 8px; }
[data-rk] .ju367v7m { padding-right: 10px; }
[data-rk] .ju367v7n { padding-right: 12px; }
[data-rk] .ju367v7o { padding-right: 14px; }
[data-rk] .ju367v7p { padding-right: 16px; }
[data-rk] .ju367v7q { padding-right: 18px; }
[data-rk] .ju367v7r { padding-right: 20px; }
[data-rk] .ju367v7s { padding-right: 24px; }
[data-rk] .ju367v7t { padding-right: 28px; }
[data-rk] .ju367v7u { padding-right: 32px; }
[data-rk] .ju367v7v { padding-right: 36px; }
[data-rk] .ju367v7w { padding-right: 44px; }
[data-rk] .ju367v7x { padding-right: 64px; }
[data-rk] .ju367v7y { }
[data-rk] .ju367v7z { padding-top: 0px; }
[data-rk] .ju367v80 { padding-top: 1px; }
[data-rk] .ju367v81 { padding-top: 2px; }
[data-rk] .ju367v82 { padding-top: 3px; }
[data-rk] .ju367v83 { padding-top: 4px; }
[data-rk] .ju367v84 { padding-top: 5px; }
[data-rk] .ju367v85 { padding-top: 6px; }
[data-rk] .ju367v86 { padding-top: 8px; }
[data-rk] .ju367v87 { padding-top: 10px; }
[data-rk] .ju367v88 { padding-top: 12px; }
[data-rk] .ju367v89 { padding-top: 14px; }
[data-rk] .ju367v8a { padding-top: 16px; }
[data-rk] .ju367v8b { padding-top: 18px; }
[data-rk] .ju367v8c { padding-top: 20px; }
[data-rk] .ju367v8d { padding-top: 24px; }
[data-rk] .ju367v8e { padding-top: 28px; }
[data-rk] .ju367v8f { padding-top: 32px; }
[data-rk] .ju367v8g { padding-top: 36px; }
[data-rk] .ju367v8h { padding-top: 44px; }
[data-rk] .ju367v8i { padding-top: 64px; }
[data-rk] .ju367v8j { }
[data-rk] .ju367v8k { position: absolute; }
[data-rk] .ju367v8l { position: fixed; }
[data-rk] .ju367v8m { position: relative; }
[data-rk] .ju367v8n { right: 0px; }
[data-rk] .ju367v8o { transition: 0.125s; }
[data-rk] .ju367v8p { transition: transform 0.125s; }
[data-rk] .ju367v8q { user-select: none; }
[data-rk] .ju367v8r { width: 1px; }
[data-rk] .ju367v8s { width: 2px; }
[data-rk] .ju367v8t { width: 4px; }
[data-rk] .ju367v8u { width: 8px; }
[data-rk] .ju367v8v { width: 12px; }
[data-rk] .ju367v8w { width: 20px; }
[data-rk] .ju367v8x { width: 24px; }
[data-rk] .ju367v8y { width: 28px; }
[data-rk] .ju367v8z { width: 30px; }
[data-rk] .ju367v90 { width: 32px; }
[data-rk] .ju367v91 { width: 34px; }
[data-rk] .ju367v92 { width: 36px; }
[data-rk] .ju367v93 { width: 40px; }
[data-rk] .ju367v94 { width: 44px; }
[data-rk] .ju367v95 { width: 48px; }
[data-rk] .ju367v96 { width: 54px; }
[data-rk] .ju367v97 { width: 60px; }
[data-rk] .ju367v98 { width: 200px; }
[data-rk] .ju367v99 { width: 100%; }
[data-rk] .ju367v9a { width: max-content; }
[data-rk] .ju367v9b { backdrop-filter: var(--rk-blurs-modalOverlay); }
[data-rk] .ju367v9c, [data-rk] .ju367v9d:hover, [data-rk] .ju367v9e:active { background: var(--rk-colors-accentColor); }
[data-rk] .ju367v9f, [data-rk] .ju367v9g:hover, [data-rk] .ju367v9h:active { background: var(--rk-colors-accentColorForeground); }
[data-rk] .ju367v9i, [data-rk] .ju367v9j:hover, [data-rk] .ju367v9k:active { background: var(--rk-colors-actionButtonBorder); }
[data-rk] .ju367v9l, [data-rk] .ju367v9m:hover, [data-rk] .ju367v9n:active { background: var(--rk-colors-actionButtonBorderMobile); }
[data-rk] .ju367v9o, [data-rk] .ju367v9p:hover, [data-rk] .ju367v9q:active { background: var(--rk-colors-actionButtonSecondaryBackground); }
[data-rk] .ju367v9r, [data-rk] .ju367v9s:hover, [data-rk] .ju367v9t:active { background: var(--rk-colors-closeButton); }
[data-rk] .ju367v9u, [data-rk] .ju367v9v:hover, [data-rk] .ju367v9w:active { background: var(--rk-colors-closeButtonBackground); }
[data-rk] .ju367v9x, [data-rk] .ju367v9y:hover, [data-rk] .ju367v9z:active { background: var(--rk-colors-connectButtonBackground); }
[data-rk] .ju367va0, [data-rk] .ju367va1:hover, [data-rk] .ju367va2:active { background: var(--rk-colors-connectButtonBackgroundError); }
[data-rk] .ju367va3, [data-rk] .ju367va4:hover, [data-rk] .ju367va5:active { background: var(--rk-colors-connectButtonInnerBackground); }
[data-rk] .ju367va6, [data-rk] .ju367va7:hover, [data-rk] .ju367va8:active { background: var(--rk-colors-connectButtonText); }
[data-rk] .ju367va9, [data-rk] .ju367vaa:hover, [data-rk] .ju367vab:active { background: var(--rk-colors-connectButtonTextError); }
[data-rk] .ju367vac, [data-rk] .ju367vad:hover, [data-rk] .ju367vae:active { background: var(--rk-colors-connectionIndicator); }
[data-rk] .ju367vaf, [data-rk] .ju367vag:hover, [data-rk] .ju367vah:active { background: var(--rk-colors-downloadBottomCardBackground); }
[data-rk] .ju367vai, [data-rk] .ju367vaj:hover, [data-rk] .ju367vak:active { background: var(--rk-colors-downloadTopCardBackground); }
[data-rk] .ju367val, [data-rk] .ju367vam:hover, [data-rk] .ju367van:active { background: var(--rk-colors-error); }
[data-rk] .ju367vao, [data-rk] .ju367vap:hover, [data-rk] .ju367vaq:active { background: var(--rk-colors-generalBorder); }
[data-rk] .ju367var, [data-rk] .ju367vas:hover, [data-rk] .ju367vat:active { background: var(--rk-colors-generalBorderDim); }
[data-rk] .ju367vau, [data-rk] .ju367vav:hover, [data-rk] .ju367vaw:active { background: var(--rk-colors-menuItemBackground); }
[data-rk] .ju367vax, [data-rk] .ju367vay:hover, [data-rk] .ju367vaz:active { background: var(--rk-colors-modalBackdrop); }
[data-rk] .ju367vb0, [data-rk] .ju367vb1:hover, [data-rk] .ju367vb2:active { background: var(--rk-colors-modalBackground); }
[data-rk] .ju367vb3, [data-rk] .ju367vb4:hover, [data-rk] .ju367vb5:active { background: var(--rk-colors-modalBorder); }
[data-rk] .ju367vb6, [data-rk] .ju367vb7:hover, [data-rk] .ju367vb8:active { background: var(--rk-colors-modalText); }
[data-rk] .ju367vb9, [data-rk] .ju367vba:hover, [data-rk] .ju367vbb:active { background: var(--rk-colors-modalTextDim); }
[data-rk] .ju367vbc, [data-rk] .ju367vbd:hover, [data-rk] .ju367vbe:active { background: var(--rk-colors-modalTextSecondary); }
[data-rk] .ju367vbf, [data-rk] .ju367vbg:hover, [data-rk] .ju367vbh:active { background: var(--rk-colors-profileAction); }
[data-rk] .ju367vbi, [data-rk] .ju367vbj:hover, [data-rk] .ju367vbk:active { background: var(--rk-colors-profileActionHover); }
[data-rk] .ju367vbl, [data-rk] .ju367vbm:hover, [data-rk] .ju367vbn:active { background: var(--rk-colors-profileForeground); }
[data-rk] .ju367vbo, [data-rk] .ju367vbp:hover, [data-rk] .ju367vbq:active { background: var(--rk-colors-selectedOptionBorder); }
[data-rk] .ju367vbr, [data-rk] .ju367vbs:hover, [data-rk] .ju367vbt:active { background: var(--rk-colors-standby); }
[data-rk] .ju367vbu, [data-rk] .ju367vbv:hover, [data-rk] .ju367vbw:active { border-color: var(--rk-colors-accentColor); }
[data-rk] .ju367vbx, [data-rk] .ju367vby:hover, [data-rk] .ju367vbz:active { border-color: var(--rk-colors-accentColorForeground); }
[data-rk] .ju367vc0, [data-rk] .ju367vc1:hover, [data-rk] .ju367vc2:active { border-color: var(--rk-colors-actionButtonBorder); }
[data-rk] .ju367vc3, [data-rk] .ju367vc4:hover, [data-rk] .ju367vc5:active { border-color: var(--rk-colors-actionButtonBorderMobile); }
[data-rk] .ju367vc6, [data-rk] .ju367vc7:hover, [data-rk] .ju367vc8:active { border-color: var(--rk-colors-actionButtonSecondaryBackground); }
[data-rk] .ju367vc9, [data-rk] .ju367vca:hover, [data-rk] .ju367vcb:active { border-color: var(--rk-colors-closeButton); }
[data-rk] .ju367vcc, [data-rk] .ju367vcd:hover, [data-rk] .ju367vce:active { border-color: var(--rk-colors-closeButtonBackground); }
[data-rk] .ju367vcf, [data-rk] .ju367vcg:hover, [data-rk] .ju367vch:active { border-color: var(--rk-colors-connectButtonBackground); }
[data-rk] .ju367vci, [data-rk] .ju367vcj:hover, [data-rk] .ju367vck:active { border-color: var(--rk-colors-connectButtonBackgroundError); }
[data-rk] .ju367vcl, [data-rk] .ju367vcm:hover, [data-rk] .ju367vcn:active { border-color: var(--rk-colors-connectButtonInnerBackground); }
[data-rk] .ju367vco, [data-rk] .ju367vcp:hover, [data-rk] .ju367vcq:active { border-color: var(--rk-colors-connectButtonText); }
[data-rk] .ju367vcr, [data-rk] .ju367vcs:hover, [data-rk] .ju367vct:active { border-color: var(--rk-colors-connectButtonTextError); }
[data-rk] .ju367vcu, [data-rk] .ju367vcv:hover, [data-rk] .ju367vcw:active { border-color: var(--rk-colors-connectionIndicator); }
[data-rk] .ju367vcx, [data-rk] .ju367vcy:hover, [data-rk] .ju367vcz:active { border-color: var(--rk-colors-downloadBottomCardBackground); }
[data-rk] .ju367vd0, [data-rk] .ju367vd1:hover, [data-rk] .ju367vd2:active { border-color: var(--rk-colors-downloadTopCardBackground); }
[data-rk] .ju367vd3, [data-rk] .ju367vd4:hover, [data-rk] .ju367vd5:active { border-color: var(--rk-colors-error); }
[data-rk] .ju367vd6, [data-rk] .ju367vd7:hover, [data-rk] .ju367vd8:active { border-color: var(--rk-colors-generalBorder); }
[data-rk] .ju367vd9, [data-rk] .ju367vda:hover, [data-rk] .ju367vdb:active { border-color: var(--rk-colors-generalBorderDim); }
[data-rk] .ju367vdc, [data-rk] .ju367vdd:hover, [data-rk] .ju367vde:active { border-color: var(--rk-colors-menuItemBackground); }
[data-rk] .ju367vdf, [data-rk] .ju367vdg:hover, [data-rk] .ju367vdh:active { border-color: var(--rk-colors-modalBackdrop); }
[data-rk] .ju367vdi, [data-rk] .ju367vdj:hover, [data-rk] .ju367vdk:active { border-color: var(--rk-colors-modalBackground); }
[data-rk] .ju367vdl, [data-rk] .ju367vdm:hover, [data-rk] .ju367vdn:active { border-color: var(--rk-colors-modalBorder); }
[data-rk] .ju367vdo, [data-rk] .ju367vdp:hover, [data-rk] .ju367vdq:active { border-color: var(--rk-colors-modalText); }
[data-rk] .ju367vdr, [data-rk] .ju367vds:hover, [data-rk] .ju367vdt:active { border-color: var(--rk-colors-modalTextDim); }
[data-rk] .ju367vdu, [data-rk] .ju367vdv:hover, [data-rk] .ju367vdw:active { border-color: var(--rk-colors-modalTextSecondary); }
[data-rk] .ju367vdx, [data-rk] .ju367vdy:hover, [data-rk] .ju367vdz:active { border-color: var(--rk-colors-profileAction); }
[data-rk] .ju367ve0, [data-rk] .ju367ve1:hover, [data-rk] .ju367ve2:active { border-color: var(--rk-colors-profileActionHover); }
[data-rk] .ju367ve3, [data-rk] .ju367ve4:hover, [data-rk] .ju367ve5:active { border-color: var(--rk-colors-profileForeground); }
[data-rk] .ju367ve6, [data-rk] .ju367ve7:hover, [data-rk] .ju367ve8:active { border-color: var(--rk-colors-selectedOptionBorder); }
[data-rk] .ju367ve9, [data-rk] .ju367vea:hover, [data-rk] .ju367veb:active { border-color: var(--rk-colors-standby); }
[data-rk] .ju367vec, [data-rk] .ju367ved:hover, [data-rk] .ju367vee:active { box-shadow: var(--rk-shadows-connectButton); }
[data-rk] .ju367vef, [data-rk] .ju367veg:hover, [data-rk] .ju367veh:active { box-shadow: var(--rk-shadows-dialog); }
[data-rk] .ju367vei, [data-rk] .ju367vej:hover, [data-rk] .ju367vek:active { box-shadow: var(--rk-shadows-profileDetailsAction); }
[data-rk] .ju367vel, [data-rk] .ju367vem:hover, [data-rk] .ju367ven:active { box-shadow: var(--rk-shadows-selectedOption); }
[data-rk] .ju367veo, [data-rk] .ju367vep:hover, [data-rk] .ju367veq:active { box-shadow: var(--rk-shadows-selectedWallet); }
[data-rk] .ju367ver, [data-rk] .ju367ves:hover, [data-rk] .ju367vet:active { box-shadow: var(--rk-shadows-walletLogo); }
[data-rk] .ju367veu, [data-rk] .ju367vev:hover, [data-rk] .ju367vew:active { color: var(--rk-colors-accentColor); }
[data-rk] .ju367vex, [data-rk] .ju367vey:hover, [data-rk] .ju367vez:active { color: var(--rk-colors-accentColorForeground); }
[data-rk] .ju367vf0, [data-rk] .ju367vf1:hover, [data-rk] .ju367vf2:active { color: var(--rk-colors-actionButtonBorder); }
[data-rk] .ju367vf3, [data-rk] .ju367vf4:hover, [data-rk] .ju367vf5:active { color: var(--rk-colors-actionButtonBorderMobile); }
[data-rk] .ju367vf6, [data-rk] .ju367vf7:hover, [data-rk] .ju367vf8:active { color: var(--rk-colors-actionButtonSecondaryBackground); }
[data-rk] .ju367vf9, [data-rk] .ju367vfa:hover, [data-rk] .ju367vfb:active { color: var(--rk-colors-closeButton); }
[data-rk] .ju367vfc, [data-rk] .ju367vfd:hover, [data-rk] .ju367vfe:active { color: var(--rk-colors-closeButtonBackground); }
[data-rk] .ju367vff, [data-rk] .ju367vfg:hover, [data-rk] .ju367vfh:active { color: var(--rk-colors-connectButtonBackground); }
[data-rk] .ju367vfi, [data-rk] .ju367vfj:hover, [data-rk] .ju367vfk:active { color: var(--rk-colors-connectButtonBackgroundError); }
[data-rk] .ju367vfl, [data-rk] .ju367vfm:hover, [data-rk] .ju367vfn:active { color: var(--rk-colors-connectButtonInnerBackground); }
[data-rk] .ju367vfo, [data-rk] .ju367vfp:hover, [data-rk] .ju367vfq:active { color: var(--rk-colors-connectButtonText); }
[data-rk] .ju367vfr, [data-rk] .ju367vfs:hover, [data-rk] .ju367vft:active { color: var(--rk-colors-connectButtonTextError); }
[data-rk] .ju367vfu, [data-rk] .ju367vfv:hover, [data-rk] .ju367vfw:active { color: var(--rk-colors-connectionIndicator); }
[data-rk] .ju367vfx, [data-rk] .ju367vfy:hover, [data-rk] .ju367vfz:active { color: var(--rk-colors-downloadBottomCardBackground); }
[data-rk] .ju367vg0, [data-rk] .ju367vg1:hover, [data-rk] .ju367vg2:active { color: var(--rk-colors-downloadTopCardBackground); }
[data-rk] .ju367vg3, [data-rk] .ju367vg4:hover, [data-rk] .ju367vg5:active { color: var(--rk-colors-error); }
[data-rk] .ju367vg6, [data-rk] .ju367vg7:hover, [data-rk] .ju367vg8:active { color: var(--rk-colors-generalBorder); }
[data-rk] .ju367vg9, [data-rk] .ju367vga:hover, [data-rk] .ju367vgb:active { color: var(--rk-colors-generalBorderDim); }
[data-rk] .ju367vgc, [data-rk] .ju367vgd:hover, [data-rk] .ju367vge:active { color: var(--rk-colors-menuItemBackground); }
[data-rk] .ju367vgf, [data-rk] .ju367vgg:hover, [data-rk] .ju367vgh:active { color: var(--rk-colors-modalBackdrop); }
[data-rk] .ju367vgi, [data-rk] .ju367vgj:hover, [data-rk] .ju367vgk:active { color: var(--rk-colors-modalBackground); }
[data-rk] .ju367vgl, [data-rk] .ju367vgm:hover, [data-rk] .ju367vgn:active { color: var(--rk-colors-modalBorder); }
[data-rk] .ju367vgo, [data-rk] .ju367vgp:hover, [data-rk] .ju367vgq:active { color: var(--rk-colors-modalText); }
[data-rk] .ju367vgr, [data-rk] .ju367vgs:hover, [data-rk] .ju367vgt:active { color: var(--rk-colors-modalTextDim); }
[data-rk] .ju367vgu, [data-rk] .ju367vgv:hover, [data-rk] .ju367vgw:active { color: var(--rk-colors-modalTextSecondary); }
[data-rk] .ju367vgx, [data-rk] .ju367vgy:hover, [data-rk] .ju367vgz:active { color: var(--rk-colors-profileAction); }
[data-rk] .ju367vh0, [data-rk] .ju367vh1:hover, [data-rk] .ju367vh2:active { color: var(--rk-colors-profileActionHover); }
[data-rk] .ju367vh3, [data-rk] .ju367vh4:hover, [data-rk] .ju367vh5:active { color: var(--rk-colors-profileForeground); }
[data-rk] .ju367vh6, [data-rk] .ju367vh7:hover, [data-rk] .ju367vh8:active { color: var(--rk-colors-selectedOptionBorder); }
[data-rk] .ju367vh9, [data-rk] .ju367vha:hover, [data-rk] .ju367vhb:active { color: var(--rk-colors-standby); }
@media screen and (min-width: 768px) {
  [data-rk] .ju367v1 { align-items: flex-start; }
  [data-rk] .ju367v3 { align-items: flex-end; }
  [data-rk] .ju367v5 { align-items: center; }
  [data-rk] .ju367v7 { display: none; }
  [data-rk] .ju367v9 { display: block; }
  [data-rk] .ju367vb { display: flex; }
  [data-rk] .ju367vd { display: inline; }
}
[data-rk] ._12cbo8i3, [data-rk] ._12cbo8i3::after { --_12cbo8i0: 1; --_12cbo8i1: 1; }
[data-rk] ._12cbo8i3:hover { transform: scale(var(--_12cbo8i0)); }
[data-rk] ._12cbo8i3:active { transform: scale(var(--_12cbo8i1)); }
[data-rk] ._12cbo8i3:active::after { content: ""; inset: -1px; display: block; position: absolute; transform: scale(calc((1 / var(--_12cbo8i1)) * var(--_12cbo8i0))); }
[data-rk] ._12cbo8i4, [data-rk] ._12cbo8i4::after { --_12cbo8i0: 1.025; }
[data-rk] ._12cbo8i5, [data-rk] ._12cbo8i5::after { --_12cbo8i0: 1.1; }
[data-rk] ._12cbo8i6, [data-rk] ._12cbo8i6::after { --_12cbo8i1: 0.95; }
[data-rk] ._12cbo8i7, [data-rk] ._12cbo8i7::after { --_12cbo8i1: 0.9; }
@keyframes _1luule41 { 
  0% { transform: rotate(0deg); }
  100% { transform: rotate(1turn); }
}
[data-rk] ._1luule42 { animation: 3s linear 0s infinite normal none running _1luule41; }
[data-rk] ._1luule43 { background: conic-gradient(from 180deg, rgba(72, 146, 254, 0) 0deg, currentcolor 282.04deg, rgba(72, 146, 254, 0) 319.86deg, rgba(72, 146, 254, 0) 1turn); height: 21px; width: 21px; }
@keyframes _9pm4ki0 { 
  0% { transform: translateY(100%); }
  100% { transform: translateY(0px); }
}
@keyframes _9pm4ki1 { 
  0% { opacity: 0; }
  100% { opacity: 1; }
}
[data-rk] ._9pm4ki3 { animation: 0.15s ease 0s 1 normal none running _9pm4ki1; inset: -200px; padding: 200px; transform: translateZ(0px); z-index: 2147483646; }
[data-rk] ._9pm4ki5 { animation: 0.35s cubic-bezier(0.15, 1.15, 0.6, 1) 0s 1 normal none running _9pm4ki0, 0.15s ease 0s 1 normal none running _9pm4ki1; max-width: 100vw; }
[data-rk] ._1ckjpok1 { box-sizing: content-box; max-width: 100vw; width: 360px; }
[data-rk] ._1ckjpok2 { width: 100vw; }
[data-rk] ._1ckjpok3 { width: 768px; }
[data-rk] ._1ckjpok4 { min-width: 368px; width: 368px; }
[data-rk] ._1ckjpok6 { border-width: 0px; box-sizing: border-box; width: 100vw; }
@media screen and (min-width: 768px) {
  [data-rk] ._1ckjpok1 { width: 360px; }
  [data-rk] ._1ckjpok2 { width: 480px; }
  [data-rk] ._1ckjpok3 { width: 720px; }
  [data-rk] ._1ckjpok4 { min-width: 368px; width: 368px; }
}
@media screen and (max-width: 767px) {
  [data-rk] ._1ckjpok7 { border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; margin-top: -200px; padding-bottom: 200px; top: 200px; }
}
[data-rk] .v9horb0:hover { background: unset; }
[data-rk] .g5kl0l0 { border-color: transparent; }
[data-rk] ._1vwt0cg0 { background: rgb(255, 255, 255); }
[data-rk] ._1vwt0cg2 { max-height: 454px; overflow-y: auto; }
[data-rk] ._1vwt0cg3 { min-width: 246px; }
[data-rk] ._1vwt0cg4 { min-width: 100%; }
@media screen and (min-width: 768px) {
  [data-rk] ._1vwt0cg3 { min-width: 287px; }
}
[data-rk] ._1am14410 { overflow: auto; scrollbar-width: none; transform: translateZ(0px); }
[data-rk] ._1am14410::-webkit-scrollbar { display: none; }
html { font-family: var(--font-lato); }
body, html { width: 100vw; overflow-x: hidden; }
body {
  & ::-webkit-scrollbar { width: 4px; height: 4px; }
  & ::-webkit-scrollbar-track { background: rgba(245, 247, 243, 0.5); }
  & ::-webkit-scrollbar-thumb { background: rgb(28, 30, 37); }
  & ::-webkit-scrollbar-thumb:hover { background: rgba(245, 247, 243, 0.1); }
}
main { display: flex; min-height: 100vh; width: 100vw; overflow-x: hidden; font-family: var(--font-lato); }
.recharts-surface { overflow: visible; }
.infoChartBrush {
  & .recharts-brush-texts { font-size: 10px; }
}
.H1-Lato-fw-700-fs-32 { font-size: 32px; line-height: 48px; }
.H1-Lato-fw-700-fs-32, .H2-Lato-fw-700-fs-24 { font-family: var(--font-lato); font-style: normal; font-weight: 700; }
.H2-Lato-fw-700-fs-24 { font-size: 24px; line-height: 40px; }
.Body-Lato-fw-900-fs-64 { font-family: var(--font-lato); font-size: 64px; font-style: normal; font-weight: 900; line-height: 72px; }
.Body-Lato-fw-800-fs-24 { font-weight: 800; }
.Body-Lato-fw-600-fs-24, .Body-Lato-fw-800-fs-24 { font-family: var(--font-lato); font-size: 24px; font-style: normal; line-height: 32px; }
.Body-Lato-fw-600-fs-24 {
  font-weight: 600;
  @media (max-width: 500px) {
  font-size: 18px;
}
}
.Body-Lato-fw-500-fs-24 { font-family: var(--font-lato); font-size: 24px; font-style: normal; font-weight: 500; line-height: 32px; }
.Body-Lato-fw-700-fs-18 { font-weight: 700; }
.Body-Lato-fw-500-fs-18, .Body-Lato-fw-700-fs-18 { font-family: var(--font-lato); font-size: 18px; font-style: normal; line-height: 40px; }
.Body-Lato-fw-500-fs-18 { font-weight: 500; }
.Body-Lato-fw-500-fs-16 { font-weight: 500; line-height: 22px; }
.Body-Lato-fw-500-fs-16, .Body-Lato-fw-700-fs-16 { font-family: var(--font-lato); font-size: 16px; font-style: normal; }
.Body-Lato-fw-700-fs-16 { font-weight: 700; line-height: 24px; }
.Body-Lato-fw-700-fs-14 { font-weight: 700; line-height: 32px; }
.Body-Lato-fw-600-fs-14, .Body-Lato-fw-700-fs-14 { font-family: var(--font-lato); font-size: 14px; font-style: normal; }
.Body-Lato-fw-600-fs-14 { font-weight: 600; line-height: 16px; }
.Body-Lato-fw-500-fs-10 { font-size: 10px; line-height: 16px; }
.Body-Lato-fw-500-fs-10, .Body-Lato-fw-500-fs-12-h-24 { font-family: var(--font-lato); font-style: normal; font-weight: 500; }
.Body-Lato-fw-500-fs-12-h-24 { font-size: 12px; line-height: 24px; }
.Body-Inter-fw-500-fs-14 { font-family: var(--font-inter); font-size: 14px; font-style: normal; font-weight: 500; line-height: 16px; }
.Body-Inter-fw-700-fs-16 { font-size: 16px; line-height: 24px; }
.Body-Inter-fw-700-fs-16, .Body-Inter-fw-700-fs-18 { font-family: var(--font-inter); font-style: normal; font-weight: 700; }
.Body-Inter-fw-700-fs-18 { font-size: 18px; line-height: 40px; }
.profile-Lato-fw-700-fs-20 { font-size: 20px; }
.lvl-Lato-fw-700-fs-18, .profile-Lato-fw-700-fs-20 { font-family: var(--font-lato); font-style: normal; font-weight: 700; line-height: 32px; }
.lvl-Lato-fw-700-fs-18 { font-size: 18px; }
.menu-Lato-fw-500-fs-14 { font-weight: 500; }
.menu-Lato-fw-500-fs-14, .menu-Lato-fw-700-fs-14 { font-family: var(--font-lato); font-size: 14px; font-style: normal; line-height: 24px; }
.menu-Lato-fw-700-fs-14 { font-weight: 700; }
.menu-Lato-fw-700-fs-12, .points-Lato-fw-700-fs-12 { font-family: var(--font-lato); font-size: 12px; font-style: normal; font-weight: 700; line-height: 16px; }
.benefit-content-Lato-fw-500-fs-14 { font-family: var(--font-lato); font-size: 14px; font-style: normal; font-weight: 500; line-height: 20px; }
.benefit-title-Lato-fw-800-fs-18, .benefit-title-Lato-fw-800-fs-32 { font-family: var(--font-lato); font-size: 32px; font-style: normal; font-weight: 800; line-height: 40px; }
.Body-Lato-fw-800-fs-40 { font-family: var(--font-lato); font-size: 40px; font-style: normal; font-weight: 800; line-height: 50px; }
.share-card-Michroma-fw-400-fs-12, .share-card-Michroma-fw-400-fs-16 { font-family: var(--font-michroma); font-size: 16px; font-style: normal; font-weight: 400; line-height: 24px; }
.share-card-Montserrat-Alt-fw-600-fs-72 { font-family: var(--font-montserrat-alt); font-size: 50px; font-style: normal; font-weight: 600; line-height: 84px; }
.share-card-Montserrat-Alt-fw-600-fs-32 { font-family: var(--font-montserrat-alt); font-size: 32px; font-style: normal; font-weight: 600; line-height: 40px; }
.share-card-Montserrat-Alt-fw-600-fs-12 { font-family: var(--font-montserrat-alt); font-size: 12px; font-style: normal; font-weight: 600; line-height: 24px; }
.share-card-Montserrat-Alt-fw-600-fs-10 { font-family: var(--font-montserrat-alt); font-size: 10px; font-style: normal; font-weight: 400; line-height: 20px; }
@font-face { font-family: swiper-icons; src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA"); font-weight: 400; font-style: normal; }
:root { --swiper-theme-color: #007aff; }
.swiper, swiper-container { margin-left: auto; margin-right: auto; position: relative; overflow: hidden; list-style: none; padding: 0px; z-index: 1; display: block; }
.swiper-vertical > .swiper-wrapper { flex-direction: column; }
.swiper-wrapper { position: relative; width: 100%; height: 100%; z-index: 1; display: flex; transition-property: transform; transition-timing-function: var(--swiper-wrapper-transition-timing-function,initial); box-sizing: content-box; }
.swiper-android .swiper-slide, .swiper-wrapper { transform: translateZ(0px); }
.swiper-horizontal { touch-action: pan-y; }
.swiper-vertical { touch-action: pan-x; }
.swiper-slide, swiper-slide { flex-shrink: 0; width: 100%; height: 100%; position: relative; transition-property: transform; display: block; }
.swiper-slide-invisible-blank { visibility: hidden; }
.swiper-autoheight, .swiper-autoheight .swiper-slide { height: auto; }
.swiper-autoheight .swiper-wrapper { align-items: flex-start; transition-property: transform, height; }
.swiper-backface-hidden .swiper-slide { transform: translateZ(0px); backface-visibility: hidden; }
.swiper-3d.swiper-css-mode .swiper-wrapper { perspective: 1200px; }
.swiper-3d .swiper-wrapper { transform-style: preserve-3d; }
.swiper-3d { perspective: 1200px; }
.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top { transform-style: preserve-3d; }
.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top { position: absolute; left: 0px; top: 0px; width: 100%; height: 100%; pointer-events: none; z-index: 10; }
.swiper-3d .swiper-slide-shadow { background: rgba(0, 0, 0, 0.15); }
.swiper-3d .swiper-slide-shadow-left { background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5), transparent); }
.swiper-3d .swiper-slide-shadow-right { background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent); }
.swiper-3d .swiper-slide-shadow-top { background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent); }
.swiper-3d .swiper-slide-shadow-bottom { background-image: linear-gradient(rgba(0, 0, 0, 0.5), transparent); }
.swiper-css-mode > .swiper-wrapper { overflow: auto; scrollbar-width: none; }
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar { display: none; }
.swiper-css-mode > .swiper-wrapper > .swiper-slide { scroll-snap-align: start; }
.swiper-horizontal.swiper-css-mode > .swiper-wrapper { scroll-snap-type: x mandatory; }
.swiper-vertical.swiper-css-mode > .swiper-wrapper { scroll-snap-type: y mandatory; }
.swiper-css-mode.swiper-free-mode > .swiper-wrapper { scroll-snap-type: none; }
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide { scroll-snap-align: none; }
.swiper-centered > .swiper-wrapper::before { content: ""; flex-shrink: 0; order: 9999; }
.swiper-centered > .swiper-wrapper > .swiper-slide { scroll-snap-align: center; scroll-snap-stop: always; }
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child { margin-inline-start: var(--swiper-centered-offset-before); }
.swiper-centered.swiper-horizontal > .swiper-wrapper::before { height: 100%; min-height: 1px; width: var(--swiper-centered-offset-after); }
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child { margin-block-start: var(--swiper-centered-offset-before); }
.swiper-centered.swiper-vertical > .swiper-wrapper::before { width: 100%; min-width: 1px; height: var(--swiper-centered-offset-after); }
.swiper-lazy-preloader { width: 42px; height: 42px; position: absolute; left: 50%; top: 50%; margin-left: -21px; margin-top: -21px; z-index: 10; transform-origin: 50% center; box-sizing: border-box; border-radius: 50%; border-right-color: ; border-right-style: ; border-right-width: ; border-bottom-color: ; border-bottom-style: ; border-bottom-width: ; border-left-color: ; border-left-style: ; border-left-width: ; border-image-source: ; border-image-slice: ; border-image-width: ; border-image-outset: ; border-image-repeat: ; border-top: 4px solid transparent; }
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader, swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader { animation: 1s linear 0s infinite normal none running swiper-preloader-spin; }
.swiper-lazy-preloader-white { --swiper-preloader-color: #fff; }
.swiper-lazy-preloader-black { --swiper-preloader-color: #000; }
@keyframes swiper-preloader-spin { 
  0% { transform: rotate(0deg); }
  100% { transform: rotate(1turn); }
}
html { -webkit-font-smoothing: antialiased; box-sizing: border-box; text-size-adjust: 100%; }
*, ::before, ::after { box-sizing: inherit; }
strong, b { font-weight: 700; }
body { margin: 0px; color: rgb(255, 255, 255); font-family: Roboto, Helvetica, Arial, sans-serif; font-weight: 400; font-size: 1rem; line-height: 1.5; letter-spacing: 0.00938em; background-color: rgb(18, 18, 18); }
@media print {
  body { background-color: rgb(255, 255, 255); }
}
body::backdrop { background-color: rgb(18, 18, 18); }
html { -webkit-font-smoothing: antialiased; box-sizing: border-box; text-size-adjust: 100%; }
*, ::before, ::after { box-sizing: inherit; }
strong, b { font-weight: 700; }
body { margin: 0px; color: rgb(255, 255, 255); font-family: Roboto, Helvetica, Arial, sans-serif; font-weight: 400; font-size: 1rem; line-height: 1.5; letter-spacing: 0.00938em; background-color: rgb(18, 18, 18); }
@media print {
  body { background-color: rgb(255, 255, 255); }
}
body::backdrop { background-color: rgb(18, 18, 18); }
.mui-1ofqig9 { display: flex; flex-direction: column; width: 100%; }
.mui-hghegc { width: 100%; height: 40px; display: flex; -webkit-box-pack: center; justify-content: center; background: rgb(18, 19, 23); position: fixed; top: 0px; left: 0px; z-index: 1000; }
.mui-1t7fufs { max-width: 1200px; width: 100%; display: flex; gap: 15px; -webkit-box-align: center; align-items: center; -webkit-box-pack: justify; justify-content: space-between; }
@media (min-width: 0px) {
  .mui-1t7fufs { padding: 0px 15px; }
}
@media (min-width: 500px) {
  .mui-1t7fufs { padding: 0px 30px; }
}
@media (min-width: 1392px) {
  .mui-1t7fufs { padding: 0px; }
}
.mui-1ypcipt { flex: 1 1 0%; display: flex; -webkit-box-align: center; align-items: center; }
.mui-4g6ai3 { cursor: pointer; }
.mui-kk0ezo.MuiButton-contained { background: linear-gradient(90deg, rgb(146, 254, 157) 0%, rgb(0, 201, 255) 100%, rgb(0, 201, 255) 100%); font-family: var(--font-lato); font-style: normal; color: rgb(28, 30, 37); transition: none; text-transform: unset; }
.mui-kk0ezo.MuiButton-contained:hover { background: rgb(4, 203, 253); }
.mui-kk0ezo.MuiButton-contained:focus { background: rgb(2, 162, 202); }
.mui-kk0ezo.MuiButton-contained.Mui-disabled { background: rgb(72, 76, 91); color: rgb(28, 30, 37); }
.mui-kk0ezo.MuiButton-sizeLarge { padding: 12px 40px; border-radius: 10px; font-size: 16px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-kk0ezo.MuiButton-sizeLarge.MuiButton-fullWidth { width: 100%; }
.mui-kk0ezo.MuiButton-sizeMedium { padding: 8px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-kk0ezo.MuiButton-sizeMedium.MuiButton-fullWidth { width: 100%; }
.mui-kk0ezo.MuiButton-sizeSmall { padding: 4px 12px; border-radius: 16px; font-size: 10px; font-weight: 500; line-height: 16px; width: fit-content; }
.mui-kk0ezo.MuiButton-sizeSmall.MuiButton-fullWidth { width: 100%; }
.mui-mypluq { transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1); }
.mui-mypluq .MuiLoadingButton-startIconLoadingStart, .mui-mypluq .MuiLoadingButton-endIconLoadingEnd { transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1); opacity: 0; }
.mui-mypluq.MuiLoadingButton-loading { color: transparent; }
.mui-mypluq.MuiButton-contained { background: linear-gradient(90deg, rgb(146, 254, 157) 0%, rgb(0, 201, 255) 100%, rgb(0, 201, 255) 100%); font-family: var(--font-lato); font-style: normal; color: rgb(28, 30, 37); transition: none; text-transform: unset; }
.mui-mypluq.MuiButton-contained:hover { background: rgb(4, 203, 253); }
.mui-mypluq.MuiButton-contained:focus { background: rgb(2, 162, 202); }
.mui-mypluq.MuiButton-contained.Mui-disabled { background: rgb(72, 76, 91); color: rgb(28, 30, 37); }
.mui-mypluq.MuiButton-sizeLarge { padding: 12px 40px; border-radius: 10px; font-size: 16px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-mypluq.MuiButton-sizeLarge.MuiButton-fullWidth { width: 100%; }
.mui-mypluq.MuiButton-sizeMedium { padding: 8px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-mypluq.MuiButton-sizeMedium.MuiButton-fullWidth { width: 100%; }
.mui-mypluq.MuiButton-sizeSmall { padding: 4px 12px; border-radius: 16px; font-size: 10px; font-weight: 500; line-height: 16px; width: fit-content; }
.mui-mypluq.MuiButton-sizeSmall.MuiButton-fullWidth { width: 100%; }
.mui-zwtpfn { font-family: Roboto, Helvetica, Arial, sans-serif; font-weight: 500; font-size: 0.8125rem; line-height: 1.75; letter-spacing: 0.02857em; text-transform: uppercase; min-width: 64px; padding: 4px 10px; border-radius: 4px; color: rgba(0, 0, 0, 0.87); background-color: rgb(144, 202, 249); box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px; transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1); }
.mui-zwtpfn:hover { text-decoration: none; background-color: rgb(66, 165, 245); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px; }
@media (hover: none) {
  .mui-zwtpfn:hover { background-color: rgb(144, 202, 249); }
}
.mui-zwtpfn:active { box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 5px -3px, rgba(0, 0, 0, 0.14) 0px 8px 10px 1px, rgba(0, 0, 0, 0.12) 0px 3px 14px 2px; }
.mui-zwtpfn.Mui-focusVisible { box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px; }
.mui-zwtpfn.Mui-disabled { color: rgba(255, 255, 255, 0.3); box-shadow: none; background-color: rgba(255, 255, 255, 0.12); }
.mui-zwtpfn .MuiLoadingButton-startIconLoadingStart, .mui-zwtpfn .MuiLoadingButton-endIconLoadingEnd { transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1); opacity: 0; }
.mui-zwtpfn.MuiLoadingButton-loading { color: transparent; }
.mui-zwtpfn.MuiButton-contained { background: linear-gradient(90deg, rgb(146, 254, 157) 0%, rgb(0, 201, 255) 100%, rgb(0, 201, 255) 100%); font-family: var(--font-lato); font-style: normal; color: rgb(28, 30, 37); transition: none; text-transform: unset; }
.mui-zwtpfn.MuiButton-contained:hover { background: rgb(4, 203, 253); }
.mui-zwtpfn.MuiButton-contained:focus { background: rgb(2, 162, 202); }
.mui-zwtpfn.MuiButton-contained.Mui-disabled { background: rgb(72, 76, 91); color: rgb(28, 30, 37); }
.mui-zwtpfn.MuiButton-sizeLarge { padding: 12px 40px; border-radius: 10px; font-size: 16px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-zwtpfn.MuiButton-sizeLarge.MuiButton-fullWidth { width: 100%; }
.mui-zwtpfn.MuiButton-sizeMedium { padding: 8px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-zwtpfn.MuiButton-sizeMedium.MuiButton-fullWidth { width: 100%; }
.mui-zwtpfn.MuiButton-sizeSmall { padding: 4px 12px; border-radius: 16px; font-size: 10px; font-weight: 500; line-height: 16px; width: fit-content; }
.mui-zwtpfn.MuiButton-sizeSmall.MuiButton-fullWidth { width: 100%; }
.mui-utdfv4 { display: inline-flex; -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; position: relative; box-sizing: border-box; -webkit-tap-highlight-color: transparent; outline: 0px; border: 0px; margin: 0px; cursor: pointer; user-select: none; vertical-align: middle; appearance: none; text-decoration: none; font-family: Roboto, Helvetica, Arial, sans-serif; font-weight: 500; font-size: 0.8125rem; line-height: 1.75; letter-spacing: 0.02857em; text-transform: uppercase; min-width: 64px; padding: 4px 10px; border-radius: 4px; color: rgba(0, 0, 0, 0.87); background-color: rgb(144, 202, 249); box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px; transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1); }
.mui-utdfv4.Mui-disabled { pointer-events: none; cursor: default; }
@media print {
  .mui-utdfv4 { print-color-adjust: exact; }
}
.mui-utdfv4:hover { text-decoration: none; background-color: rgb(66, 165, 245); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px; }
@media (hover: none) {
  .mui-utdfv4:hover { background-color: rgb(144, 202, 249); }
}
.mui-utdfv4:active { box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 5px -3px, rgba(0, 0, 0, 0.14) 0px 8px 10px 1px, rgba(0, 0, 0, 0.12) 0px 3px 14px 2px; }
.mui-utdfv4.Mui-focusVisible { box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px; }
.mui-utdfv4.Mui-disabled { color: rgba(255, 255, 255, 0.3); box-shadow: none; background-color: rgba(255, 255, 255, 0.12); }
.mui-utdfv4 .MuiLoadingButton-startIconLoadingStart, .mui-utdfv4 .MuiLoadingButton-endIconLoadingEnd { transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1); opacity: 0; }
.mui-utdfv4.MuiLoadingButton-loading { color: transparent; }
.mui-utdfv4.MuiButton-contained { background: linear-gradient(90deg, rgb(146, 254, 157) 0%, rgb(0, 201, 255) 100%, rgb(0, 201, 255) 100%); font-family: var(--font-lato); font-style: normal; color: rgb(28, 30, 37); transition: none; text-transform: unset; }
.mui-utdfv4.MuiButton-contained:hover { background: rgb(4, 203, 253); }
.mui-utdfv4.MuiButton-contained:focus { background: rgb(2, 162, 202); }
.mui-utdfv4.MuiButton-contained.Mui-disabled { background: rgb(72, 76, 91); color: rgb(28, 30, 37); }
.mui-utdfv4.MuiButton-sizeLarge { padding: 12px 40px; border-radius: 10px; font-size: 16px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-utdfv4.MuiButton-sizeLarge.MuiButton-fullWidth { width: 100%; }
.mui-utdfv4.MuiButton-sizeMedium { padding: 8px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-utdfv4.MuiButton-sizeMedium.MuiButton-fullWidth { width: 100%; }
.mui-utdfv4.MuiButton-sizeSmall { padding: 4px 12px; border-radius: 16px; font-size: 10px; font-weight: 500; line-height: 16px; width: fit-content; }
.mui-utdfv4.MuiButton-sizeSmall.MuiButton-fullWidth { width: 100%; }
.mui-szc7xr { width: 100%; display: flex; min-height: 100vh; gap: 20px; overflow: hidden; flex: 1 1 0%; -webkit-box-pack: center; justify-content: center; background-repeat: no-repeat; background-size: cover; background-image: url("./asserts/soneium_dashboard_bg.png"); }
@media (min-width: 0px) {
  .mui-szc7xr { padding-top: 70px; padding-bottom: 30px; }
}
@media (min-width: 767px) {
  .mui-szc7xr { padding-top: 80px; padding-bottom: 60px; }
}
.mui-1mbbfov { display: flex; max-width: 1200px; overflow: visible; width: 100%; flex: 1 1 0%; }
.mui-154xr06 { display: flex; flex-direction: column; gap: 40px; width: 100%; flex: 1 1 0%; -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; }
.mui-21h75r { text-align: center; color: rgb(0, 0, 0); max-width: 300px; }
.mui-11rrzxy { width: 100%; display: flex; -webkit-box-pack: center; justify-content: center; background: rgb(28, 30, 37); z-index: 10; }
.mui-xifv77 { max-width: 1392px; width: 100%; display: flex; flex-direction: column; }
@media (min-width: 0px) {
  .mui-xifv77 { padding: 0px 15px; }
}
@media (min-width: 500px) {
  .mui-xifv77 { padding: 0px 30px; }
}
@media (min-width: 1392px) {
  .mui-xifv77 { padding: 0px; }
}
.mui-11malf8 { display: grid; gap: 20px; -webkit-box-align: center; align-items: center; -webkit-box-pack: justify; justify-content: space-between; padding: 40px 0px; }
@media (min-width: 0px) {
  .mui-11malf8 { grid-template-columns: 1fr; grid-template-areas: "logo" "community" "learn" "more" "social"; }
}
@media (min-width: 500px) {
  .mui-11malf8 { grid-template-columns: 1fr 1fr; grid-template-areas: "logo logo" "community learn" "more social"; }
}
@media (min-width: 1200px) {
  .mui-11malf8 { grid-template-columns: 1fr 150px 170px 170px 310px; grid-template-areas: "logo community learn more social"; }
}
.mui-16hoqge { grid-area: logo; align-self: start; }
.mui-105xu4z { display: flex; flex-direction: column; gap: 10px; grid-area: community; align-self: start; }
.mui-1rmdr2r { display: flex; flex-direction: column; gap: 10px; grid-area: learn; align-self: start; }
.mui-33hufj { display: flex; flex-direction: column; gap: 10px; grid-area: more; align-self: start; }
.mui-1kzvs52 { padding-bottom: 4px; color: rgba(245, 247, 243, 0.5); text-transform: uppercase; }
.mui-q7bmzn { color: rgb(245, 247, 243); }
.mui-g3wgzx { display: flex; flex-direction: column; gap: 20px; grid-area: social; max-width: 310px; align-self: start; }
.mui-1jwufkx { display: flex; flex-direction: column; gap: 14px; }
.mui-1haao7 { color: rgba(245, 247, 243, 0.5); text-transform: uppercase; }
.mui-1h2sv0j { display: flex; -webkit-box-align: center; align-items: center; gap: 10px; }
.mui-2u8vad { display: flex; -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; padding: 10px; border-radius: 10px; background: rgba(245, 247, 243, 0.1); }
.mui-1agbc96 { font-family: Roboto, Helvetica, Arial, sans-serif; font-weight: 500; font-size: 0.9375rem; line-height: 1.75; letter-spacing: 0.02857em; text-transform: uppercase; min-width: 64px; padding: 8px 22px; border-radius: 4px; color: rgba(0, 0, 0, 0.87); background-color: rgb(144, 202, 249); box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px; width: 100%; transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1); }
.mui-1agbc96:hover { text-decoration: none; background-color: rgb(66, 165, 245); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px; }
@media (hover: none) {
  .mui-1agbc96:hover { background-color: rgb(144, 202, 249); }
}
.mui-1agbc96:active { box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 5px -3px, rgba(0, 0, 0, 0.14) 0px 8px 10px 1px, rgba(0, 0, 0, 0.12) 0px 3px 14px 2px; }
.mui-1agbc96.Mui-focusVisible { box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px; }
.mui-1agbc96.Mui-disabled { color: rgba(255, 255, 255, 0.3); box-shadow: none; background-color: rgba(255, 255, 255, 0.12); }
.mui-1agbc96 .MuiLoadingButton-startIconLoadingStart, .mui-1agbc96 .MuiLoadingButton-endIconLoadingEnd { transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1); opacity: 0; }
.mui-1agbc96.MuiLoadingButton-loading { color: transparent; }
.mui-1agbc96.MuiButton-contained { background: linear-gradient(90deg, rgb(146, 254, 157) 0%, rgb(0, 201, 255) 100%, rgb(0, 201, 255) 100%); font-family: var(--font-lato); font-style: normal; color: rgb(28, 30, 37); transition: none; text-transform: unset; }
.mui-1agbc96.MuiButton-contained:hover { background: rgb(4, 203, 253); }
.mui-1agbc96.MuiButton-contained:focus { background: rgb(2, 162, 202); }
.mui-1agbc96.MuiButton-contained.Mui-disabled { background: rgb(72, 76, 91); color: rgb(28, 30, 37); }
.mui-1agbc96.MuiButton-sizeLarge { padding: 12px 40px; border-radius: 10px; font-size: 16px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-1agbc96.MuiButton-sizeLarge.MuiButton-fullWidth { width: 100%; }
.mui-1agbc96.MuiButton-sizeMedium { padding: 8px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-1agbc96.MuiButton-sizeMedium.MuiButton-fullWidth { width: 100%; }
.mui-1agbc96.MuiButton-sizeSmall { padding: 4px 12px; border-radius: 16px; font-size: 10px; font-weight: 500; line-height: 16px; width: fit-content; }
.mui-1agbc96.MuiButton-sizeSmall.MuiButton-fullWidth { width: 100%; }
.mui-12mbbeq { display: inline-flex; -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; position: relative; box-sizing: border-box; -webkit-tap-highlight-color: transparent; outline: 0px; border: 0px; margin: 0px; cursor: pointer; user-select: none; vertical-align: middle; appearance: none; text-decoration: none; font-family: Roboto, Helvetica, Arial, sans-serif; font-weight: 500; font-size: 0.9375rem; line-height: 1.75; letter-spacing: 0.02857em; text-transform: uppercase; min-width: 64px; padding: 8px 22px; border-radius: 4px; color: rgba(0, 0, 0, 0.87); background-color: rgb(144, 202, 249); box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px; width: 100%; transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1); }
.mui-12mbbeq.Mui-disabled { pointer-events: none; cursor: default; }
@media print {
  .mui-12mbbeq { print-color-adjust: exact; }
}
.mui-12mbbeq:hover { text-decoration: none; background-color: rgb(66, 165, 245); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px; }
@media (hover: none) {
  .mui-12mbbeq:hover { background-color: rgb(144, 202, 249); }
}
.mui-12mbbeq:active { box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 5px -3px, rgba(0, 0, 0, 0.14) 0px 8px 10px 1px, rgba(0, 0, 0, 0.12) 0px 3px 14px 2px; }
.mui-12mbbeq.Mui-focusVisible { box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px; }
.mui-12mbbeq.Mui-disabled { color: rgba(255, 255, 255, 0.3); box-shadow: none; background-color: rgba(255, 255, 255, 0.12); }
.mui-12mbbeq .MuiLoadingButton-startIconLoadingStart, .mui-12mbbeq .MuiLoadingButton-endIconLoadingEnd { transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1); opacity: 0; }
.mui-12mbbeq.MuiLoadingButton-loading { color: transparent; }
.mui-12mbbeq.MuiButton-contained { background: linear-gradient(90deg, rgb(146, 254, 157) 0%, rgb(0, 201, 255) 100%, rgb(0, 201, 255) 100%); font-family: var(--font-lato); font-style: normal; color: rgb(28, 30, 37); transition: none; text-transform: unset; }
.mui-12mbbeq.MuiButton-contained:hover { background: rgb(4, 203, 253); }
.mui-12mbbeq.MuiButton-contained:focus { background: rgb(2, 162, 202); }
.mui-12mbbeq.MuiButton-contained.Mui-disabled { background: rgb(72, 76, 91); color: rgb(28, 30, 37); }
.mui-12mbbeq.MuiButton-sizeLarge { padding: 12px 40px; border-radius: 10px; font-size: 16px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-12mbbeq.MuiButton-sizeLarge.MuiButton-fullWidth { width: 100%; }
.mui-12mbbeq.MuiButton-sizeMedium { padding: 8px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-12mbbeq.MuiButton-sizeMedium.MuiButton-fullWidth { width: 100%; }
.mui-12mbbeq.MuiButton-sizeSmall { padding: 4px 12px; border-radius: 16px; font-size: 10px; font-weight: 500; line-height: 16px; width: fit-content; }
.mui-12mbbeq.MuiButton-sizeSmall.MuiButton-fullWidth { width: 100%; }
.mui-1dpaf37 { display: flex; gap: 20px; -webkit-box-pack: justify; justify-content: space-between; padding: 20px 0px; color: rgba(245, 247, 243, 0.5); }
@media (min-width: 0px) {
  .mui-1dpaf37 { flex-direction: column; -webkit-box-align: unset; align-items: unset; }
}
@media (min-width: 500px) {
  .mui-1dpaf37 { flex-direction: row; -webkit-box-align: center; align-items: center; }
}
.mui-w0pj6f { overflow: hidden; pointer-events: none; position: absolute; z-index: 0; inset: 0px; border-radius: inherit; }
.mui-j2km17 { display: flex; flex-direction: column; gap: 20px; width: 100%; }
@media (min-width: 0px) {
  .mui-j2km17 { padding: 0px 15px; }
}
@media (min-width: 500px) {
  .mui-j2km17 { padding: 0px 30px; }
}
@media (min-width: 1392px) {
  .mui-j2km17 { padding: 0px; }
}
.mui-1v8my8o { display: flex; flex-direction: column; gap: 20px; }
.mui-2qn9fe { color: rgb(245, 247, 243); display: flex; -webkit-box-align: center; align-items: center; gap: 10px; font-size: 48px; font-weight: 700; }
.mui-5cm1aq { color: rgb(0, 0, 0); }
.mui-gq6tr0 { display: grid; gap: 20px; width: 100%; }
@media (min-width: 0px) {
  .mui-gq6tr0 { grid-template-columns: 1fr; }
}
@media (min-width: 1392px) {
  .mui-gq6tr0 { grid-template-columns: 1fr 333px; }
}
.mui-og39to { display: flex; padding: 40px 30px; border-radius: 10px; position: relative; overflow: hidden; z-index: 1; border: 2px solid rgb(209, 213, 219); }
@media (min-width: 0px) {
  .mui-og39to { flex-direction: column-reverse; }
}
@media (min-width: 1200px) {
  .mui-og39to { flex-direction: row; }
}
.mui-1315c3s { display: flex; flex-direction: column; gap: 32px; flex: 0 1 0%; min-width: 280px; }
@media (min-width: 0px) {
  .mui-1315c3s { padding-right: 0px; padding-top: 20px; border-top: 1px solid rgba(245, 247, 243, 0.1); border-right: none; }
}
@media (min-width: 1200px) {
  .mui-1315c3s { padding-right: 56px; padding-top: 0px; border-top: none; border-right: 1px solid rgb(209, 213, 219); }
}
.mui-1en42kf { display: flex; -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; flex: 1 1 0%; }
.mui-1ukme8u { display: inline-block; color: rgb(144, 202, 249); animation: 1.4s linear 0s infinite normal none running animation-61bdi0; background: linear-gradient(264deg, rgb(242, 159, 245) 14.05%, rgb(88, 191, 225) 45.57%, rgb(227, 229, 161) 52.17%, rgb(88, 191, 225) 63.91%, rgb(242, 159, 245) 90.3%) text; -webkit-text-fill-color: transparent; }
@-webkit-keyframes animation-61bdi0 { 
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes animation-61bdi0 { 
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.mui-13o7eu2 { display: block; }
.mui-14891ef { stroke: currentcolor; stroke-dasharray: 80px, 200px; stroke-dashoffset: 0; animation: 1.4s ease-in-out 0s infinite normal none running animation-1p2h4ri; }
@-webkit-keyframes animation-1p2h4ri { 
  0% { stroke-dasharray: 1px, 200px; stroke-dashoffset: 0; }
  50% { stroke-dasharray: 100px, 200px; stroke-dashoffset: -15px; }
  100% { stroke-dasharray: 100px, 200px; stroke-dashoffset: -125px; }
}
@keyframes animation-1p2h4ri { 
  0% { stroke-dasharray: 1px, 200px; stroke-dashoffset: 0; }
  50% { stroke-dasharray: 100px, 200px; stroke-dashoffset: -15px; }
  100% { stroke-dasharray: 100px, 200px; stroke-dashoffset: -125px; }
}
.mui-1gkbhf5 { display: flex; flex-direction: column; gap: 32px; flex: 1 1 0%; }
@media (min-width: 0px) {
  .mui-1gkbhf5 { padding-left: 0px; padding-bottom: 20px; border-bottom: 1px solid rgba(245, 247, 243, 0.1); border-left: none; }
}
@media (min-width: 1200px) {
  .mui-1gkbhf5 { padding-left: 56px; padding-bottom: 0px; border-bottom: none; border-left: 1px solid rgba(245, 247, 243, 0.1); }
}
.mui-1yyyxwf { display: flex; align-items: flex-start; -webkit-box-pack: justify; justify-content: space-between; gap: 10px; }
.mui-4p9vrj { display: flex; flex-direction: column; gap: 30px; }
.mui-142s4bb { color: rgba(245, 247, 243, 0.5); display: flex; flex-direction: column; gap: 10px; max-width: 426px; }
.mui-sl1az3 { font-size: 18px; line-height: 25px; font-weight: 500; color: rgb(0, 0, 0); }
.mui-1vg6q84 { font-weight: 700; }
.mui-1ahmzhg { font-size: 14px; line-height: 19px; font-weight: 500; color: rgb(0, 0, 0); }
.mui-bco1gb { display: flex; flex-direction: column; gap: 10px; }
.mui-bdmz0d { font-size: 20px; line-height: 25px; font-weight: 500; color: rgb(0, 0, 0); }
.mui-1dnaxzp { display: flex; -webkit-box-align: center; align-items: center; gap: 5px; }
.mui-164u92e { background: linear-gradient(264deg, rgb(242, 159, 245) 14.05%, rgb(88, 191, 225) 45.57%, rgb(227, 229, 161) 52.17%, rgb(88, 191, 225) 63.91%, rgb(242, 159, 245) 90.3%) text; -webkit-text-fill-color: transparent; }
.mui-1m0lpz2 { color: rgb(0, 0, 0); font-size: 40px; font-weight: 700; }
@media (min-width: 0px) {
  .mui-19m9z6e { display: none; }
}
@media (min-width: 767px) {
  .mui-19m9z6e { display: flex; }
}
.mui-t165xc { display: flex; -webkit-box-align: center; align-items: center; -webkit-box-pack: justify; justify-content: space-between; gap: 20px; margin-top: auto; }
@media (min-width: 0px) {
  .mui-t165xc { flex-wrap: wrap; }
}
@media (min-width: 767px) {
  .mui-t165xc { flex-wrap: unset; }
}
.mui-18cg7cd { padding: 12px 20px !important; }
.mui-18cg7cd.MuiButton-contained { background: rgb(0, 0, 0); font-family: var(--font-lato); font-style: normal; color: rgb(245, 247, 243); transition: none; text-transform: unset; border-radius: 4px !important; }
.mui-18cg7cd.MuiButton-contained:hover { background: rgb(51, 51, 51); }
.mui-18cg7cd.MuiButton-contained:focus { background: rgb(51, 51, 51); }
.mui-18cg7cd.MuiButton-contained.Mui-disabled { background: rgb(222, 226, 236); color: rgb(245, 247, 243); }
.mui-18cg7cd.MuiButton-contained.white { color: rgb(0, 0, 0); background: rgb(255, 255, 255); }
.mui-18cg7cd.MuiButton-contained.white:hover { background: rgb(255, 255, 255); }
.mui-18cg7cd.MuiButton-contained.white:focus { background: rgb(250, 250, 250); }
.mui-18cg7cd.MuiButton-contained.white.Mui-disabled { background: rgb(250, 250, 250); color: rgb(0, 0, 0); }
.mui-18cg7cd.MuiButton-sizeLarge { padding: 12px 40px; border-radius: 10px; font-size: 16px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-18cg7cd.MuiButton-sizeLarge.MuiButton-fullWidth { width: 100%; }
.mui-18cg7cd.MuiButton-sizeMedium { padding: 8px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-18cg7cd.MuiButton-sizeMedium.MuiButton-fullWidth { width: 100%; }
.mui-18cg7cd.MuiButton-sizeSmall { padding: 4px 12px; border-radius: 16px; font-size: 10px; font-weight: 500; line-height: 16px; width: fit-content; }
.mui-18cg7cd.MuiButton-sizeSmall.MuiButton-fullWidth { width: 100%; }
@media (min-width: 0px) {
  .mui-18cg7cd { width: 100% !important; }
}
@media (min-width: 500px) {
  .mui-18cg7cd { width: 210px !important; }
}
@media (min-width: 992px) {
  .mui-18cg7cd { width: 131px !important; }
}
.mui-1t4ox1s { transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1); padding: 12px 20px !important; }
.mui-1t4ox1s .MuiLoadingButton-startIconLoadingStart, .mui-1t4ox1s .MuiLoadingButton-endIconLoadingEnd { transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1); opacity: 0; }
.mui-1t4ox1s.MuiLoadingButton-loading { color: transparent; }
.mui-1t4ox1s.MuiButton-contained { background: rgb(0, 0, 0); font-family: var(--font-lato); font-style: normal; color: rgb(245, 247, 243); transition: none; text-transform: unset; border-radius: 4px !important; }
.mui-1t4ox1s.MuiButton-contained:hover { background: rgb(51, 51, 51); }
.mui-1t4ox1s.MuiButton-contained:focus { background: rgb(51, 51, 51); }
.mui-1t4ox1s.MuiButton-contained.Mui-disabled { background: rgb(222, 226, 236); color: rgb(245, 247, 243); }
.mui-1t4ox1s.MuiButton-contained.white { color: rgb(0, 0, 0); background: rgb(255, 255, 255); }
.mui-1t4ox1s.MuiButton-contained.white:hover { background: rgb(255, 255, 255); }
.mui-1t4ox1s.MuiButton-contained.white:focus { background: rgb(250, 250, 250); }
.mui-1t4ox1s.MuiButton-contained.white.Mui-disabled { background: rgb(250, 250, 250); color: rgb(0, 0, 0); }
.mui-1t4ox1s.MuiButton-sizeLarge { padding: 12px 40px; border-radius: 10px; font-size: 16px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-1t4ox1s.MuiButton-sizeLarge.MuiButton-fullWidth { width: 100%; }
.mui-1t4ox1s.MuiButton-sizeMedium { padding: 8px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-1t4ox1s.MuiButton-sizeMedium.MuiButton-fullWidth { width: 100%; }
.mui-1t4ox1s.MuiButton-sizeSmall { padding: 4px 12px; border-radius: 16px; font-size: 10px; font-weight: 500; line-height: 16px; width: fit-content; }
.mui-1t4ox1s.MuiButton-sizeSmall.MuiButton-fullWidth { width: 100%; }
@media (min-width: 0px) {
  .mui-1t4ox1s { width: 100% !important; }
}
@media (min-width: 500px) {
  .mui-1t4ox1s { width: 210px !important; }
}
@media (min-width: 992px) {
  .mui-1t4ox1s { width: 131px !important; }
}
.mui-mcgxn3 { font-family: Roboto, Helvetica, Arial, sans-serif; font-weight: 500; font-size: 0.9375rem; line-height: 1.75; letter-spacing: 0.02857em; text-transform: uppercase; min-width: 64px; border-radius: 4px; color: rgba(0, 0, 0, 0.87); background-color: rgb(144, 202, 249); box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px; transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1); padding: 12px 20px !important; }
.mui-mcgxn3:hover { text-decoration: none; background-color: rgb(66, 165, 245); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px; }
@media (hover: none) {
  .mui-mcgxn3:hover { background-color: rgb(144, 202, 249); }
}
.mui-mcgxn3:active { box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 5px -3px, rgba(0, 0, 0, 0.14) 0px 8px 10px 1px, rgba(0, 0, 0, 0.12) 0px 3px 14px 2px; }
.mui-mcgxn3.Mui-focusVisible { box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px; }
.mui-mcgxn3.Mui-disabled { color: rgba(255, 255, 255, 0.3); box-shadow: none; background-color: rgba(255, 255, 255, 0.12); }
.mui-mcgxn3 .MuiLoadingButton-startIconLoadingStart, .mui-mcgxn3 .MuiLoadingButton-endIconLoadingEnd { transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1); opacity: 0; }
.mui-mcgxn3.MuiLoadingButton-loading { color: transparent; }
.mui-mcgxn3.MuiButton-contained { background: rgb(0, 0, 0); font-family: var(--font-lato); font-style: normal; color: rgb(245, 247, 243); transition: none; text-transform: unset; border-radius: 4px !important; }
.mui-mcgxn3.MuiButton-contained:hover { background: rgb(51, 51, 51); }
.mui-mcgxn3.MuiButton-contained:focus { background: rgb(51, 51, 51); }
.mui-mcgxn3.MuiButton-contained.Mui-disabled { background: rgb(222, 226, 236); color: rgb(245, 247, 243); }
.mui-mcgxn3.MuiButton-contained.white { color: rgb(0, 0, 0); background: rgb(255, 255, 255); }
.mui-mcgxn3.MuiButton-contained.white:hover { background: rgb(255, 255, 255); }
.mui-mcgxn3.MuiButton-contained.white:focus { background: rgb(250, 250, 250); }
.mui-mcgxn3.MuiButton-contained.white.Mui-disabled { background: rgb(250, 250, 250); color: rgb(0, 0, 0); }
.mui-mcgxn3.MuiButton-sizeLarge { padding: 12px 40px; border-radius: 10px; font-size: 16px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-mcgxn3.MuiButton-sizeLarge.MuiButton-fullWidth { width: 100%; }
.mui-mcgxn3.MuiButton-sizeMedium { padding: 8px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-mcgxn3.MuiButton-sizeMedium.MuiButton-fullWidth { width: 100%; }
.mui-mcgxn3.MuiButton-sizeSmall { padding: 4px 12px; border-radius: 16px; font-size: 10px; font-weight: 500; line-height: 16px; width: fit-content; }
.mui-mcgxn3.MuiButton-sizeSmall.MuiButton-fullWidth { width: 100%; }
@media (min-width: 0px) {
  .mui-mcgxn3 { width: 100% !important; }
}
@media (min-width: 500px) {
  .mui-mcgxn3 { width: 210px !important; }
}
@media (min-width: 992px) {
  .mui-mcgxn3 { width: 131px !important; }
}
.mui-90ambz { display: inline-flex; -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; position: relative; box-sizing: border-box; -webkit-tap-highlight-color: transparent; outline: 0px; border: 0px; margin: 0px; cursor: pointer; user-select: none; vertical-align: middle; appearance: none; text-decoration: none; font-family: Roboto, Helvetica, Arial, sans-serif; font-weight: 500; font-size: 0.9375rem; line-height: 1.75; letter-spacing: 0.02857em; text-transform: uppercase; min-width: 64px; border-radius: 4px; color: rgba(0, 0, 0, 0.87); background-color: rgb(144, 202, 249); box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px; transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1); padding: 12px 20px !important; }
.mui-90ambz.Mui-disabled { pointer-events: none; cursor: default; }
@media print {
  .mui-90ambz { print-color-adjust: exact; }
}
.mui-90ambz:hover { text-decoration: none; background-color: rgb(66, 165, 245); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px; }
@media (hover: none) {
  .mui-90ambz:hover { background-color: rgb(144, 202, 249); }
}
.mui-90ambz:active { box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 5px -3px, rgba(0, 0, 0, 0.14) 0px 8px 10px 1px, rgba(0, 0, 0, 0.12) 0px 3px 14px 2px; }
.mui-90ambz.Mui-focusVisible { box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px; }
.mui-90ambz.Mui-disabled { color: rgba(255, 255, 255, 0.3); box-shadow: none; background-color: rgba(255, 255, 255, 0.12); }
.mui-90ambz .MuiLoadingButton-startIconLoadingStart, .mui-90ambz .MuiLoadingButton-endIconLoadingEnd { transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1); opacity: 0; }
.mui-90ambz.MuiLoadingButton-loading { color: transparent; }
.mui-90ambz.MuiButton-contained { background: rgb(0, 0, 0); font-family: var(--font-lato); font-style: normal; color: rgb(245, 247, 243); transition: none; text-transform: unset; border-radius: 4px !important; }
.mui-90ambz.MuiButton-contained:hover { background: rgb(51, 51, 51); }
.mui-90ambz.MuiButton-contained:focus { background: rgb(51, 51, 51); }
.mui-90ambz.MuiButton-contained.Mui-disabled { background: rgb(222, 226, 236); color: rgb(245, 247, 243); }
.mui-90ambz.MuiButton-contained.white { color: rgb(0, 0, 0); background: rgb(255, 255, 255); }
.mui-90ambz.MuiButton-contained.white:hover { background: rgb(255, 255, 255); }
.mui-90ambz.MuiButton-contained.white:focus { background: rgb(250, 250, 250); }
.mui-90ambz.MuiButton-contained.white.Mui-disabled { background: rgb(250, 250, 250); color: rgb(0, 0, 0); }
.mui-90ambz.MuiButton-sizeLarge { padding: 12px 40px; border-radius: 10px; font-size: 16px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-90ambz.MuiButton-sizeLarge.MuiButton-fullWidth { width: 100%; }
.mui-90ambz.MuiButton-sizeMedium { padding: 8px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-90ambz.MuiButton-sizeMedium.MuiButton-fullWidth { width: 100%; }
.mui-90ambz.MuiButton-sizeSmall { padding: 4px 12px; border-radius: 16px; font-size: 10px; font-weight: 500; line-height: 16px; width: fit-content; }
.mui-90ambz.MuiButton-sizeSmall.MuiButton-fullWidth { width: 100%; }
@media (min-width: 0px) {
  .mui-90ambz { width: 100% !important; }
}
@media (min-width: 500px) {
  .mui-90ambz { width: 210px !important; }
}
@media (min-width: 992px) {
  .mui-90ambz { width: 131px !important; }
}
.mui-cil3u3 { display: flex; -webkit-box-align: center; align-items: center; gap: 20px; }
@media (min-width: 0px) {
  .mui-cil3u3 { flex-wrap: wrap; width: 100%; }
}
@media (min-width: 767px) {
  .mui-cil3u3 { flex-wrap: unset; width: auto; }
}
.mui-396x9s { display: flex; gap: 20px; flex-wrap: wrap; }
@media (min-width: 500px) {
  .mui-396x9s { flex-direction: row; align-items: flex-start; }
}
@media (min-width: 1392px) {
  .mui-396x9s { flex-direction: column; -webkit-box-align: unset; align-items: unset; }
}
.mui-p394n9 { display: flex; flex-direction: column; gap: 10px; width: 100%; padding: 20px; border-radius: 10px; border: 1px solid rgba(245, 247, 243, 0.1); background: rgb(0, 0, 0); }
.mui-1dmnlp1 { color: rgb(245, 247, 243); text-transform: uppercase; }
.mui-22bnw2 { display: flex; -webkit-box-align: center; align-items: center; flex-direction: column; gap: 5px; }
.mui-1rlviiu { display: flex; gap: 5px; width: 100%; }
.mui-op5z7t { display: flex; flex-direction: column; -webkit-box-align: center; align-items: center; border-radius: 10px; border: 2px solid rgb(209, 213, 219); padding: 10px; font-size: 16px; font-weight: 700; color: rgb(255, 255, 255); flex: 1 1 0%; }
.mui-stup02 { display: flex; -webkit-box-align: center; align-items: center; -webkit-box-pack: justify; justify-content: space-between; gap: 5px; }
.mui-1qudhfe { width: 130px !important; padding: 12px 20px !important; }
.mui-1qudhfe.MuiButton-contained { background: rgb(0, 0, 0); font-family: var(--font-lato); font-style: normal; color: rgb(245, 247, 243); transition: none; text-transform: unset; border-radius: 4px !important; }
.mui-1qudhfe.MuiButton-contained:hover { background: rgb(51, 51, 51); }
.mui-1qudhfe.MuiButton-contained:focus { background: rgb(51, 51, 51); }
.mui-1qudhfe.MuiButton-contained.Mui-disabled { background: rgb(222, 226, 236); color: rgb(245, 247, 243); }
.mui-1qudhfe.MuiButton-contained.white { color: rgb(0, 0, 0); background: rgb(255, 255, 255); }
.mui-1qudhfe.MuiButton-contained.white:hover { background: rgb(255, 255, 255); }
.mui-1qudhfe.MuiButton-contained.white:focus { background: rgb(250, 250, 250); }
.mui-1qudhfe.MuiButton-contained.white.Mui-disabled { background: rgb(250, 250, 250); color: rgb(0, 0, 0); }
.mui-1qudhfe.MuiButton-sizeLarge { padding: 12px 40px; border-radius: 10px; font-size: 16px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-1qudhfe.MuiButton-sizeLarge.MuiButton-fullWidth { width: 100%; }
.mui-1qudhfe.MuiButton-sizeMedium { padding: 8px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-1qudhfe.MuiButton-sizeMedium.MuiButton-fullWidth { width: 100%; }
.mui-1qudhfe.MuiButton-sizeSmall { padding: 4px 12px; border-radius: 16px; font-size: 10px; font-weight: 500; line-height: 16px; width: fit-content; }
.mui-1qudhfe.MuiButton-sizeSmall.MuiButton-fullWidth { width: 100%; }
.mui-1ro5u40 { transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1); width: 130px !important; padding: 12px 20px !important; }
.mui-1ro5u40 .MuiLoadingButton-startIconLoadingStart, .mui-1ro5u40 .MuiLoadingButton-endIconLoadingEnd { transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1); opacity: 0; }
.mui-1ro5u40.MuiLoadingButton-loading { color: transparent; }
.mui-1ro5u40.MuiButton-contained { background: rgb(0, 0, 0); font-family: var(--font-lato); font-style: normal; color: rgb(245, 247, 243); transition: none; text-transform: unset; border-radius: 4px !important; }
.mui-1ro5u40.MuiButton-contained:hover { background: rgb(51, 51, 51); }
.mui-1ro5u40.MuiButton-contained:focus { background: rgb(51, 51, 51); }
.mui-1ro5u40.MuiButton-contained.Mui-disabled { background: rgb(222, 226, 236); color: rgb(245, 247, 243); }
.mui-1ro5u40.MuiButton-contained.white { color: rgb(0, 0, 0); background: rgb(255, 255, 255); }
.mui-1ro5u40.MuiButton-contained.white:hover { background: rgb(255, 255, 255); }
.mui-1ro5u40.MuiButton-contained.white:focus { background: rgb(250, 250, 250); }
.mui-1ro5u40.MuiButton-contained.white.Mui-disabled { background: rgb(250, 250, 250); color: rgb(0, 0, 0); }
.mui-1ro5u40.MuiButton-sizeLarge { padding: 12px 40px; border-radius: 10px; font-size: 16px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-1ro5u40.MuiButton-sizeLarge.MuiButton-fullWidth { width: 100%; }
.mui-1ro5u40.MuiButton-sizeMedium { padding: 8px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-1ro5u40.MuiButton-sizeMedium.MuiButton-fullWidth { width: 100%; }
.mui-1ro5u40.MuiButton-sizeSmall { padding: 4px 12px; border-radius: 16px; font-size: 10px; font-weight: 500; line-height: 16px; width: fit-content; }
.mui-1ro5u40.MuiButton-sizeSmall.MuiButton-fullWidth { width: 100%; }
.mui-1gtzozg { font-family: Roboto, Helvetica, Arial, sans-serif; font-weight: 500; font-size: 0.9375rem; line-height: 1.75; letter-spacing: 0.02857em; text-transform: uppercase; min-width: 64px; border-radius: 4px; color: rgba(0, 0, 0, 0.87); background-color: rgb(144, 202, 249); box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px; transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1); width: 130px !important; padding: 12px 20px !important; }
.mui-1gtzozg:hover { text-decoration: none; background-color: rgb(66, 165, 245); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px; }
@media (hover: none) {
  .mui-1gtzozg:hover { background-color: rgb(144, 202, 249); }
}
.mui-1gtzozg:active { box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 5px -3px, rgba(0, 0, 0, 0.14) 0px 8px 10px 1px, rgba(0, 0, 0, 0.12) 0px 3px 14px 2px; }
.mui-1gtzozg.Mui-focusVisible { box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px; }
.mui-1gtzozg.Mui-disabled { color: rgba(255, 255, 255, 0.3); box-shadow: none; background-color: rgba(255, 255, 255, 0.12); }
.mui-1gtzozg .MuiLoadingButton-startIconLoadingStart, .mui-1gtzozg .MuiLoadingButton-endIconLoadingEnd { transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1); opacity: 0; }
.mui-1gtzozg.MuiLoadingButton-loading { color: transparent; }
.mui-1gtzozg.MuiButton-contained { background: rgb(0, 0, 0); font-family: var(--font-lato); font-style: normal; color: rgb(245, 247, 243); transition: none; text-transform: unset; border-radius: 4px !important; }
.mui-1gtzozg.MuiButton-contained:hover { background: rgb(51, 51, 51); }
.mui-1gtzozg.MuiButton-contained:focus { background: rgb(51, 51, 51); }
.mui-1gtzozg.MuiButton-contained.Mui-disabled { background: rgb(222, 226, 236); color: rgb(245, 247, 243); }
.mui-1gtzozg.MuiButton-contained.white { color: rgb(0, 0, 0); background: rgb(255, 255, 255); }
.mui-1gtzozg.MuiButton-contained.white:hover { background: rgb(255, 255, 255); }
.mui-1gtzozg.MuiButton-contained.white:focus { background: rgb(250, 250, 250); }
.mui-1gtzozg.MuiButton-contained.white.Mui-disabled { background: rgb(250, 250, 250); color: rgb(0, 0, 0); }
.mui-1gtzozg.MuiButton-sizeLarge { padding: 12px 40px; border-radius: 10px; font-size: 16px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-1gtzozg.MuiButton-sizeLarge.MuiButton-fullWidth { width: 100%; }
.mui-1gtzozg.MuiButton-sizeMedium { padding: 8px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-1gtzozg.MuiButton-sizeMedium.MuiButton-fullWidth { width: 100%; }
.mui-1gtzozg.MuiButton-sizeSmall { padding: 4px 12px; border-radius: 16px; font-size: 10px; font-weight: 500; line-height: 16px; width: fit-content; }
.mui-1gtzozg.MuiButton-sizeSmall.MuiButton-fullWidth { width: 100%; }
.mui-1gtfmc4 { display: inline-flex; -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; position: relative; box-sizing: border-box; -webkit-tap-highlight-color: transparent; outline: 0px; border: 0px; margin: 0px; cursor: pointer; user-select: none; vertical-align: middle; appearance: none; text-decoration: none; font-family: Roboto, Helvetica, Arial, sans-serif; font-weight: 500; font-size: 0.9375rem; line-height: 1.75; letter-spacing: 0.02857em; text-transform: uppercase; min-width: 64px; border-radius: 4px; color: rgba(0, 0, 0, 0.87); background-color: rgb(144, 202, 249); box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px; transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1); width: 130px !important; padding: 12px 20px !important; }
.mui-1gtfmc4.Mui-disabled { pointer-events: none; cursor: default; }
@media print {
  .mui-1gtfmc4 { print-color-adjust: exact; }
}
.mui-1gtfmc4:hover { text-decoration: none; background-color: rgb(66, 165, 245); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px; }
@media (hover: none) {
  .mui-1gtfmc4:hover { background-color: rgb(144, 202, 249); }
}
.mui-1gtfmc4:active { box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 5px -3px, rgba(0, 0, 0, 0.14) 0px 8px 10px 1px, rgba(0, 0, 0, 0.12) 0px 3px 14px 2px; }
.mui-1gtfmc4.Mui-focusVisible { box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px; }
.mui-1gtfmc4.Mui-disabled { color: rgba(255, 255, 255, 0.3); box-shadow: none; background-color: rgba(255, 255, 255, 0.12); }
.mui-1gtfmc4 .MuiLoadingButton-startIconLoadingStart, .mui-1gtfmc4 .MuiLoadingButton-endIconLoadingEnd { transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1); opacity: 0; }
.mui-1gtfmc4.MuiLoadingButton-loading { color: transparent; }
.mui-1gtfmc4.MuiButton-contained { background: rgb(0, 0, 0); font-family: var(--font-lato); font-style: normal; color: rgb(245, 247, 243); transition: none; text-transform: unset; border-radius: 4px !important; }
.mui-1gtfmc4.MuiButton-contained:hover { background: rgb(51, 51, 51); }
.mui-1gtfmc4.MuiButton-contained:focus { background: rgb(51, 51, 51); }
.mui-1gtfmc4.MuiButton-contained.Mui-disabled { background: rgb(222, 226, 236); color: rgb(245, 247, 243); }
.mui-1gtfmc4.MuiButton-contained.white { color: rgb(0, 0, 0); background: rgb(255, 255, 255); }
.mui-1gtfmc4.MuiButton-contained.white:hover { background: rgb(255, 255, 255); }
.mui-1gtfmc4.MuiButton-contained.white:focus { background: rgb(250, 250, 250); }
.mui-1gtfmc4.MuiButton-contained.white.Mui-disabled { background: rgb(250, 250, 250); color: rgb(0, 0, 0); }
.mui-1gtfmc4.MuiButton-sizeLarge { padding: 12px 40px; border-radius: 10px; font-size: 16px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-1gtfmc4.MuiButton-sizeLarge.MuiButton-fullWidth { width: 100%; }
.mui-1gtfmc4.MuiButton-sizeMedium { padding: 8px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-1gtfmc4.MuiButton-sizeMedium.MuiButton-fullWidth { width: 100%; }
.mui-1gtfmc4.MuiButton-sizeSmall { padding: 4px 12px; border-radius: 16px; font-size: 10px; font-weight: 500; line-height: 16px; width: fit-content; }
.mui-1gtfmc4.MuiButton-sizeSmall.MuiButton-fullWidth { width: 100%; }
.mui-1d0zclf { display: flex; -webkit-box-align: center; align-items: center; gap: 5px; font-size: 24px; color: rgb(255, 255, 255); font-weight: 700; }
.mui-r0820 { display: flex; flex-direction: column; gap: 60px; }
.mui-4svm0k { display: flex; flex-direction: column; gap: 20px; font-size: 48px; font-weight: 700; color: rgb(0, 0, 0); }
.mui-xi606m { text-align: center; }
.mui-f1vr85 { display: flex; flex-direction: column; gap: 40px; background: rgb(255, 255, 255); }
@media (min-width: 0px) {
  .mui-f1vr85 { padding: 0px; border-radius: unset; border: none; }
}
@media (min-width: 992px) {
  .mui-f1vr85 { padding: 25px; border-radius: 10px; border: 2px solid rgb(209, 213, 219); }
}
.mui-usnm81 .MuiButtonBase-root { border-radius: 10px 10px 0px 0px; font-family: var(--font-lato); font-size: 14px; font-style: normal; font-weight: 700; padding: 8px; line-height: 19px; text-transform: unset; color: rgb(0, 0, 0); }
.mui-usnm81 .MuiTabs-scroller { border-bottom: 1px solid rgb(0, 0, 0); }
.mui-usnm81 .MuiButtonBase-root.Mui-selected { background: linear-gradient(264deg, rgb(242, 159, 245) 14.05%, rgb(88, 191, 225) 45.57%, rgb(227, 229, 161) 52.17%, rgb(88, 191, 225) 63.91%, rgb(242, 159, 245) 90.3%) text; -webkit-text-fill-color: transparent; }
.mui-usnm81 .MuiTabs-indicator { background: linear-gradient(264deg, rgb(242, 159, 245) 14.05%, rgb(88, 191, 225) 45.57%, rgb(227, 229, 161) 52.17%, rgb(88, 191, 225) 63.91%, rgb(242, 159, 245) 90.3%); }
.mui-savkpw { overflow: hidden; min-height: 48px; display: flex; }
@media (max-width: 499.95px) {
  .mui-savkpw .MuiTabs-scrollButtons { display: none; }
}
.mui-savkpw .MuiButtonBase-root { border-radius: 10px 10px 0px 0px; font-family: var(--font-lato); font-size: 14px; font-style: normal; font-weight: 700; padding: 8px; line-height: 19px; text-transform: unset; color: rgb(0, 0, 0); }
.mui-savkpw .MuiTabs-scroller { border-bottom: 1px solid rgb(0, 0, 0); }
.mui-savkpw .MuiButtonBase-root.Mui-selected { background: linear-gradient(264deg, rgb(242, 159, 245) 14.05%, rgb(88, 191, 225) 45.57%, rgb(227, 229, 161) 52.17%, rgb(88, 191, 225) 63.91%, rgb(242, 159, 245) 90.3%) text; -webkit-text-fill-color: transparent; }
.mui-savkpw .MuiTabs-indicator { background: linear-gradient(264deg, rgb(242, 159, 245) 14.05%, rgb(88, 191, 225) 45.57%, rgb(227, 229, 161) 52.17%, rgb(88, 191, 225) 63.91%, rgb(242, 159, 245) 90.3%); }
.mui-1anid1y { position: relative; display: inline-block; flex: 1 1 auto; white-space: nowrap; overflow-x: hidden; width: 100%; }
.mui-k008qs { display: flex; }
.mui-12twtuy { font-family: Roboto, Helvetica, Arial, sans-serif; font-weight: 500; font-size: 0.875rem; line-height: 1.25; letter-spacing: 0.02857em; text-transform: uppercase; max-width: none; min-width: 90px; position: relative; min-height: 48px; flex: 1 1 0px; padding: 12px 16px; overflow: hidden; white-space: normal; text-align: center; flex-direction: column; color: rgba(255, 255, 255, 0.7); -webkit-box-flex: 1; }
.mui-12twtuy.Mui-selected { color: rgb(144, 202, 249); }
.mui-12twtuy.Mui-disabled { color: rgba(255, 255, 255, 0.5); }
.mui-13xq27j { display: inline-flex; -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; box-sizing: border-box; -webkit-tap-highlight-color: transparent; background-color: transparent; outline: 0px; border: 0px; margin: 0px; border-radius: 0px; cursor: pointer; user-select: none; vertical-align: middle; appearance: none; text-decoration: none; font-family: Roboto, Helvetica, Arial, sans-serif; font-weight: 500; font-size: 0.875rem; line-height: 1.25; letter-spacing: 0.02857em; text-transform: uppercase; max-width: none; min-width: 90px; position: relative; min-height: 48px; flex: 1 1 0px; padding: 12px 16px; overflow: hidden; white-space: normal; text-align: center; flex-direction: column; color: rgba(255, 255, 255, 0.7); -webkit-box-flex: 1; }
.mui-13xq27j.Mui-disabled { pointer-events: none; cursor: default; }
@media print {
  .mui-13xq27j { print-color-adjust: exact; }
}
.mui-13xq27j.Mui-selected { color: rgb(144, 202, 249); }
.mui-13xq27j.Mui-disabled { color: rgba(255, 255, 255, 0.5); }
.mui-1wastte { position: absolute; height: 2px; bottom: 0px; width: 100%; transition: 300ms cubic-bezier(0.4, 0, 0.2, 1); background-color: rgb(144, 202, 249); }
.mui-dqrnr7 { display: flex; flex-direction: column; gap: 40px; background: rgb(255, 255, 255); }
@media (min-width: 0px) {
  .mui-dqrnr7 { padding: 0px; border-radius: unset; border: none; }
}
@media (min-width: 992px) {
  .mui-dqrnr7 { padding: 20px; border-radius: 10px; border: 2px solid rgb(209, 213, 219); }
}
.mui-6r2fzw { display: flex; flex-direction: column; gap: 32px; }
.mui-vxrkt6 { display: flex; gap: 20px; -webkit-box-pack: justify; justify-content: space-between; color: rgb(0, 0, 0); }
@media (min-width: 0px) {
  .mui-vxrkt6 { flex-direction: column; -webkit-box-align: unset; align-items: unset; }
}
@media (min-width: 767px) {
  .mui-vxrkt6 { flex-direction: row; -webkit-box-align: center; align-items: center; }
}
.mui-j982p1 { font-size: 48px; font-weight: 700; }
.mui-zj0cbk { display: flex; gap: 20px; -webkit-box-align: center; align-items: center; }
@media (min-width: 0px) {
  .mui-zj0cbk { flex-direction: column; }
}
@media (min-width: 500px) {
  .mui-zj0cbk { flex-direction: row; }
}
.mui-1jgjkod { display: flex; width: 100%; flex: 1 1 0%; -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; color: rgb(51, 51, 51); }
.mui-pi4i9y { display: flex; width: 1124px; height: 408.727px; -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; }
.mui-16be83o { display: flex; width: 1157px; height: 420.727px; -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; }
.mui-1vlngc5 { color: rgb(0, 0, 0); font-size: 20px; line-height: 25px; font-weight: 500; }
.mui-um9lm7 { background: linear-gradient(264deg, rgb(242, 159, 245) 14.05%, rgb(88, 191, 225) 45.57%, rgb(227, 229, 161) 52.17%, rgb(88, 191, 225) 63.91%, rgb(242, 159, 245) 90.3%) text; -webkit-text-fill-color: transparent; word-break: break-all; font-size: 40px; font-weight: 700; }
.mui-1rf1v08 { color: rgb(0, 0, 0); font-size: 40px; }
.mui-k93nc6 { display: flex; flex-direction: column; gap: 5px; margin-top: auto; }
.mui-q5s5qd.MuiButton-contained { background: rgb(0, 0, 0); font-family: var(--font-lato); font-style: normal; color: rgb(245, 247, 243); transition: none; text-transform: unset; border-radius: 4px !important; }
.mui-q5s5qd.MuiButton-contained:hover { background: rgb(51, 51, 51); }
.mui-q5s5qd.MuiButton-contained:focus { background: rgb(51, 51, 51); }
.mui-q5s5qd.MuiButton-contained.Mui-disabled { background: rgb(222, 226, 236); color: rgb(245, 247, 243); }
.mui-q5s5qd.MuiButton-contained.white { color: rgb(0, 0, 0); background: rgb(255, 255, 255); }
.mui-q5s5qd.MuiButton-contained.white:hover { background: rgb(255, 255, 255); }
.mui-q5s5qd.MuiButton-contained.white:focus { background: rgb(250, 250, 250); }
.mui-q5s5qd.MuiButton-contained.white.Mui-disabled { background: rgb(250, 250, 250); color: rgb(0, 0, 0); }
.mui-q5s5qd.MuiButton-sizeLarge { padding: 12px 40px; border-radius: 10px; font-size: 16px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-q5s5qd.MuiButton-sizeLarge.MuiButton-fullWidth { width: 100%; }
.mui-q5s5qd.MuiButton-sizeMedium { padding: 8px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-q5s5qd.MuiButton-sizeMedium.MuiButton-fullWidth { width: 100%; }
.mui-q5s5qd.MuiButton-sizeSmall { padding: 4px 12px; border-radius: 16px; font-size: 10px; font-weight: 500; line-height: 16px; width: fit-content; }
.mui-q5s5qd.MuiButton-sizeSmall.MuiButton-fullWidth { width: 100%; }
@media (min-width: 0px) {
  .mui-q5s5qd { width: 100% !important; }
}
@media (min-width: 500px) {
  .mui-q5s5qd { width: 214px !important; }
}
@media (min-width: 992px) {
  .mui-q5s5qd { width: 214px !important; }
}
.mui-1g1i5zk { transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1); }
.mui-1g1i5zk .MuiLoadingButton-startIconLoadingStart, .mui-1g1i5zk .MuiLoadingButton-endIconLoadingEnd { transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1); opacity: 0; }
.mui-1g1i5zk.MuiLoadingButton-loading { color: transparent; }
.mui-1g1i5zk.MuiButton-contained { background: rgb(0, 0, 0); font-family: var(--font-lato); font-style: normal; color: rgb(245, 247, 243); transition: none; text-transform: unset; border-radius: 4px !important; }
.mui-1g1i5zk.MuiButton-contained:hover { background: rgb(51, 51, 51); }
.mui-1g1i5zk.MuiButton-contained:focus { background: rgb(51, 51, 51); }
.mui-1g1i5zk.MuiButton-contained.Mui-disabled { background: rgb(222, 226, 236); color: rgb(245, 247, 243); }
.mui-1g1i5zk.MuiButton-contained.white { color: rgb(0, 0, 0); background: rgb(255, 255, 255); }
.mui-1g1i5zk.MuiButton-contained.white:hover { background: rgb(255, 255, 255); }
.mui-1g1i5zk.MuiButton-contained.white:focus { background: rgb(250, 250, 250); }
.mui-1g1i5zk.MuiButton-contained.white.Mui-disabled { background: rgb(250, 250, 250); color: rgb(0, 0, 0); }
.mui-1g1i5zk.MuiButton-sizeLarge { padding: 12px 40px; border-radius: 10px; font-size: 16px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-1g1i5zk.MuiButton-sizeLarge.MuiButton-fullWidth { width: 100%; }
.mui-1g1i5zk.MuiButton-sizeMedium { padding: 8px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-1g1i5zk.MuiButton-sizeMedium.MuiButton-fullWidth { width: 100%; }
.mui-1g1i5zk.MuiButton-sizeSmall { padding: 4px 12px; border-radius: 16px; font-size: 10px; font-weight: 500; line-height: 16px; width: fit-content; }
.mui-1g1i5zk.MuiButton-sizeSmall.MuiButton-fullWidth { width: 100%; }
@media (min-width: 0px) {
  .mui-1g1i5zk { width: 100% !important; }
}
@media (min-width: 500px) {
  .mui-1g1i5zk { width: 214px !important; }
}
@media (min-width: 992px) {
  .mui-1g1i5zk { width: 214px !important; }
}
.mui-11u22ct { font-family: Roboto, Helvetica, Arial, sans-serif; font-weight: 500; font-size: 0.9375rem; line-height: 1.75; letter-spacing: 0.02857em; text-transform: uppercase; min-width: 64px; padding: 8px 22px; border-radius: 4px; color: rgba(0, 0, 0, 0.87); background-color: rgb(144, 202, 249); box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px; transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1); }
.mui-11u22ct:hover { text-decoration: none; background-color: rgb(66, 165, 245); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px; }
@media (hover: none) {
  .mui-11u22ct:hover { background-color: rgb(144, 202, 249); }
}
.mui-11u22ct:active { box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 5px -3px, rgba(0, 0, 0, 0.14) 0px 8px 10px 1px, rgba(0, 0, 0, 0.12) 0px 3px 14px 2px; }
.mui-11u22ct.Mui-focusVisible { box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px; }
.mui-11u22ct.Mui-disabled { color: rgba(255, 255, 255, 0.3); box-shadow: none; background-color: rgba(255, 255, 255, 0.12); }
.mui-11u22ct .MuiLoadingButton-startIconLoadingStart, .mui-11u22ct .MuiLoadingButton-endIconLoadingEnd { transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1); opacity: 0; }
.mui-11u22ct.MuiLoadingButton-loading { color: transparent; }
.mui-11u22ct.MuiButton-contained { background: rgb(0, 0, 0); font-family: var(--font-lato); font-style: normal; color: rgb(245, 247, 243); transition: none; text-transform: unset; border-radius: 4px !important; }
.mui-11u22ct.MuiButton-contained:hover { background: rgb(51, 51, 51); }
.mui-11u22ct.MuiButton-contained:focus { background: rgb(51, 51, 51); }
.mui-11u22ct.MuiButton-contained.Mui-disabled { background: rgb(222, 226, 236); color: rgb(245, 247, 243); }
.mui-11u22ct.MuiButton-contained.white { color: rgb(0, 0, 0); background: rgb(255, 255, 255); }
.mui-11u22ct.MuiButton-contained.white:hover { background: rgb(255, 255, 255); }
.mui-11u22ct.MuiButton-contained.white:focus { background: rgb(250, 250, 250); }
.mui-11u22ct.MuiButton-contained.white.Mui-disabled { background: rgb(250, 250, 250); color: rgb(0, 0, 0); }
.mui-11u22ct.MuiButton-sizeLarge { padding: 12px 40px; border-radius: 10px; font-size: 16px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-11u22ct.MuiButton-sizeLarge.MuiButton-fullWidth { width: 100%; }
.mui-11u22ct.MuiButton-sizeMedium { padding: 8px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-11u22ct.MuiButton-sizeMedium.MuiButton-fullWidth { width: 100%; }
.mui-11u22ct.MuiButton-sizeSmall { padding: 4px 12px; border-radius: 16px; font-size: 10px; font-weight: 500; line-height: 16px; width: fit-content; }
.mui-11u22ct.MuiButton-sizeSmall.MuiButton-fullWidth { width: 100%; }
@media (min-width: 0px) {
  .mui-11u22ct { width: 100% !important; }
}
@media (min-width: 500px) {
  .mui-11u22ct { width: 214px !important; }
}
@media (min-width: 992px) {
  .mui-11u22ct { width: 214px !important; }
}
.mui-946ml0 { display: inline-flex; -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; position: relative; box-sizing: border-box; -webkit-tap-highlight-color: transparent; outline: 0px; border: 0px; margin: 0px; cursor: pointer; user-select: none; vertical-align: middle; appearance: none; text-decoration: none; font-family: Roboto, Helvetica, Arial, sans-serif; font-weight: 500; font-size: 0.9375rem; line-height: 1.75; letter-spacing: 0.02857em; text-transform: uppercase; min-width: 64px; padding: 8px 22px; border-radius: 4px; color: rgba(0, 0, 0, 0.87); background-color: rgb(144, 202, 249); box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px; transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1); }
.mui-946ml0.Mui-disabled { pointer-events: none; cursor: default; }
@media print {
  .mui-946ml0 { print-color-adjust: exact; }
}
.mui-946ml0:hover { text-decoration: none; background-color: rgb(66, 165, 245); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px; }
@media (hover: none) {
  .mui-946ml0:hover { background-color: rgb(144, 202, 249); }
}
.mui-946ml0:active { box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 5px -3px, rgba(0, 0, 0, 0.14) 0px 8px 10px 1px, rgba(0, 0, 0, 0.12) 0px 3px 14px 2px; }
.mui-946ml0.Mui-focusVisible { box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px; }
.mui-946ml0.Mui-disabled { color: rgba(255, 255, 255, 0.3); box-shadow: none; background-color: rgba(255, 255, 255, 0.12); }
.mui-946ml0 .MuiLoadingButton-startIconLoadingStart, .mui-946ml0 .MuiLoadingButton-endIconLoadingEnd { transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1); opacity: 0; }
.mui-946ml0.MuiLoadingButton-loading { color: transparent; }
.mui-946ml0.MuiButton-contained { background: rgb(0, 0, 0); font-family: var(--font-lato); font-style: normal; color: rgb(245, 247, 243); transition: none; text-transform: unset; border-radius: 4px !important; }
.mui-946ml0.MuiButton-contained:hover { background: rgb(51, 51, 51); }
.mui-946ml0.MuiButton-contained:focus { background: rgb(51, 51, 51); }
.mui-946ml0.MuiButton-contained.Mui-disabled { background: rgb(222, 226, 236); color: rgb(245, 247, 243); }
.mui-946ml0.MuiButton-contained.white { color: rgb(0, 0, 0); background: rgb(255, 255, 255); }
.mui-946ml0.MuiButton-contained.white:hover { background: rgb(255, 255, 255); }
.mui-946ml0.MuiButton-contained.white:focus { background: rgb(250, 250, 250); }
.mui-946ml0.MuiButton-contained.white.Mui-disabled { background: rgb(250, 250, 250); color: rgb(0, 0, 0); }
.mui-946ml0.MuiButton-sizeLarge { padding: 12px 40px; border-radius: 10px; font-size: 16px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-946ml0.MuiButton-sizeLarge.MuiButton-fullWidth { width: 100%; }
.mui-946ml0.MuiButton-sizeMedium { padding: 8px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; line-height: 24px; width: fit-content; }
.mui-946ml0.MuiButton-sizeMedium.MuiButton-fullWidth { width: 100%; }
.mui-946ml0.MuiButton-sizeSmall { padding: 4px 12px; border-radius: 16px; font-size: 10px; font-weight: 500; line-height: 16px; width: fit-content; }
.mui-946ml0.MuiButton-sizeSmall.MuiButton-fullWidth { width: 100%; }
@media (min-width: 0px) {
  .mui-946ml0 { width: 100% !important; }
}
@media (min-width: 500px) {
  .mui-946ml0 { width: 214px !important; }
}
@media (min-width: 992px) {
  .mui-946ml0 { width: 214px !important; }
}
.mui-ewwiks { display: flex; flex-direction: column; background: linear-gradient(264deg, rgb(242, 159, 245) 14.05%, rgb(88, 191, 225) 45.57%, rgb(227, 229, 161) 52.17%, rgb(88, 191, 225) 63.91%, rgb(242, 159, 245) 90.3%) text; -webkit-text-fill-color: transparent; }
.mui-oqr85h { overflow: auto hidden; scrollbar-width: none; }
.mui-oqr85h::-webkit-scrollbar { display: none; }
.mui-12qnib { position: relative; display: inline-block; flex: 1 1 auto; white-space: nowrap; scrollbar-width: none; overflow: auto hidden; }
.mui-12qnib::-webkit-scrollbar { display: none; }
.mui-1mrhrot { font-family: Roboto, Helvetica, Arial, sans-serif; font-weight: 500; font-size: 0.875rem; line-height: 1.25; letter-spacing: 0.02857em; text-transform: uppercase; max-width: 360px; min-width: 90px; position: relative; min-height: 48px; flex-shrink: 0; padding: 12px 16px; overflow: hidden; white-space: normal; text-align: center; flex-direction: column; color: rgba(255, 255, 255, 0.7); }
.mui-1mrhrot.Mui-selected { color: rgb(144, 202, 249); }
.mui-1mrhrot.Mui-disabled { color: rgba(255, 255, 255, 0.5); }
.mui-13k7cy5 { display: inline-flex; -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; box-sizing: border-box; -webkit-tap-highlight-color: transparent; background-color: transparent; outline: 0px; border: 0px; margin: 0px; border-radius: 0px; cursor: pointer; user-select: none; vertical-align: middle; appearance: none; text-decoration: none; font-family: Roboto, Helvetica, Arial, sans-serif; font-weight: 500; font-size: 0.875rem; line-height: 1.25; letter-spacing: 0.02857em; text-transform: uppercase; max-width: 360px; min-width: 90px; position: relative; min-height: 48px; flex-shrink: 0; padding: 12px 16px; overflow: hidden; white-space: normal; text-align: center; flex-direction: column; color: rgba(255, 255, 255, 0.7); }
.mui-13k7cy5.Mui-disabled { pointer-events: none; cursor: default; }
@media print {
  .mui-13k7cy5 { print-color-adjust: exact; }
}
.mui-13k7cy5.Mui-selected { color: rgb(144, 202, 249); }
.mui-13k7cy5.Mui-disabled { color: rgba(255, 255, 255, 0.5); }
.mui-wmfxf7 { width: 40px; flex-shrink: 0; opacity: 0.8; }
.mui-wmfxf7.Mui-disabled { opacity: 0; }
.mui-1q0ig8p { display: inline-flex; -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; position: relative; box-sizing: border-box; -webkit-tap-highlight-color: transparent; background-color: transparent; outline: 0px; border: 0px; margin: 0px; border-radius: 0px; padding: 0px; cursor: pointer; user-select: none; vertical-align: middle; appearance: none; text-decoration: none; color: inherit; width: 40px; flex-shrink: 0; opacity: 0.8; }
.mui-1q0ig8p.Mui-disabled { pointer-events: none; cursor: default; }
@media print {
  .mui-1q0ig8p { print-color-adjust: exact; }
}
.mui-1q0ig8p.Mui-disabled { opacity: 0; }
.mui-1k33q06 { user-select: none; width: 1em; height: 1em; display: inline-block; fill: currentcolor; flex-shrink: 0; transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1); font-size: 1.25rem; }
[data-rk] { --rk-blurs-modalOverlay: blur(0px); --rk-fonts-body: SFRounded, ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; --rk-radii-actionButton: 9999px; --rk-radii-connectButton: 12px; --rk-radii-menuButton: 12px; --rk-radii-modal: 24px; --rk-radii-modalMobile: 28px; --rk-colors-accentColor: #92fe9d; --rk-colors-accentColorForeground: #FFF; --rk-colors-actionButtonBorder: rgba(255, 255, 255, 0.04); --rk-colors-actionButtonBorderMobile: rgba(255, 255, 255, 0.08); --rk-colors-actionButtonSecondaryBackground: rgba(255, 255, 255, 0.08); --rk-colors-closeButton: rgba(224, 232, 255, 0.6); --rk-colors-closeButtonBackground: rgba(255, 255, 255, 0.08); --rk-colors-connectButtonBackground: #1A1B1F; --rk-colors-connectButtonBackgroundError: #FF494A; --rk-colors-connectButtonInnerBackground: linear-gradient(0deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.15)); --rk-colors-connectButtonText: #FFF; --rk-colors-connectButtonTextError: #FFF; --rk-colors-connectionIndicator: #30E000; --rk-colors-downloadBottomCardBackground: linear-gradient(126deg, rgba(0, 0, 0, 0) 9.49%, rgba(120, 120, 120, 0.2) 71.04%), #1A1B1F; --rk-colors-downloadTopCardBackground: linear-gradient(126deg, rgba(120, 120, 120, 0.2) 9.49%, rgba(0, 0, 0, 0) 71.04%), #1A1B1F; --rk-colors-error: #FF494A; --rk-colors-generalBorder: rgba(255, 255, 255, 0.08); --rk-colors-generalBorderDim: rgba(255, 255, 255, 0.04); --rk-colors-menuItemBackground: rgba(224, 232, 255, 0.1); --rk-colors-modalBackdrop: rgba(0, 0, 0, 0.5); --rk-colors-modalBackground: #1A1B1F; --rk-colors-modalBorder: rgba(255, 255, 255, 0.08); --rk-colors-modalText: #FFF; --rk-colors-modalTextDim: rgba(224, 232, 255, 0.3); --rk-colors-modalTextSecondary: rgba(255, 255, 255, 0.6); --rk-colors-profileAction: rgba(224, 232, 255, 0.1); --rk-colors-profileActionHover: rgba(224, 232, 255, 0.2); --rk-colors-profileForeground: rgba(224, 232, 255, 0.05); --rk-colors-selectedOptionBorder: rgba(224, 232, 255, 0.1); --rk-colors-standby: #FFD641; --rk-shadows-connectButton: 0px 4px 12px rgba(0, 0, 0, 0.1); --rk-shadows-dialog: 0px 8px 32px rgba(0, 0, 0, 0.32); --rk-shadows-profileDetailsAction: 0px 2px 6px rgba(37, 41, 46, 0.04); --rk-shadows-selectedOption: 0px 2px 6px rgba(0, 0, 0, 0.24); --rk-shadows-selectedWallet: 0px 2px 6px rgba(0, 0, 0, 0.24); --rk-shadows-walletLogo: 0px 2px 16px rgba(0, 0, 0, 0.16); }
