@keyframes hotToastEnter {
  0% {
    transform:scale(0)
  }
  to {
    transform:scale(1)
  }
}
.hot-toast-animated-icon {
  animation:var(--hot-toast-animated-icon-animation, hotToastEnter .3s ease-in-out forwards);
  position:var(--hot-toast-animated-icon-position, relative);
  transform:var(--hot-toast-animated-icon-transform, scale(0))
}
@media (prefers-reduced-motion: reduce) {
  .hot-toast-animated-icon {
    animation-duration:var(--hot-toast-animated-icon-reduced-motion-animation-duration, none);
    opacity:var(--hot-toast-animated-icon-reduced-motion-opacity, 1);
    transform:var(--hot-toast-animated-icon-reduced-motion-transform, scale(1))
  }
}
@keyframes hotToastCircleAnimation {
  0% {
    opacity:0;
    transform:scale(0) rotate(45deg)
  }
  to {
    opacity:1;
    transform:scale(1) rotate(45deg)
  }
}
@keyframes hotToastCheckmarkAnimation {
  0% {
    height:0;
    opacity:0;
    width:0
  }
  40% {
    height:0;
    opacity:1;
    width:6px
  }
  to {
    height:10px;
    opacity:1
  }
}
.hot-toast-checkmark-icon {
  animation:var(--hot-toast-checkmark-icon-animation, hotToastCircleAnimation .3s cubic-bezier(.175, .885, .32, 1.275) forwards);
  animation-delay:var(--hot-toast-checkmark-icon-animation-delay, .1s);
  background-color:var(--hot-toast-checkmark-icon-background-color, var(--check-primary, #61d345));
  border-radius:var(--hot-toast-checkmark-icon-border-radius, 10px);
  height:var(--hot-toast-checkmark-icon-height, 20px);
  opacity:var(--hot-toast-checkmark-icon-opacity, 0);
  position:var(--hot-toast-checkmark-icon-position, relative);
  transform:var(--hot-toast-checkmark-icon-transform, rotate(45deg));
  width:var(--hot-toast-checkmark-icon-width, 20px)
}
@media (prefers-reduced-motion: reduce) {
  .hot-toast-checkmark-icon {
    animation-duration:var(--hot-toast-checkmark-icon-reduced-motion-animation-duration, 0ms)
  }
}
.hot-toast-checkmark-icon:after {
  animation:var(--hot-toast-checkmark-icon-after-animation, hotToastCheckmarkAnimation .2s ease-out forwards);
  animation-delay:var(--hot-toast-checkmark-icon-after-animation-delay, .2s);
  border-bottom-style:solid;
  border-bottom-width:var(--hot-toast-checkmark-icon-after-border-bottom, 2px);
  border-color:var(--hot-toast-checkmark-icon-after-border-color, var(--check-secondary, #fff));
  border-right-style:solid;
  border-right-width:var(--hot-toast-checkmark-icon-after-border-right, 2px);
  bottom:var(--hot-toast-checkmark-icon-after-bottom, 6px);
  box-sizing:var(--hot-toast-checkmark-icon-after-box-sizing, border-box);
  content:var(--hot-toast-checkmark-icon-after-content, "");
  height:var(--hot-toast-checkmark-icon-after-height, 10px);
  left:var(--hot-toast-checkmark-icon-after-left, 6px);
  opacity:var(--hot-toast-checkmark-icon-after-opacity, 0);
  position:var(--hot-toast-checkmark-icon-after-position, absolute);
  width:var(--hot-toast-checkmark-icon-after-width, 6px)
}
@media (prefers-reduced-motion: reduce) {
  .hot-toast-checkmark-icon:after {
    animation-duration:var(--hot-toast-checkmark-icon-after-reduced-motion-animation-duration, 0ms)
  }
}
@keyframes hotToastErrorCircleAnimation {
  0% {
    opacity:0;
    transform:scale(0) rotate(45deg)
  }
  to {
    opacity:1;
    transform:scale(1) rotate(45deg)
  }
}
@keyframes hotToastFirstLineAnimation {
  0% {
    opacity:0;
    transform:scale(0)
  }
  to {
    opacity:1;
    transform:scale(1)
  }
}
@keyframes hotToastSecondLineAnimation {
  0% {
    opacity:0;
    transform:scale(0) rotate(90deg)
  }
  to {
    opacity:1;
    transform:scale(1) rotate(90deg)
  }
}
.hot-toast-error-icon {
  animation:var(--hot-toast-error-icon-animation, hotToastErrorCircleAnimation .3s cubic-bezier(.175, .885, .32, 1.275) forwards);
  animation-delay:var(--hot-toast-error-icon-animation-delay, .1s);
  background:var(--hot-toast-error-icon-background, var(--error-primary, #ff4b4b));
  border-radius:var(--hot-toast-error-icon-border-radius, 10px);
  height:var(--hot-toast-error-icon-height, 20px);
  opacity:var(--hot-toast-error-icon-opacity, 0);
  position:var(--hot-toast-error-icon-position, relative);
  transform:var(--hot-toast-error-icon-transform, rotate(45deg));
  width:var(--hot-toast-error-icon-width, 20px)
}
@media (prefers-reduced-motion: reduce) {
  .hot-toast-error-icon {
    animation-duration:var(--hot-toast-error-icon-reduced-motion-animation-duration, 0ms)
  }
}
.hot-toast-error-icon:after,
.hot-toast-error-icon:before {
  animation:var(--hot-toast-error-icon-after-before-animation, hotToastFirstLineAnimation .15s ease-out forwards);
  animation-delay:var(--hot-toast-error-icon-after-before-animation-delay, .15s);
  background:var(--hot-toast-error-icon-after-before-background, var(--error-secondary, #fff));
  border-radius:var(--hot-toast-error-icon-after-before-border-radius, 3px);
  bottom:var(--hot-toast-error-icon-after-before-bottom, 9px);
  content:var(--hot-toast-error-icon-after-before-content, "");
  height:var(--hot-toast-error-icon-after-before-height, 2px);
  left:var(--hot-toast-error-icon-after-before-left, 4px);
  opacity:var(--hot-toast-error-icon-after-before-opacity, 0);
  position:var(--hot-toast-error-icon-after-before-position, absolute);
  width:var(--hot-toast-error-icon-after-before-width, 12px)
}
@media (prefers-reduced-motion: reduce) {
  .hot-toast-error-icon:after,
  .hot-toast-error-icon:before {
    animation-duration:var(--hot-toast-error-icon-after-before-reduced-motion-animation-duration, 0ms)
  }
}
.hot-toast-error-icon:before {
  animation:var(--hot-toast-error-icon-before-animation, hotToastSecondLineAnimation .15s ease-out forwards);
  animation-delay:var(--hot-toast-error-icon-before-animation-delay, .18s);
  transform:var(--hot-toast-error-icon-before-transform, rotate(90deg))
}
@media (prefers-reduced-motion: reduce) {
  .hot-toast-error-icon:before {
    animation-duration:var(--hot-toast-error-icon-before-reduced-motion-animation-duration, 0ms)
  }
}
.hot-toast-bar-base {
  align-items:var(--hot-toast-align-items, center);
  background-color:var(--hot-toast-bg, #fff);
  border-radius:var(--hot-toast-border-radius, 4px);
  box-shadow:var(--hot-toast-shadow, 0 3px 10px rgba(0, 0, 0, .1), 0 3px 3px rgba(0, 0, 0, .05));
  color:var(--hot-toast-color, #363636);
  display:var(--hot-toast-display, flex);
  line-height:var(--hot-toast-line, 1.3);
  margin:var(--hot-toast-margin, 16px);
  max-width:var(--hot-toast-max-width, 350px);
  padding:var(--hot-toast-padding, 8px 10px);
  pointer-events:var(--hot-toast-pointer-events, auto);
  width:var(--hot-toast-width, fit-content);
  will-change:var(--hot-toast-will-change, transform);
  --hot-toast-animation-state: paused;
  animation: 350ms cubic-bezier(0.21, 1.02, 0.73, 1) 0s 1 normal forwards running hotToastEnterAnimationPositive, 800ms cubic-bezier(0.06, 0.71, 0.55, 1) 4000ms 1 normal forwards running hotToastExitAnimationPositive;
}
.hot-toast-bar-base:hover,
.hot-toast-bar-base:focus {
  animation-play-state:var(--hot-toast-animation-state, paused)!important
}
@media (prefers-reduced-motion: reduce) {
  .hot-toast-bar-base {
    animation-duration:var(--hot-toast-reduced-motion-animation-duration, 10ms)!important
  }
}
.hot-toast-message {
  color:var(--hot-toast-message-color, inherit);
  display:var(--hot-toast-message-display, flex);
  flex:var(--hot-toast-message-flex, 1);
  justify-content:var(--hot-toast-message-justify-content, center);
  margin:var(--hot-toast-message-margin, 4px 10px)
}
.hot-toast-bar-base-container {
  display:var(--hot-toast-container-display, none);
  pointer-events:var(--hot-toast-container-pointer-events, none);
  position:var(--hot-toast-container-position, absolute);
  transition:var(--hot-toast-container-transition, transform .23s cubic-bezier(.21, 1.02, .73, 1))
}
@media (prefers-reduced-motion: reduce) {
  .hot-toast-bar-base-container {
    transition-duration:var(--hot-toast-container-reduced-motion-transition-duration, 10ms)!important
  }
}
.hot-toast-bar-base-container.hot-toast-theme-snackbar .hot-toast-bar-base {
  background:var(--hot-toast-snackbar-bg, #323232);
  box-shadow:var(--hot-toast-snackbar-shadow, 0 3px 5px -1px rgba(0, 0, 0, .2), 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12));
  color:var(--hot-toast-snackbar-color, rgb(255, 255, 255))
}
.hot-toast-bar-base-container.hot-toast-theme-snackbar .hot-toast-close-btn {
  filter:var(--hot-toast-snackbar-close-btn-filter, invert(1) grayscale(100%) brightness(200%))
}
.hot-toast-close-btn {
  align-self:var(--hot-toast-close-btn-align-self, flex-start);
  background-color:var(--hot-toast-close-btn-background-color, transparent);
  background-image:var(--hot-toast-close-btn-background-image, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e"));
  background-position:var(--hot-toast-close-btn-background-position, center);
  background-repeat:var(--hot-toast-close-btn-background-repeat, no-repeat);
  background-size:var(--hot-toast-close-btn-background-size, .75em);
  border:var(--hot-toast-close-btn-border, 0);
  border-radius:var(--hot-toast-close-btn-border-radius, .25rem);
  box-sizing:var(--hot-toast-close-btn-box-sizing, content-box);
  display:var(--hot-toast-close-btn-display, flex);
  height:var(--hot-toast-close-btn-height, .8em);
  margin-top:var(--hot-toast-close-btn-margin-top, .25em);
  opacity:var(--hot-toast-close-btn-opacity, .5);
  padding:var(--hot-toast-close-btn-padding, .25em);
  width:var(--hot-toast-close-btn-width, .8em)
}
.hot-toast-close-btn:focus {
  box-shadow:var(--hot-toast-close-btn-box-shadow, 0 0 0 .125rem rgba(13, 110, 253, .25));
  outline:var(--hot-toast-close-btn-outline, none)
}
.hot-toast-close-btn:hover,
.hot-toast-close-btn:focus {
  opacity:var(--hot-toast-close-btn-opacity, .75)
}
.hot-toast-icon {
  align-self:var(--hot-toast-icon-align-self, flex-start);
  padding-top:var(--hot-toast-icon-padding-top, .25em)
}
@keyframes hotToastEnterAnimationNegative {
  0% {
    opacity:.5;
    transform:translate3d(0,-80px,0) scale(.6)
  }
  to {
    opacity:1;
    transform:translateZ(0) scale(1)
  }
}
@keyframes hotToastEnterAnimationPositive {
  0% {
    opacity:.5;
    transform:translate3d(0,80px,0) scale(.6)
  }
  to {
    opacity:1;
    transform:translateZ(0) scale(1)
  }
}
@keyframes hotToastExitAnimationPositive {
  0% {
    opacity:1;
    transform:translateZ(-1px) scale(1)
  }
  to {
    opacity:0;
    transform:translate3d(0,130px,-1px) scale(.5)
  }
}
@keyframes hotToastExitAnimationNegative {
  0% {
    opacity:1;
    transform:translateZ(-1px) scale(1)
  }
  to {
    opacity:0;
    transform:translate3d(0,-130px,-1px) scale(.5)
  }
}
.hot-toast-indicator-wrapper {
  align-items:var(--hot-toast-indicator-wrapper-align-items, center);
  display:var(--hot-toast-indicator-wrapper-display, flex);
  justify-content:var(--hot-toast-indicator-wrapper-justify-content, center);
  min-height:var(--hot-toast-indicator-wrapper-min-height, 20px);
  min-width:var(--hot-toast-indicator-wrapper-min-width, 20px);
  position:var(--hot-toast-indicator-wrapper-position, relative)
}
.hot-toast-status-wrapper {
  position:var(--hot-toast-status-wrapper-position, absolute)
}
@keyframes animate-info-background {
  0% {
    opacity:0;
    transform:scale(0)
  }
  to {
    opacity:1;
    transform:scale(1)
  }
}
@keyframes animate-info-line {
  0% {
    height:0;
    opacity:0
  }
  40% {
    height:4.8px;
    opacity:1
  }
  to {
    height:8px;
    opacity:1
  }
}
.hot-toast-info-icon {
  animation:var(--hot-toast-info-icon-animation, animate-info-background .3s cubic-bezier(.175, .885, .32, 1.275) forwards);
  animation-delay:var(--hot-toast-info-icon-animation-delay, .1s);
  background-color:var(--hot-toast-info-icon-background-color, var(--info-primary, #0d6efd));
  border-radius:var(--hot-toast-info-icon-border-radius, 50%);
  display:var(--hot-toast-info-icon-display, block);
  height:var(--hot-toast-info-icon-height, 20px);
  opacity:var(--hot-toast-info-icon-opacity, 0);
  position:var(--hot-toast-info-icon-position, relative);
  transform:var(--hot-toast-info-icon-transform, scale(0));
  width:var(--hot-toast-info-icon-width, 20px)
}
.hot-toast-info-icon:after,
.hot-toast-info-icon:before {
  background-color:var(--hot-toast-info-icon-after-before-background-color, var(--info-secondary, #fff));
  border-radius:var(--hot-toast-info-icon-after-before-border-radius, 3px);
  box-sizing:var(--hot-toast-info-icon-after-before-box-sizing, border-box);
  content:var(--hot-toast-info-icon-after-before-content, "");
  display:var(--hot-toast-info-icon-after-before-display, block);
  left:var(--hot-toast-info-icon-after-before-left, 8.5px);
  position:var(--hot-toast-info-icon-after-before-position, absolute);
  width:var(--hot-toast-info-icon-after-before-width, 2.5px)
}
.hot-toast-info-icon:after {
  animation:var(--hot-toast-info-icon-after-animation, animate-info-line .2s ease-out forwards);
  animation-delay:var(--hot-toast-info-icon-after-animation-delay, .2s);
  height:var(--hot-toast-info-icon-after-height, 0);
  opacity:var(--hot-toast-info-icon-after-opacity, 0);
  top:var(--hot-toast-info-icon-after-bottom, 8px)
}
.hot-toast-info-icon:before {
  height:var(--hot-toast-info-icon-before-height, 2px);
  top:var(--hot-toast-info-icon-before-top, 4px)
}
@keyframes hotToastRotate {
  0% {
    transform:rotate(0)
  }
  to {
    transform:rotate(360deg)
  }
}
.hot-toast-loader-icon {
  animation:var(--hot-toast-loader-icon-animation, hotToastRotate 1s linear infinite);
  border:var(--hot-toast-loader-icon-border, 2px solid);
  border-bottom-color:var(--hot-toast-loader-icon-border-color, #e0e0e0);
  border-left-color:var(--hot-toast-loader-icon-border-color, #e0e0e0);
  border-radius:var(--hot-toast-loader-icon-border-radius, 100%);
  border-right-color:var(--hot-toast-loader-icon-border-right-color, #616161);
  border-top-color:var(--hot-toast-loader-icon-border-color, #e0e0e0);
  box-sizing:var(--hot-toast-loader-icon-box-sizing, border-box);
  height:var(--hot-toast-loader-icon-height, 18px);
  padding-top:var(--hot-toast-loader-icon-padding-top, 2px);
  width:var(--hot-toast-loader-icon-width, 18px)
}
@media (prefers-reduced-motion: reduce) {
  .hot-toast-loader-icon {
    animation-duration:var(--hot-toast-loader-icon-reduced-motion-animation-duration, 5s)
  }
}
@keyframes animate-warn-background {
  0% {
    opacity:0;
    transform:scale(0)
  }
  to {
    opacity:1;
    transform:scale(1)
  }
}
@keyframes animate-warn-line {
  0% {
    height:0;
    opacity:0
  }
  40% {
    height:4.8px;
    opacity:1
  }
  to {
    height:8px;
    opacity:1
  }
}
.hot-toast-warning-icon {
  animation:var(--hot-toast-warning-icon-animation, animate-warn-background .3s cubic-bezier(.175, .885, .32, 1.275) forwards);
  animation-delay:var(--hot-toast-warning-icon-animation-delay, .1s);
  background-color:var(--hot-toast-warning-icon-background-color, var(--warn-primary, #ffab00));
  border-radius:var(--hot-toast-warning-icon-border-radius, 50%);
  display:var(--hot-toast-warning-icon-display, block);
  height:var(--hot-toast-warning-icon-height, 20px);
  opacity:var(--hot-toast-warning-icon-opacity, 0);
  position:var(--hot-toast-warning-icon-position, relative);
  transform:var(--hot-toast-warning-icon-transform, scale(0));
  width:var(--hot-toast-warning-icon-width, 20px)
}
.hot-toast-warning-icon:after,
.hot-toast-warning-icon:before {
  background-color:var(--hot-toast-warning-icon-after-before-background-color, var(--warn-secondary, #fff));
  border-radius:var(--hot-toast-warning-icon-after-before-border-radius, 3px);
  box-sizing:var(--hot-toast-warning-icon-after-before-box-sizing, border-box);
  content:var(--hot-toast-warning-icon-after-before-content, "");
  display:var(--hot-toast-warning-icon-after-before-display, block);
  left:var(--hot-toast-warning-icon-after-before-left, 8.5px);
  position:var(--hot-toast-warning-icon-after-before-position, absolute);
  width:var(--hot-toast-warning-icon-after-before-width, 2.5px)
}
.hot-toast-warning-icon:after {
  animation:var(--hot-toast-warning-icon-after-animation, animate-warn-line .2s ease-out forwards);
  animation-delay:var(--hot-toast-warning-icon-after-animation-delay, .2s);
  height:var(--hot-toast-warning-icon-after-height, 0);
  opacity:var(--hot-toast-warning-icon-after-opacity, 0);
  top:var(--hot-toast-warning-icon-after-top, 4px)
}
.hot-toast-warning-icon:before {
  bottom:var(--hot-toast-warning-icon-before-bottom, 4px);
  height:var(--hot-toast-warning-icon-before-height, 2px)
}
.tippy-box[data-animation=fade][data-state=hidden] {
  opacity:0
}
[data-tippy-root] {
  max-width:calc(100vw - 10px)
}
.tippy-box {
  position:relative;
  background-color:#333;
  color:#fff;
  border-radius:4px;
  font-size:14px;
  line-height:1.4;
  white-space:normal;
  outline:0;
  transition-property:transform,visibility,opacity
}
.tippy-box[data-placement^=top]>.tippy-arrow {
  bottom:0
}
.tippy-box[data-placement^=top]>.tippy-arrow:before {
  bottom:-7px;
  left:0;
  border-width:8px 8px 0;
  border-top-color:initial;
  transform-origin:center top
}
.tippy-box[data-placement^=bottom]>.tippy-arrow {
  top:0
}
.tippy-box[data-placement^=bottom]>.tippy-arrow:before {
  top:-7px;
  left:0;
  border-width:0 8px 8px;
  border-bottom-color:initial;
  transform-origin:center bottom
}
.tippy-box[data-placement^=left]>.tippy-arrow {
  right:0
}
.tippy-box[data-placement^=left]>.tippy-arrow:before {
  border-width:8px 0 8px 8px;
  border-left-color:initial;
  right:-7px;
  transform-origin:center left
}
.tippy-box[data-placement^=right]>.tippy-arrow {
  left:0
}
.tippy-box[data-placement^=right]>.tippy-arrow:before {
  left:-7px;
  border-width:8px 8px 8px 0;
  border-right-color:initial;
  transform-origin:center right
}
.tippy-box[data-inertia][data-state=visible] {
  transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)
}
.tippy-arrow {
  width:16px;
  height:16px;
  color:#333
}
.tippy-arrow:before {
  content:"";
  position:absolute;
  border-color:transparent;
  border-style:solid
}
.tippy-content {
  position:relative;
  padding:5px 9px;
  z-index:1
}
.tippy-box[data-animation=shift-toward][data-state=hidden] {
  opacity:0
}
.tippy-box[data-animation=shift-toward][data-state=hidden][data-placement^=top] {
  transform:translateY(-10px)
}
.tippy-box[data-animation=shift-toward][data-state=hidden][data-placement^=bottom] {
  transform:translateY(10px)
}
.tippy-box[data-animation=shift-toward][data-state=hidden][data-placement^=left] {
  transform:translate(-10px)
}
.tippy-box[data-animation=shift-toward][data-state=hidden][data-placement^=right] {
  transform:translate(10px)
}
.tippy-box[data-animation=shift-away][data-state=hidden] {
  opacity:0
}
.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=top] {
  transform:translateY(10px)
}
.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=bottom] {
  transform:translateY(-10px)
}
.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=left] {
  transform:translate(10px)
}
.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=right] {
  transform:translate(-10px)
}
:root {
  --gutter: 2rem;
  --gutter-page: 4rem;
  --gutter-shop: 2.5rem;
  --gutter-support: 2.5rem
}
@media all and (max-width: 991px) {
  :root {
    --gutter: 1.5rem;
    --gutter-page: 2rem
  }
}
.hot-toast-bar-base-container {
  transform: translate(0) translate3d(0,0,0);
  -webkit-transform:translate(0) translate3d(0,0,0)
}
.hot-toast-bar-base-container .hot-toast-bar-base {
  background:linear-gradient(90deg,rgba(115,123,160,.7) -2.56%,rgba(91,98,133,.7) 46.15%)!important;
  background-color:#737ba0b3!important;
  -webkit-backdrop-filter:blur(8px);
  backdrop-filter:blur(8px);
  padding:12px!important;
  border-radius:10px!important;
  box-shadow:none!important;
  -webkit-backface-visibility:hidden;
  -webkit-perspective:1000;
  -webkit-transform:translate3d(0,0,0);
  -webkit-transform:translateZ(0);
  backface-visibility:hidden;
  perspective:1000;
  transform:translateZ(0)
}
.hot-toast-bar-base-container .hot-toast-bar-base.hot-toast-bar-base_confirm {
  padding:8px 16px!important
}
.hot-toast-icon {
  align-self:center!important;
  padding-top:0!important
}
.hot-toast-close-btn {
  align-self:center!important;
  flex-grow:0;
  flex-shrink:0;
  margin-top:0!important;
  margin-left:10px!important
}
.hot-toast-message {
  width:calc(100% - 58px);
  color:#fff!important;
  font-size:15px!important;
  font-weight:400!important;
  line-height:18px!important;
}
.hot-toast-message .confirm {
  display:flex;
  margin:0;
  width:250px;
  align-items:center;
  justify-content:space-between
}
.hot-toast-message .confirm .confirm__text {
  line-height:1
}
.hot-toast-message .confirm .confirm__buttons .button {
  width:25px;
  height:25px;
  font-size:9px
}
.hot-toast-message .confirm .confirm__buttons .button:nth-child(1) {
  margin-right:5px
}
.hot-toast-content {
  color:#fff;
  font-size:14px;
  font-weight:400;
  line-height:18px
}
.hot-toast-content .hot-toast-content__title {
  display:block;
  margin-bottom:6px;
  color:#fa8181;
  font-size:16px;
  font-weight:500;
  line-height:20px
}
.hot-toast-content .hot-toast-content__list {
  list-style-type:disc;
  padding-left:20px;
  margin-top:10px
}
.hot-toast-content .hot-toast-content__list li {
  margin-bottom:4px;
  color:#b1b1b1;
  word-wrap:break-word
}
.hot-toast-content .hot-toast-content__list li::marker {
  color:#fff
}
.hot-toast-content .hot-toast-content__list ul {
  list-style-type:circle
}
.hot-toast-content strong {
  margin-right:6px;
  color:#fff;
  font-size:14px;
  font-weight:500;
  line-height:18px
}
.hot-toast-checkmark-icon {
  background:#75D690
}
.hot-toast-warning-icon {
  background:#FDCA7D!important
}
.hot-toast-warning-icon:before,
.hot-toast-warning-icon:after {
  background:#736769!important
}
.hot-toast-error-icon {
  background:#FA8181!important
}
.hot-toast-error-icon:before,
.hot-toast-error-icon:after {
  background:#4a5174!important
}
.hot-toast-loader-icon {
  border-color:#8189B4 #B9C7EA #8189B4 #8189B4!important
}
.hot-toast-bar-base-container .hot-toast-bar-base.hot-toast_success {
  background:linear-gradient(298.49deg,rgba(53,73,102,.8) 32.31%,rgba(63,133,108,.8) 106.41%)!important
}
.hot-toast-bar-base-container .hot-toast-bar-base.hot-toast_warning {
  background:linear-gradient(90deg,rgba(164,135,108,.7) -2.56%,rgba(91,98,133,.7) 46.15%)!important
}
.hot-toast-bar-base-container .hot-toast-bar-base.hot-toast_error {
  background:linear-gradient(90deg,rgba(143,96,106,.7) -2.56%,rgba(91,98,133,.7) 46.15%)!important
}
.hot-toast-reconnect {
  display:flex;
  flex-flow:row nowrap;
  justify-content:flex-start;
  align-content:center;
  align-items:flex-start;
  width:100%;
  height:auto;
  padding:10px
}
.hot-toast-reconnect .hot-toast-reconnect__icon {
  display:block;
  width:54px;
  height:54px;
  flex-grow:0;
  flex-shrink:0;
  background-color:#284e52b3;
  border-radius:54px;
  color:#e4f1f0;
  font-size:22px;
  line-height:54px;
  text-align:center
}
.hot-toast-reconnect .hot-toast-reconnect__content {
  margin-left:14px
}
.hot-toast-reconnect .hot-toast-reconnect__title {
  color:#e4f1f0;
  font-size:17px;
  font-weight:900;
  line-height:21px;
  text-transform:uppercase
}
.hot-toast-reconnect .hot-toast-reconnect__description {
  margin-top:2px;
  color:#c0dad7;
  font-size:14px;
  font-weight:500;
  line-height:18px
}
.hot-toast-reconnect .hot-toast-reconnect__actions {
  display:flex;
  flex-flow:row nowrap;
  justify-content:flex-start;
  align-content:center;
  align-items:center;
  margin-top:15px
}
.hot-toast-reconnect .hot-toast-reconnect__actions .button {
  width:auto;
  height:30px;
  padding:0 14px;
  border-radius:6px;
  font-size:12px;
  font-weight:500;
  line-height:14px
}
.hot-toast-reconnect .hot-toast-reconnect__connect {
  color:#fff;
  background-color:#65b296;
  border-color:#65b296
}
.hot-toast-reconnect .hot-toast-reconnect__connect:hover {
  color:#fff;
  background-color:#75c8aa;
  border-color:#75c8aa
}
.hot-toast-reconnect .hot-toast-reconnect__cancel {
  margin-left:8px;
  color:#65789a;
  background-color:#2b3a56;
  border-color:#2b3a56
}
.hot-toast-reconnect .hot-toast-reconnect__cancel:hover {
  color:#91a0bc;
  background-color:#3e5072;
  border-color:#3e5072
}
@media (max-width: 767px) {
  hot-toast-container {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: block;
    height: 15%;
    left: 50%;
    transform: translateZ(1000px) translateX(-50%);
  }
  
  .hot-toast-bar-base {
    margin: 35px;
    --hot-toast-animation-state: paused;
    animation: 350ms cubic-bezier(0.21, 1.02, 0.73, 1) 0s 1 normal forwards running hotToastEnterAnimationNegative, 800ms cubic-bezier(0.06, 0.71, 0.55, 1) 4000ms 1 normal forwards running hotToastExitAnimationNegative;
  }
}
@font-face {
  font-family:swiper-icons;
  src:url(data:application/font-woff;charset=utf-8;base64,\ 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) format("woff");
  font-weight:400;
  font-style:normal
}
:root {
  --swiper-theme-color: #007aff
}
.swiper {
  position:relative;
  z-index:1;
  margin-left:auto;
  margin-right:auto;
  overflow:hidden;
  list-style:none;
  padding:0
}
.swiper-vertical>.swiper-wrapper {
  flex-direction:column
}
.swiper-wrapper {
  position:relative;
  z-index:1;
  display:flex;
  width:100%;
  height:100%;
  transition-property:transform;
  box-sizing:content-box
}
.swiper-android .swiper-slide,
.swiper-wrapper {
  transform:translateZ(0)
}
.swiper-pointer-events {
  touch-action:pan-y
}
.swiper-pointer-events.swiper-vertical {
  touch-action:pan-x
}
.swiper-slide {
  position:relative;
  flex-shrink:0;
  width:auto;
  height:100%;
  transition-property:transform
}
.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(0);
  backface-visibility:hidden
}
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective:1200px
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style:preserve-3d
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position:absolute;
  top:0;
  left:0;
  z-index:10;
  width:100%;
  height:100%;
  pointer-events:none
}
.swiper-css-mode>.swiper-wrapper {
  overflow:auto;
  scrollbar-width:none;
  -ms-overflow-style:none
}
.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display:none
}
.swiper-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align:start 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-centered>.swiper-wrapper:before {
  content:"";
  flex-shrink:0;
  order:9999
}
.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%;
  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%;
  height:var(--swiper-centered-offset-after)
}
.swiper-centered>.swiper-wrapper>.swiper-slide {
  scroll-snap-align:center center
}
.swiper-cards {
  overflow:visible
}
.swiper-cards .swiper-slide {
  display:flex;
  transform-origin:center bottom;
  backface-visibility:hidden;
  align-items:center;
  justify-content:center
}
.tippy-box[data-theme~=default] {
  background-color:#474f76fa;
  box-shadow:0 4px 4px #13172b24!important;
  border-radius:8px;
  font-weight:500
}
.tippy-box[data-theme~=default][data-placement^=top]>.tippy-arrow:before {
  border-top-color:#474f76fa
}
.tippy-box[data-theme~=default][data-placement^=bottom]>.tippy-arrow:before {
  border-bottom-color:#474f76fa
}
.tippy-box[data-theme~=default][data-placement^=left]>.tippy-arrow:before {
  border-left-color:#474f76fa
}
.tippy-box[data-theme~=default][data-placement^=right]>.tippy-arrow:before {
  border-right-color:#474f76fa
}
.tippy-box[data-theme~=default] .tippy-content {
  padding:8px 10px
}
.tippy-box[data-theme~=default] .tippy-backdrop {
  background-color:#474f76fa
}
.tippy-box[data-theme~=default] .tippy-svg-arrow {
  fill:#474f76fa
}
.tippy-box[data-theme=dropdown] {
  border-radius:10px
}
.tippy-box[data-theme=dropdown]>.tippy-svg-arrow {
  fill:#1b213ff0
}
.tippy-box[data-theme=dropdown][data-placement^=top]>.tippy-arrow:before {
  border-top-color:#1b213ff0
}
.tippy-box[data-theme=dropdown][data-placement^=bottom]>.tippy-arrow:before {
  border-bottom-color:#1b213ff0
}
.tippy-box[data-theme=dropdown][data-placement^=left]>.tippy-arrow:before {
  border-left-color:#1b213ff0
}
.tippy-box[data-theme=dropdown][data-placement^=right]>.tippy-arrow:before {
  border-right-color:#1b213ff0
}
.tippy-box[data-theme=dropdown] .tippy-content {
  display:block;
  width:170px;
  height:auto;
  padding:10px;
  background-color:#1b213ff0;
  border-radius:10px;
  box-shadow:0 11px 28px #181e37ad;
  -webkit-backdrop-filter:blur(4px);
  backdrop-filter:blur(4px);
  -webkit-backface-visibility:hidden;
  -webkit-perspective:1000;
  -webkit-transform:translate3d(0,0,0);
  -webkit-transform:translateZ(0);
  backface-visibility:hidden;
  perspective:1000;
  transform:translateZ(0)
}
.tippy-box[data-theme=dropdown] .tippy-content .tippy-content__action {
  justify-content:flex-start;
  width:100%;
  height:30px;
  padding:7px;
  background-color:#252c4d;
  border-color:#252c4d;
  border-radius:5px;
  color:#dce4ff;
  font-size:13px;
  font-weight:400;
  line-height:16px;
  text-transform:none
}
.tippy-box[data-theme=dropdown] .tippy-content .tippy-content__action:hover {
  color:#d6ddea;
  background-color:#323a61;
  border-color:#323a61
}
.tippy-box[data-theme=dropdown] .tippy-content .tippy-content__action:hover .icon {
  color:#d6ddea
}
.tippy-box[data-theme=dropdown] .tippy-content .tippy-content__action:not(:last-child) {
  margin-bottom:3px
}
.tippy-box[data-theme=dropdown] .tippy-content .tippy-content__action .icon {
  color:#889ed5;
  font-size:13px;
  -webkit-transition:color .2s ease-out 0s;
  -moz-transition:color .2s ease-out 0s;
  transition:color .2s ease-out 0s
}
.tippy-box[data-theme=dropdown] .tippy-content .tippy-content__action .button__text {
  max-width:100%;
  white-space:nowrap;
  text-overflow:ellipsis;
  overflow:hidden
}
.tippy-box[data-theme=chat] {
  background:none
}
.tippy-box[data-theme=chat]>.tippy-svg-arrow {
  fill:#141628fa
}
.tippy-box[data-theme=chat][data-placement^=top]>.tippy-arrow:before {
  border-top-color:#141628fa
}
.tippy-box[data-theme=chat][data-placement^=bottom]>.tippy-arrow:before {
  border-bottom-color:#141628fa
}
.tippy-box[data-theme=chat][data-placement^=left]>.tippy-arrow:before {
  border-left-color:#141628fa
}
.tippy-box[data-theme=chat][data-placement^=right]>.tippy-arrow:before {
  border-right-color:#141628fa
}
.tippy-box[data-theme=chat] .tippy-content {
  z-index:100;
  height:auto;
  padding:30px;
  background-color:#141628fa;
  border-radius:10px;
  box-shadow:0 19px 40px #0b0d1a45
}
.tippy-box[data-theme~=notifications] {
  background-color:#141628b3;
  border-radius:10px;
  box-shadow:0 20px 40px #0b0d1a45;
  -webkit-backdrop-filter:blur(10px);
  backdrop-filter:blur(10px);
  -webkit-backface-visibility:hidden;
  -webkit-perspective:1000;
  -webkit-transform:translate3d(0,0,0);
  -webkit-transform:translateZ(0);
  backface-visibility:hidden;
  perspective:1000;
  transform:translateZ(0)
}
.tippy-box[data-theme~=notifications][data-placement^=top]>.tippy-arrow:before {
  border-top-color:#141628b3
}
.tippy-box[data-theme~=notifications][data-placement^=bottom]>.tippy-arrow:before {
  border-bottom-color:#141628b3
}
.tippy-box[data-theme~=notifications][data-placement^=left]>.tippy-arrow:before {
  border-left-color:#141628b3
}
.tippy-box[data-theme~=notifications][data-placement^=right]>.tippy-arrow:before {
  border-right-color:#141628b3
}
.tippy-box[data-theme~=notifications] .tippy-content {
  padding:0
}
.tippy-box[data-theme~=notifications] .tippy-backdrop {
  background-color:#141628b3
}
.tippy-box[data-theme~=notifications] .tippy-svg-arrow {
  fill:#141628b3
}
.tippy-box[data-theme~=quiz] {
  background-color:#5b638ceb;
  border-radius:12px;
  box-shadow:0 14px 24px #12152b80;
  -webkit-backdrop-filter:blur(4px);
  backdrop-filter:blur(4px);
  -webkit-backface-visibility:hidden;
  -webkit-perspective:1000;
  -webkit-transform:translate3d(0,0,0);
  -webkit-transform:translateZ(0);
  backface-visibility:hidden;
  perspective:1000;
  transform:translateZ(0)
}
.tippy-box[data-theme~=quiz][data-placement^=top]>.tippy-arrow:before {
  border-top-color:#5b638ceb
}
.tippy-box[data-theme~=quiz][data-placement^=bottom]>.tippy-arrow:before {
  border-bottom-color:#5b638ceb
}
.tippy-box[data-theme~=quiz][data-placement^=left]>.tippy-arrow:before {
  border-left-color:#5b638ceb
}
.tippy-box[data-theme~=quiz][data-placement^=right]>.tippy-arrow:before {
  border-right-color:#5b638ceb
}
.tippy-box[data-theme~=quiz] .tippy-content {
  padding:0
}
.tippy-box[data-theme~=quiz] .tippy-backdrop {
  background-color:#141628b3
}
.tippy-box[data-theme~=quiz] .tippy-svg-arrow {
  fill:#141628b3
}
.tippy-box[data-theme~=piggy] {
  background-color:#5b638ceb;
  border-radius:12px;
  box-shadow:0 14px 24px #12152b80;
  -webkit-backdrop-filter:blur(4px);
  backdrop-filter:blur(4px);
  -webkit-backface-visibility:hidden;
  -webkit-perspective:1000;
  -webkit-transform:translate3d(0,0,0);
  -webkit-transform:translateZ(0);
  backface-visibility:hidden;
  perspective:1000;
  transform:translateZ(0)
}
.tippy-box[data-theme~=piggy][data-placement^=top]>.tippy-arrow:before {
  border-top-color:#5b638ceb
}
.tippy-box[data-theme~=piggy][data-placement^=bottom]>.tippy-arrow:before {
  border-bottom-color:#5b638ceb
}
.tippy-box[data-theme~=piggy][data-placement^=left]>.tippy-arrow:before {
  border-left-color:#5b638ceb
}
.tippy-box[data-theme~=piggy][data-placement^=right]>.tippy-arrow:before {
  border-right-color:#5b638ceb
}
.tippy-box[data-theme~=piggy] .tippy-content {
  padding:0
}
.tippy-box[data-theme~=piggy] .tippy-backdrop {
  background-color:#141628b3
}
.tippy-box[data-theme~=piggy] .tippy-svg-arrow {
  fill:#141628b3
}
.tippy-box[data-theme~=payment-dialog-bonus] {
  width:18.2rem;
  height:auto;
  background:linear-gradient(141.07deg,#446495 37.94%,#449276 104.57%);
  border-radius:1rem;
  padding:.9rem 1.3rem 1.2rem
}
.tippy-box[data-theme~=payment-dialog-bonus][data-placement^=top]>.tippy-arrow:before {
  border-top-color:#46568e
}
.tippy-box[data-theme~=payment-dialog-bonus][data-placement^=bottom]>.tippy-arrow:before {
  border-bottom-color:#46568e
}
.tippy-box[data-theme~=payment-dialog-bonus][data-placement^=left]>.tippy-arrow:before {
  border-left-color:#46568e
}
.tippy-box[data-theme~=payment-dialog-bonus][data-placement^=right]>.tippy-arrow:before {
  border-right-color:#46568e
}
.tippy-box[data-theme~=payment-dialog-bonus] .tippy-content {
  padding:0
}
.tippy-box[data-theme~=payment-dialog-bonus] .tippy-backdrop {
  background-color:#474f76fa
}
.tippy-box[data-theme~=payment-dialog-bonus] .tippy-svg-arrow {
  fill:#474f76fa
}
.tippy-box[data-theme~=gift-codes-info] {
  min-width:49rem;
  width:100%;
  height:auto;
  background-color:#474f76fa;
  box-shadow:0 4px 4px #13172b24!important;
  border-radius:1rem;
  padding:.9rem 1.3rem 1.2rem
}
.tippy-box[data-theme~=gift-codes-info][data-placement^=top]>.tippy-arrow:before {
  border-top-color:#474f76fa
}
.tippy-box[data-theme~=gift-codes-info][data-placement^=bottom]>.tippy-arrow:before {
  border-bottom-color:#474f76fa
}
.tippy-box[data-theme~=gift-codes-info][data-placement^=left]>.tippy-arrow:before {
  border-left-color:#474f76fa
}
.tippy-box[data-theme~=gift-codes-info][data-placement^=right]>.tippy-arrow:before {
  border-right-color:#474f76fa
}
.tippy-box[data-theme~=gift-codes-info] .tippy-content {
  padding:0
}
.tippy-box[data-theme~=gift-codes-info] .tippy-backdrop {
  background-color:#474f76fa
}
.tippy-box[data-theme~=gift-codes-info] .tippy-svg-arrow {
  fill:#474f76fa
}
@media all and (max-width: 991px) {
  .tippy-box[data-theme~=gift-codes-info] {
    min-width:auto;
    font-size:1.6rem
  }
}
.tippy-box[data-theme~=wager-bonus] {
  background:linear-gradient(180deg,#33477D 0%,#435DA4 100%);
  box-shadow:0 6px 34px #0d0f1838;
  border-radius:18px;
  -webkit-backface-visibility:hidden;
  -webkit-perspective:1000;
  -webkit-transform:translate3d(0,0,0);
  -webkit-transform:translateZ(0);
  backface-visibility:hidden;
  perspective:1000;
  transform:translateZ(0)
}
.tippy-box[data-theme~=wager-bonus][data-placement^=top]>.tippy-arrow:before {
  border-top-color:#435da4
}
.tippy-box[data-theme~=wager-bonus][data-placement^=bottom]>.tippy-arrow:before {
  border-bottom-color:#33477d
}
.tippy-box[data-theme~=wager-bonus][data-placement^=left]>.tippy-arrow:before {
  border-left-color:#33477d
}
.tippy-box[data-theme~=wager-bonus][data-placement^=right]>.tippy-arrow:before {
  border-right-color:#33477d
}
.tippy-box[data-theme~=wager-bonus] .tippy-content {
  padding:20px 20px 15px
}
.tippy-box[data-theme~=wager-bonus] .tippy-backdrop {
  background-color:#141628b3
}
.tippy-box[data-theme~=wager-bonus] .tippy-svg-arrow {
  fill:#141628b3
}
.tippy-box[data-theme~=balance-menu] {
  background:rgba(59,76,139,.88);
  border-radius:1.2rem;
  -webkit-backdrop-filter:blur(.3rem);
  backdrop-filter:blur(.3rem)
}
.tippy-box[data-theme~=balance-menu][data-placement^=top]>.tippy-arrow:before {
  border-top-color:#33477d
}
.tippy-box[data-theme~=balance-menu][data-placement^=bottom]>.tippy-arrow:before {
  border-bottom-color:#33477d
}
.tippy-box[data-theme~=balance-menu][data-placement^=left]>.tippy-arrow:before {
  border-left-color:#33477d
}
.tippy-box[data-theme~=balance-menu][data-placement^=right]>.tippy-arrow:before {
  border-right-color:#33477d
}
.tippy-box[data-theme~=balance-menu] .tippy-content {
  padding:1.2rem
}
.tippy-box[data-theme~=balance-menu] .tippy-content .tippy-content__wrapper {
  display:flex;
  flex-direction:column;
  gap:.3rem;
  width:19.3rem
}
.tippy-box[data-theme~=balance-menu] .btn {
  --icon-size: 2rem;
  height:4.7rem;
  padding-inline:1.2rem;
  justify-content:flex-start;
  border-radius:.8rem;
  font-weight:700;
  font-size:1.3rem
}
.tippy-box[data-theme~=balance-menu] .btn:hover {
  filter:brightness(1.1)
}
.tippy-box[data-theme~=balance-menu] .btn_deposit {
  background-color:#62d4b2;
  color:#2b4b65
}
.tippy-box[data-theme~=balance-menu] .btn_withdraw {
  background-color:#5465aa;
  color:#f3f6fa
}
.tippy-box[data-theme~=balance-menu] .btn_withdraw .icon {
  transform:rotate(180deg);
  color:#b4caf3
}
.tippy-box[data-theme~=balance-menu] .tippy-backdrop {
  background-color:#141628b3
}
.tippy-box[data-theme~=balance-menu] .tippy-svg-arrow {
  fill:#141628b3
}
.tippy-box[data-theme~=header-games] {
  padding:2.4rem;
  background:rgb(10,14,31);
  box-shadow:0 1rem 2.4rem #08090f4d;
  border-radius:2.6rem;
  max-width:75rem!important;
  -webkit-backface-visibility:hidden;
  -webkit-perspective:1000;
  -webkit-transform:translate3d(0,0,0);
  -webkit-transform:translateZ(0);
  backface-visibility:hidden;
  perspective:1000;
  transform:translateZ(0)
}
.tippy-box[data-theme~=header-games][data-placement^=top]>.tippy-arrow:before {
  border-top-color:#0a0e1fe6
}
.tippy-box[data-theme~=header-games][data-placement^=bottom]>.tippy-arrow:before {
  border-bottom-color:#0a0e1fe6
}
.tippy-box[data-theme~=header-games][data-placement^=left]>.tippy-arrow:before {
  border-left-color:#0a0e1fe6
}
.tippy-box[data-theme~=header-games][data-placement^=right]>.tippy-arrow:before {
  border-right-color:#0a0e1fe6
}
.tippy-box[data-theme~=header-games] .tippy-content {
  padding:0
}
.tippy-box[data-theme~=header-games] .tippy-backdrop {
  background-color:#141628b3
}
.tippy-box[data-theme~=header-games] .tippy-svg-arrow {
  fill:#141628b3
}
.tippy-box[data-theme~=toolbar-games] {
  background:rgba(10,14,31,.98);
  box-shadow:0 1rem 2.4rem #08090f4d;
  border-radius:2rem;
  padding:1.5rem;
  -webkit-backface-visibility:hidden;
  -webkit-perspective:1000;
  -webkit-transform:translate3d(0,0,0);
  -webkit-transform:translateZ(0);
  backface-visibility:hidden;
  perspective:1000;
  transform:translateZ(0)
}
.tippy-box[data-theme~=toolbar-games][data-placement^=top]>.tippy-arrow:before {
  border-top-color:#0a0e1fe6
}
.tippy-box[data-theme~=toolbar-games][data-placement^=bottom]>.tippy-arrow:before {
  border-bottom-color:#0a0e1fe6
}
.tippy-box[data-theme~=toolbar-games][data-placement^=left]>.tippy-arrow:before {
  border-left-color:#0a0e1fe6
}
.tippy-box[data-theme~=toolbar-games][data-placement^=right]>.tippy-arrow:before {
  border-right-color:#0a0e1fe6
}
.tippy-box[data-theme~=toolbar-games] .tippy-content {
  padding:0
}
.tippy-box[data-theme~=toolbar-games] .tippy-backdrop {
  background-color:#141628b3
}
.tippy-box[data-theme~=toolbar-games] .tippy-svg-arrow {
  fill:#141628b3
}
.tippy-box[data-theme=profile] {
  background:#1e2444;
  border-radius:1.1rem
}
.tippy-box[data-theme=profile] .tippy-content {
  padding:1rem;
  width:calc(100vw - var(--gutter) * 2)
}
.tippy-box[data-theme=profile] .tippy-content div {
  display:flex;
  flex-direction:column;
  gap:.2rem
}
.tippy-box[data-theme=profile] .tippy-content div users-profile-tabs-button {
  display:flex;
  width:100%
}
.tippy-box[data-theme=pvp-battle] {
  background:#1e2444;
  border-radius:1.1rem;
  word-wrap:break-word
}
.tippy-box[data-theme=pvp-battle] .tippy-arrow {
  color:#1e2444
}
.tippy-box[data-theme=promo-page] {
  background:#1b2745;
  border-radius:1.3rem;
  margin-top:1rem
}
.tippy-box[data-theme=promo-page] .tippy-content {
  padding:1rem
}
.tippy-box[data-theme=promo-page] .tippy-arrow {
  color:#1b2745
}
.tippy-box[data-theme=tournament-skin] {
  background:#DAE1F4;
  border-radius:.9rem
}
.tippy-box[data-theme=tournament-skin] .tippy-content {
  padding:1rem
}
.tippy-box[data-theme=tournament-skin] .tippy-arrow {
  color:#dae1f4
}
.cdk-overlay-container,
.cdk-global-overlay-wrapper {
  top:0;
  left:0;
  pointer-events:none;
  height:100%;
  width:100%
}
.cdk-overlay-container {
  display: none;
  position:fixed;
  z-index:1000
}
.cdk-overlay-container:empty {
  display:none
}
.cdk-global-overlay-wrapper {
  position:absolute;
  z-index:1000;
  display:flex
}
.cdk-overlay-pane {
  position:absolute;
  z-index:1000;
  display:flex;
  pointer-events:auto;
  box-sizing:border-box;
  max-width:100%;
  max-height:100%
}
.cdk-overlay-backdrop {
  position:absolute;
  inset:0;
  z-index:1000;
  pointer-events:auto;
  -webkit-tap-highlight-color:transparent;
  transition:opacity .4s cubic-bezier(.25,.8,.25,1);
  opacity:0
}
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity:1
}
.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity:.6
}
.cdk-overlay-dark-backdrop {
  background:rgba(21,24,39,.94)
}
.cdk-overlay-transparent-backdrop {
  transition:visibility 1ms linear,opacity 1ms linear;
  visibility:hidden;
  opacity:1
}
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
  opacity:0;
  visibility:visible
}
.cdk-overlay-backdrop-noop-animation {
  transition:none
}
.cdk-overlay-connected-position-bounding-box {
  position:absolute;
  z-index:1000;
  display:flex;
  flex-direction:column;
  min-width:1px;
  min-height:1px
}
.cdk-global-scrollblock {
  position:fixed;
  width:100%;
  overflow-y:scroll
}
.cdk-dialog-container {
  animation-name:cdkDialogEnter;
  animation-duration:.35s;
  animation-fill-mode:both
}
@keyframes cdkDialogEnter {
  0% {
    opacity:0;
    transform:translateY(-20px)
  }
  to {
    opacity:1;
    transform:translateY(0)
  }
}
/*# sourceMappingURL=vendors.css.map */

.amount-inputs {
  display: flex;
  background: #2A3563;
  border-radius: 12px;
  align-items: center;
  height: 5.6rem;
  padding: 0 1.6rem;
  margin-top: 1rem;
  border: .1rem solid transparent;
  -webkit-transition: border-color .2s ease-out 0s;
  -moz-transition: border-color .2s ease-out 0s;
  transition: border-color .2s ease-out 0s;
}

.amount-inputs .amount-inputs__input-wrap {
  display: flex;
  align-items: center;
  width: 50%;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.8rem;
  color: #d3deef;
}

.amount-inputs .amount-inputs__input {
  background: none;
  border: none;
  color: #d3deef;
  font-weight: 500;
  font-size: 1.4rem;
  width: 100%;
}

.amount-inputs .amount-inputs__icon-between {
  position: relative;
  display: flex;
  min-width: 3rem;
  height: 3rem;
  background: #232D56;
  border-radius: 5px;
  margin: auto 0;
  align-items: center;
  justify-content: center;
}


.amount-inputs .amount-inputs__icon-between::before {
  content: "";
  position: absolute;
  top: -1.3rem;
  left: 1.4rem;
  height: 5.6rem;
  width: .1rem;
  background-color: #242d56;

}

.payment-modal .btn {
  --icon-size: 2rem;
  width: 100%;
  height: 6.4rem;
  margin-top: 1rem;
  font-size: 1.6rem;
}

[_nghost-ng-c491911210] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.1rem 1.6rem;
  height: 6rem;
  border: .1rem dashed #404D82;
  border-radius: 10px;
  margin-top: 20px;
  font-size: 1.4rem;
  font-family: Gotham,sans-serif;
  font-weight: 500;
}