@charset "UTF-8";

/* Reset and base styles  */

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

@font-face {
  font-family: "poppins";
  font-display: swap;
  src: url("/hupx25__fonts/hupx25__poppins-medium.woff2") format("woff2"), url("/hupx25__fonts/hupx25__poppins-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "poppins";
  font-display: swap;
  src: url("/hupx25__fonts/hupx25__poppins-regular.woff2") format("woff2"), url("/hupx25__fonts/hupx25__poppins-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "poppins";
  font-display: swap;
  src: url("/hupx25__fonts/hupx25__poppins-semibold.woff2") format("woff2"), url("/hupx25__fonts/hupx25__poppins-semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

:root {
  --container-width: 1440px;
  --container-padding: 100px;
  --container-padding-tablet: 16px;
  --background: #EFF2F9;
  --font-color: rgba(26, 27, 32, .8);
  --font-size: clamp(0.875rem, 0.8317307692rem + 0.1923076923vw, 1rem);
  --font-family: poppins, OpenSans, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --laptop-size: 1199px;
  --tablet-size: 959px;
  --mobile-size: 599px;
  --btn-font-size: 1rem;
  --btn-font-weight: 600;
  --btn-padding: 0.84em;
  --btn-bg: #CDFC1B;
  --btn-bg-hover: rgba(203, 252, 27, 0);
  --btn-color: var(--accent-text-color);
  --btn-color-hover: var(--btn-color);
  --btn-radius: 0.8rem;
  --btn-transition: all 0.2s ease-in-out;
  --btn-shadow: 0 -1px 10px 0 #75B000 inset, 0 4px 12px 0 rgba(1, 1, 11, 0.15), inset 0 0 0 1px rgba(26, 27, 32, 0);
  --btn-shadow-hover: 0 -1px 10px 0 rgba(117, 176, 0, 0) inset, 0 4px 12px 0 rgba(1, 1, 11, 0.15), inset 0 0 0 1.5px var(--font-color);
  --accent-text-color: #1A1B20;
}

h1,
.hupx25__h1,
h2,
.hupx25__h2,
h3,
.hupx25__h3 {
  font-weight: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  line-height: 1.2;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--accent-text-color);
}

h1,
.hupx25__h1 {
  font-size: clamp(2.125rem, 1.6923076923rem + 1.9230769231vw, 3.375rem);
}

h2,
.hupx25__h2 {
  font-size: clamp(1.625rem, 1.3221153846rem + 1.3461538462vw, 2.5rem);
}

h3,
.hupx25__h3 {
  font-size: clamp(1.125rem, 1.0384615385rem + 0.3846153846vw, 1.375rem);
}

html {
  scroll-behavior: smooth;
  background: var(--background);
  scrollbar-gutter: stable;
}

body {
  background: var(--background);
  color: var(--font-color);
  font-family: var(--font-family);
  font-size: var(--font-size);
  font-weight: 400;
}

html,
body {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

a,
button {
  -webkit-transition: var(--btn-transition);
  transition: var(--btn-transition);
  color: inherit;
}

img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.hupx25__no-scroll {
  overflow: hidden;
}

.hupx25__visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.hupx25__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.hupx25__items .hupx25__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.hupx25__terms .hupx25__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.hupx25__terms li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hupx25__terms li:before {
  content: "•";
  margin-inline: 8px;
}

.hupx25__main {
  padding-block: 10px;
}

.hupx25__main section {
  padding-block: 40px;
}

.btn {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  padding: var(--btn-padding);
  color: var(--btn-color);
  background-color: var(--btn-bg);
  border-radius: var(--btn-radius);
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: var(--btn-transition);
  transition: var(--btn-transition);
  -webkit-box-shadow: var(--btn-shadow);
  box-shadow: var(--btn-shadow);
  line-height: 1.2;
  white-space: nowrap;
  text-transform: capitalize;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.btn:active {
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
  transform: translateY(2px);
}

.btn img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.btn--hover {
  color: var(--btn-color-hover);
  background-color: var(--btn-bg-hover);
  -webkit-box-shadow: var(--btn-shadow-hover);
  box-shadow: var(--btn-shadow-hover);
}

.hupx25__center {
  text-align: center;
}

.hupx25__inner {
  display: inherit;
  -webkit-box-orient: inherit;
  -webkit-box-direction: inherit;
  -ms-flex-direction: inherit;
  flex-direction: inherit;
  gap: inherit;
  max-width: 745px;
}

.hupx25__grid-4,
.hupx25__grid-5 {
  --col-size-grid-4: minmax(100px, 280px);
  --col-size-grid-5: minmax(100px, 216px);
  display: grid;
  grid-template-columns: repeat(4, var(--col-size-grid-4));
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}

.hupx25__grid-4 .hupx25__wrapper,
.hupx25__grid-5 .hupx25__wrapper {
  padding: 16px;
}

.hupx25__grid-5 {
  grid-template-columns: repeat(5, var(--col-size-grid-5));
}

.hupx25__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.hupx25__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  width: 100%;
}

.hupx25__popup__title {
  font-size: clamp(1.125rem, 0.9951923077rem + 0.5769230769vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
}

.hupx25__modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
  background: rgba(0, 0, 0, 0.8);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 999;
}

.hupx25__modal-content {
  background: var(--background);
  padding: 2rem 1rem;
  position: relative;
  max-width: 466px;
  width: 90%;
  -webkit-animation: fadeIn 0.45s cubic-bezier(0.01, 0.8, 0.03, 1);
  animation: fadeIn 0.45s cubic-bezier(0.01, 0.8, 0.03, 1);
  text-align: center;
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 12px 0 rgba(1, 1, 11, 0.15);
  box-shadow: 0 4px 12px 0 rgba(1, 1, 11, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
}

.hupx25__modal-content .btn {
  margin-inline: auto;
  width: 100%;
  padding-inline: 0;
}

.hupx25__modal-content h2 {
  text-align: center;
}

.hupx25__close {
  position: absolute;
  top: 0;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1;
}

body.hupx25__modal-open {
  overflow: hidden;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.hupx25__checkbox-container {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hupx25__checkbox-container input[type=checkbox] {
  margin-right: 10px;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.hupx25__checkbox-container label {
  cursor: pointer;
  font-size: 12px;
}

.hupx25__cookie-consent {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: #f7f7f7;
  border-top: 1px solid #ebebeb;
  z-index: 1000;
}

.hupx25__cookie-consent__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 300px;
}

.hupx25__cookie-consent .btn {
  font-size: 14px;
  min-width: 92px;
}

.btn-autorization {
  font-weight: 600;
  text-decoration: underline;
}

.hupx25__hidden {
  display: none !important;
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  position: relative;
  margin-inline: auto;
  max-width: 820px;
}

form div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

form label {
  color: var(--accent-text-color);
}

input,
textarea {
  border-radius: 12px;
  background: #FFF;
  -webkit-box-shadow: 0 4px 12px 0 rgba(1, 1, 11, 0.15);
  box-shadow: 0 4px 12px 0 rgba(1, 1, 11, 0.15);
  padding: 10px 14px;
}

input:focus,
textarea:focus {
  outline: none;
}

::-webkit-input-placeholder {
  color: var(--font-color);
}

::-moz-placeholder {
  color: var(--font-color);
}

:-ms-input-placeholder {
  color: var(--font-color);
}

::-ms-input-placeholder {
  color: var(--font-color);
}

::placeholder {
  color: var(--font-color);
}

textarea {
  resize: none;
  overflow: hidden;
}

.hupx25__warning {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: clamp(0.75rem, 0.7067307692rem + 0.1923076923vw, 0.875rem);
  background: #ECFBFB;
  border-left: 4px solid #335D48;
  color: #335D48;
  text-align: center;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.hupx25__warning::before {
  content: "";
  width: 20px;
  aspect-ratio: 1;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23335D48' d='M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10C22,6.5,17.5,2,12,2z M16.2,10.3l-4.8,4.8c-0.4,0.4-1,0.4-1.4,0l0,0l-2.2-2.2c-0.4-0.4-0.4-1,0-1.4c0.4-0.4,1-0.4,1.4,0c0,0,0,0,0,0l1.5,1.5l4.1-4.1c0.4-0.4,1-0.4,1.4,0C16.6,9.3,16.6,9.9,16.2,10.3z'/%3E%3C/svg%3E") no-repeat center/contain;
  margin-top: -2px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.hupx25__warning::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.2rem;
  background: -webkit-gradient(linear, left top, right top, from(#ECFBFB), to(#335D48));
  background: linear-gradient(to right, #ECFBFB, #335D48);
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}

.hupx25__warning.hupx25__active {
  max-height: 100px;
  opacity: 1;
  padding: 16px 10px;
}

.hupx25__warning.hupx25__active::after {
  -webkit-animation: progress 4.9s linear forwards;
  animation: progress 4.9s linear forwards;
}

@-webkit-keyframes progress {
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes progress {
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.hupx25__item.hupx25__img,
.hupx25__img {
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 580px;
  margin-inline: auto;
}

.hupx25__item.hupx25__wrapper,
.hupx25__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
  padding: 40px;
  border-radius: 20px;
  background: #FFF;
  -webkit-box-shadow: 0 4px 12px 0 rgba(26, 27, 32, 0.05);
  box-shadow: 0 4px 12px 0 rgba(26, 27, 32, 0.05);
  cursor: default;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  will-change: transform;
}

/* Blocks */

.hupx25__about .hupx25__wrapper {
  background-image: url("/hupx25__img/hupx25__shady-rockett.avif");
  background-position: bottom right;
  background-size: auto;
  background-repeat: no-repeat;
}				.hupx25__avif .hupx25__about .hupx25__wrapper {					background-image: url("/hupx25__img/hupx25__shady-rockett.avif")				}			

.hupx25__about .hupx25__inner {
  text-shadow: -1px -1px 0 #FFF, 1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px 1px 0 #FFF;
}

.hupx25__advantages .hupx25__wrapper {
  min-height: 310px;
}

.hupx25__advantages .hupx25__wrapper::before {
  content: "";
  width: 100px;
  height: 100px;
  background-image: url("/hupx25__img/hupx25__icon-medal-star.avif");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-inline: auto;
}				.hupx25__avif .hupx25__advantages .hupx25__wrapper::before {					background-image: url("/hupx25__img/hupx25__icon-medal-star.avif")				}			

.hupx25__banner .hupx25__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 745px) minmax(0, 393px);
}

.hupx25__banner .hupx25__inner {
  font-size: clamp(0.875rem, 0.7884615385rem + 0.3846153846vw, 1.125rem);
  padding-block: 80px;
}

.hupx25__banner .hupx25__img {
  background-image: url("/hupx25__img/hupx25__banner.avif");
  background-position: center bottom;
  margin-bottom: -40px;
  min-height: 300px;
  margin-top: -75px;
  -webkit-animation: leftRight 1.5s ease-in-out infinite alternate;
  animation: leftRight 1.5s ease-in-out infinite alternate;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  will-change: transform;
}				.hupx25__avif .hupx25__banner .hupx25__img {					background-image: url("/hupx25__img/hupx25__banner.avif")				}			

@-webkit-keyframes leftRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
}

@keyframes leftRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
}

.hupx25__contacts .hupx25__img {
  background-image: url("/hupx25__img/hupx25__tennis-girl.avif");
  background-position: bottom center;
  margin-block: -50px;
  -webkit-animation: leftRight 1.5s ease-in-out infinite alternate;
  animation: leftRight 1.5s ease-in-out infinite alternate;
  will-change: transform;
  -webkit-box-flex: 0.5;
  -ms-flex: 0.5;
  flex: 0.5;
  min-height: 300px;
}				.hupx25__avif .hupx25__contacts .hupx25__img {					background-image: url("/hupx25__img/hupx25__tennis-girl.avif")				}			

.hupx25__contacts .hupx25__contact-info {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.hupx25__contacts .hupx25__contact-info li::before {
  width: 30px;
  border-radius: 50%;
  background-color: #CDFC1B;
  padding: 6px;
}

.hupx25__faq .hupx25__accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.hupx25__faq .hupx25__accordion__item {
  gap: 0;
  padding: 0;
}

.hupx25__faq .hupx25__accordion__header {
  cursor: pointer;
  position: relative;
  width: 100%;
}

.hupx25__faq .hupx25__accordion__toggle {
  position: relative;
  display: block;
  width: 100%;
  padding: 16px;
  padding-right: 56px;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
  text-transform: capitalize;
}

.hupx25__faq .hupx25__accordion__toggle::before,
.hupx25__faq .hupx25__accordion__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: var(--btn-transition);
  transition: var(--btn-transition);
  background-repeat: no-repeat;
}

.hupx25__faq .hupx25__accordion__toggle::before {
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #CDFC1B;
  -webkit-box-shadow: 0 -1px 10px 0 #75B000 inset;
  box-shadow: 0 -1px 10px 0 #75B000 inset;
}

.hupx25__faq .hupx25__accordion__toggle::after {
  right: 25px;
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: 14px 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M1 8H15' stroke='%231A1B20' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M8 1V15' stroke='%231A1B20' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.hupx25__faq .hupx25__accordion__item_show .hupx25__accordion__toggle::after,
.hupx25__faq .hupx25__accordion__item_slidedown .hupx25__accordion__toggle::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 2' fill='none'%3E%3Cpath d='M1 1H15' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.hupx25__faq .hupx25__accordion__item_show .hupx25__accordion__toggle::before,
.hupx25__faq .hupx25__accordion__item_slidedown .hupx25__accordion__toggle::before {
  -webkit-box-shadow: 0 -1px 10px 0 rgba(117, 176, 0, 0) inset;
  box-shadow: 0 -1px 10px 0 rgba(117, 176, 0, 0) inset;
  background: #1A1B20;
}

.hupx25__faq .hupx25__accordion__content {
  padding: 20px;
  padding-top: 0;
}

.hupx25__faq .hupx25__accordion__item:not(.hupx25__accordion__item_show) .hupx25__accordion__body {
  display: none;
}

.hupx25__footer {
  margin-top: auto;
  padding-block: 50px;
  background: #CCD0DE;
}

.hupx25__footer .hupx25__container {
  gap: 30px;
}

.hupx25__footer a {
  font-weight: 600;
  text-transform: capitalize;
  color: var(--accent-text-color);
}

.hupx25__footer a:hover {
  opacity: 0.6;
}

.hupx25__footer .hupx25__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 14px 50px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.hupx25__footer .hupx25__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.hupx25__footer .hupx25__logos img {
  width: auto;
  max-height: 50px;
}

.hupx25__footer .hupx25__age {
  width: 40px;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  border: 2px solid #1A1B20;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  cursor: default;
}

.hupx25__footer .hupx25__contact-info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.hupx25__contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  text-transform: capitalize;
}

.hupx25__contact-info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.hupx25__contact-info li::before {
  content: "";
  width: 20px;
  aspect-ratio: 1;
  background-position: center center;
  background-size: 20px auto;
  background-repeat: no-repeat;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.hupx25__contact-info .hupx25__mail::before {
  background-image: url("/hupx25__img/hupx25__icon-support.svg");
}

.hupx25__contact-info .hupx25__address::before {
  background-image: url("/hupx25__img/hupx25__icon-location.svg");
}

.hupx25__contact-info .hupx25__tel::before {
  background-image: url("/hupx25__img/hupx25__icon-call.svg");
}

.hupx25__games h3 {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(0.75rem, 0.5769230769rem + 0.7692307692vw, 1.25rem);
}

.hupx25__games .hupx25__img-game {
  border-radius: 14px;
  width: 100%;
  aspect-ratio: 1.1/1;
  -o-object-fit: cover;
  object-fit: cover;
}

.hupx25__games .hupx25__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}

.hupx25__games .hupx25__rating::before {
  content: "";
  width: 20px;
  aspect-ratio: 1;
  background-image: url("/hupx25__img/hupx25__icon-star.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: -2px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.hupx25__games .btn {
  width: 100%;
  padding-inline: 0.6em;
  margin-top: auto;
}

.hupx25__games .hupx25__game-list p {
  font-size: clamp(0.625rem, 0.5817307692rem + 0.1923076923vw, 0.75rem);
  line-height: 1.4;
  margin-top: -8px;
}

.hupx25__games .hupx25__game-list:last-child {
  margin-top: 20px;
}

.hupx25__header {
  background: #FFF;
  padding-block: 16px;
}

.hupx25__header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hupx25__header .hupx25__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.hupx25__header a:hover {
  opacity: 0.8;
}

.hupx25__header a.hupx25__active {
  font-weight: 600;
}

.hupx25__logo {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.hupx25__logo img {
  width: 209px;
  aspect-ratio: 4.019/1;
  -o-object-fit: contain;
  object-fit: contain;
}

.hupx25__autorization {
  width: 28px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url("/hupx25__img/hupx25__icon-user.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 20px;
}

.hupx25__yes-autorization {
  display: none;
}

.hupx25__active-registr .hupx25__yes-autorization {
  display: block;
}

.hupx25__active-registr .hupx25__no-autorization {
  display: none;
}

.hupx25__mobile-nav {
  position: fixed;
  top: -100%;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background: var(--background);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.hupx25__mobile-nav--open {
  top: 0;
}

.hupx25__mobile-nav a {
  color: var(--font-color);
}

.hupx25__mobile-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 20px;
  font-size: 28px;
  text-align: center;
}

/* Nav Icon */

.hupx25__mobile-nav-btn {
  --time: 0.1s;
  --width: 26px;
  --height: 30px;
  --line-height: 3px;
  --spacing: 5px;
  --color: var(--font-color);
  --radius: 4px;
  /* Fixed height and width */
  /* height: var(--height); */
  /* width: var(--width); */
  /* Dynamic height and width */
  height: calc(var(--line-height) * 2 + var(--spacing) * 4);
  width: var(--width);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hupx25__nav-icon {
  position: relative;
  width: var(--width);
  height: var(--line-height);
  background-color: var(--color);
  border-radius: var(--radius);
}

.hupx25__nav-icon::before,
.hupx25__nav-icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: var(--width);
  height: var(--line-height);
  border-radius: var(--radius);
  background-color: var(--color);
  -webkit-transition: top var(--time) linear var(--time), -webkit-transform var(--time) ease-in;
  transition: top var(--time) linear var(--time), -webkit-transform var(--time) ease-in;
  transition: transform var(--time) ease-in, top var(--time) linear var(--time);
  transition: transform var(--time) ease-in, top var(--time) linear var(--time), -webkit-transform var(--time) ease-in;
}

.hupx25__nav-icon::before {
  /* top: calc(var(--line-height) * -2); */
  top: calc(-1 * (var(--line-height) + var(--spacing)));
}

.hupx25__nav-icon::after {
  /* top: calc(var(--line-height) * 2); */
  top: calc(var(--line-height) + var(--spacing));
}

.hupx25__nav-icon.hupx25__nav-icon--active {
  background-color: transparent;
}

.hupx25__nav-icon.hupx25__nav-icon--active::before,
.hupx25__nav-icon.hupx25__nav-icon--active::after {
  top: 0;
  -webkit-transition: top var(--time) linear, -webkit-transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, -webkit-transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, transform var(--time) ease-in var(--time);
  transition: top var(--time) linear, transform var(--time) ease-in var(--time), -webkit-transform var(--time) ease-in var(--time);
  background-color: var(--font-color);
}

.hupx25__nav-icon.hupx25__nav-icon--active::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hupx25__nav-icon.hupx25__nav-icon--active::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Layout */

.hupx25__mobile-nav-btn {
  z-index: 999;
  display: none;
}

.hupx25__play-game .hupx25__container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

iframe {
  background-color: #030303;
  background-image: url("/hupx25__img/hupx25__loading.gif");
  background-position: center center;
  background-size: 60px 60px;
  background-repeat: no-repeat;
  margin-inline: auto;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hupx25__qeq {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  -webkit-box-shadow: 0 0 20px 0 #014947;
  box-shadow: 0 0 20px 0 #014947;
  border-radius: 10px;
  margin-bottom: 10px;
}

#game {
  scroll-margin-top: 20px;
}

.hupx25__responsible .hupx25__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 745px) minmax(0, 393px);
}

.hupx25__responsible .hupx25__img {
  background-image: url("/hupx25__img/hupx25__warning.avif");
  background-size: 210px auto;
  min-height: 140px;
}				.hupx25__avif .hupx25__responsible .hupx25__img {					background-image: url("/hupx25__img/hupx25__warning.avif")				}			

.hupx25__shop .hupx25__wrapper {
  position: relative;
  overflow: hidden;
}

.hupx25__shop .hupx25__wrapper::before {
  content: "";
  max-width: 140px;
  width: 100%;
  aspect-ratio: 1.1/1;
  background-image: url("/hupx25__img/hupx25__coins.avif");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-inline: auto;
}				.hupx25__avif .hupx25__shop .hupx25__wrapper::before {					background-image: url("/hupx25__img/hupx25__coins.avif")				}			

.hupx25__shop .hupx25__wrapper.hupx25__active {
  border: 1px solid #CDFC1B;
  -webkit-box-shadow: 0 0 10px 0 #C6F611;
  box-shadow: 0 0 10px 0 #C6F611;
}

.hupx25__shop .hupx25__label {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  text-transform: capitalize;
  border-bottom-left-radius: 16px;
  background: #CDFC1B;
  padding: 2px 16px;
  color: var(--accent-text-color);
}

.hupx25__shop .hupx25__price {
  font-weight: 600;
  color: var(--accent-text-color);
}

.hupx25__user-page .hupx25__wrapper--row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 20px;
}

.hupx25__user-page .hupx25__user-profile {
  display: grid;
  grid-template-columns: 78px -webkit-max-content;
  grid-template-columns: 78px max-content;
  gap: 8px 18px;
}

.hupx25__user-page .hupx25__user-profile ul {
  display: contents;
}

.hupx25__user-page .hupx25__user-profile__photo {
  width: 78px;
  aspect-ratio: 1;
  grid-row: span 2/span 2;
}

.hupx25__user-page .hupx25__user-profile__photo img {
  width: inherit;
  aspect-ratio: inherit;
}

.hupx25__user-page .hupx25__user-profile__name {
  -ms-flex-item-align: end;
  align-self: end;
}

.hupx25__user-page .hupx25__level {
  max-width: 270px;
  width: 100%;
  color: var(--accent-text-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 6px 10px;
}

.hupx25__user-page .hupx25__level span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-weight: 600;
}

.hupx25__user-page .hupx25__level span:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hupx25__user-page .hupx25__level span:first-child::before {
  content: "";
  width: 45px;
  height: 24px;
  background-image: url("/hupx25__img/hupx25__icon-stars.avif");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}				.hupx25__avif .hupx25__user-page .hupx25__level span:first-child::before {					background-image: url("/hupx25__img/hupx25__icon-stars.avif")				}			

.hupx25__user-page .hupx25__level .hupx25__progress {
  width: 100%;
  height: 12px;
  border-radius: 10px;
  background: #D6DFE8;
  overflow: hidden;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}

.hupx25__user-page .hupx25__level .hupx25__progress::after {
  content: "";
  display: block;
  border-radius: inherit;
  width: 40%;
  height: 100%;
  background: #CDFC1B;
  -webkit-box-shadow: 0 -1px 10px 0 #75B000 inset;
  box-shadow: 0 -1px 10px 0 #75B000 inset;
}

.hupx25__user-page .hupx25__coins {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.hupx25__user-page .hupx25__coins span:first-child {
  display: contents;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.hupx25__user-page .hupx25__coins span:first-child::before {
  content: "";
  width: 58px;
  aspect-ratio: 1;
  background-image: url("/hupx25__img/hupx25__coin.avif");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}				.hupx25__avif .hupx25__user-page .hupx25__coins span:first-child::before {					background-image: url("/hupx25__img/hupx25__coin.avif")				}			

.hupx25__user-page .hupx25__coins .btn {
  width: 46px;
  margin: 0;
}

.hupx25__user-page .hupx25__coins .btn span {
  display: none;
}

.hupx25__user-page .hupx25__exit {
  font-weight: 600;
  color: var(--accent-text-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.hupx25__user-page .hupx25__exit:hover {
  opacity: 0.8;
}

.hupx25__user-page .hupx25__logros-list .hupx25__wrapper::before {
  content: "";
  width: 120px;
  aspect-ratio: 1;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-inline: auto;
}

.hupx25__user-page .hupx25__logros-list .hupx25__wrapper:nth-child(1)::before {
  background-image: url("/hupx25__img/hupx25__icon-cup.avif");
}				.hupx25__avif .hupx25__user-page .hupx25__logros-list .hupx25__wrapper:nth-child(1)::before {					background-image: url("/hupx25__img/hupx25__icon-cup.avif")				}			

.hupx25__user-page .hupx25__logros-list .hupx25__wrapper:nth-child(2)::before {
  background-image: url("/hupx25__img/hupx25__icon-crown.avif");
}				.hupx25__avif .hupx25__user-page .hupx25__logros-list .hupx25__wrapper:nth-child(2)::before {					background-image: url("/hupx25__img/hupx25__icon-crown.avif")				}			

.hupx25__user-page .hupx25__logros-list .hupx25__wrapper:nth-child(3)::before {
  background-image: url("/hupx25__img/hupx25__icon-cup-wings.avif");
}				.hupx25__avif .hupx25__user-page .hupx25__logros-list .hupx25__wrapper:nth-child(3)::before {					background-image: url("/hupx25__img/hupx25__icon-cup-wings.avif")				}			

.hupx25__user-page .hupx25__list-shop {
  display: contents;
}

.hupx25__user-page .hupx25__list-shop .hupx25__wrap::before {
  content: "";
  width: 80px;
  aspect-ratio: 1.1/1;
  background-image: url("/hupx25__img/hupx25__coins.avif");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}				.hupx25__avif .hupx25__user-page .hupx25__list-shop .hupx25__wrap::before {					background-image: url("/hupx25__img/hupx25__coins.avif")				}			

.hupx25__user-page .hupx25__list-shop .hupx25__wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hupx25__user-page .hupx25__list-shop .hupx25__price {
  color: var(--accent-text-color);
  font-weight: 600;
  font-size: clamp(0.875rem, 0.7451923077rem + 0.5769230769vw, 1.25rem);
}

.hupx25__user-page .hupx25__list-shop .btn {
  max-width: 492px;
}

@media (min-width: 820px) {
  .hupx25__user-page h2 {
    margin-top: 20px;
  }
}

@media (max-width: 1373px) {
  .hupx25__contacts .hupx25__contact-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 1322px) {
  .hupx25__shop .btn {
    width: 46px;
    margin: 0;
  }

  .hupx25__shop .btn span {
    display: none;
  }
}

@media (max-width: 1220px) {
  .hupx25__container {
    padding: 0 var(--container-padding-tablet);
    gap: 20px;
  }

  .hupx25__header__nav {
    display: none;
  }

  .hupx25__autorization {
    margin: 0;
    scale: 1.5;
  }

  .hupx25__mobile-nav-btn {
    display: block;
  }
}

@media (max-width: 820px) {
  .hupx25__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .hupx25__main section {
    padding-block: 20px;
  }

  .btn {
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
    padding-inline: 0.6rem;
  }

  .hupx25__mobile-center {
    text-align: center;
  }

  .hupx25__grid-4,
  .hupx25__grid-5 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    grid-template-columns: repeat(2, var(--col-size-grid-4));
    gap: 16px;
  }

  .hupx25__grid-4 .hupx25__wrapper,
  .hupx25__grid-5 .hupx25__wrapper {
    padding: 10px;
  }

  .hupx25__grid-5 {
    grid-template-columns: repeat(2, var(--col-size-grid-5));
  }

  .hupx25__modal-content {
    padding: 12px;
  }

  .hupx25__cookie-consent__actions {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .hupx25__item.hupx25__wrapper,
  .hupx25__wrapper {
    padding: 20px;
  }

  .hupx25__about .hupx25__wrapper {
    background-position: bottom center;
    padding-bottom: 300px;
    background-size: 350px auto;
  }

  .hupx25__advantages .hupx25__wrapper {
    min-height: 214px;
  }

  .hupx25__banner .hupx25__wrapper {
    grid-template-columns: 100%;
  }

  .hupx25__banner .hupx25__inner {
    padding: 0;
  }

  .hupx25__banner .hupx25__img {
    margin-top: 0;
    margin-bottom: -20px;
  }

  .hupx25__contacts .hupx25__img {
    margin-block: 0 -30px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .hupx25__faq .hupx25__accordion__toggle {
    padding-left: 14px;
    padding-block: 22px;
  }

  .hupx25__footer {
    padding-block: 20px;
  }

  .hupx25__footer .hupx25__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .hupx25__footer .hupx25__logos img {
    max-height: 30px;
    max-width: 106px;
  }

  .hupx25__games .hupx25__rating {
    font-size: 12px;
  }

  .hupx25__games .hupx25__rating::before {
    width: 12px;
  }

  .hupx25__games .hupx25__game-list:last-child {
    margin-top: -4px;
  }

  .hupx25__header {
    padding-block: 12px;
  }

  .hupx25__responsible .hupx25__wrapper {
    grid-template-columns: 100%;
  }

  .hupx25__responsible .hupx25__img {
    background-size: 173px auto;
  }

  .hupx25__shop .hupx25__wrapper::before {
    max-width: 100px;
  }

  .hupx25__shop .hupx25__label {
    font-size: 10px;
  }

  .hupx25__shop .hupx25__wrap {
    padding-inline: 8px;
    padding-bottom: 4px;
  }

  .hupx25__user-page .hupx25__wrapper--row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .hupx25__user-page .hupx25__user-profile {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hupx25__user-page .hupx25__grid-4 {
    grid-template-columns: repeat(3, 185px);
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-block: 12px;
    margin-block: -12px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .hupx25__user-page .hupx25__grid-4::-webkit-scrollbar {
    display: none;
  }

  .hupx25__user-page .hupx25__list-shop .hupx25__wrap::before {
    width: 40px;
  }

  .hupx25__user-page .hupx25__list-shop .hupx25__wrap span {
    display: none;
  }

  .hupx25__user-page .hupx25__list-shop .hupx25__wrapper--row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .hupx25__user-page .hupx25__list-shop .hupx25__h2 {
    font-size: 16px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover,
  .btn:focus-visible {
    color: var(--btn-color-hover);
    background-color: var(--btn-bg-hover);
    -webkit-box-shadow: var(--btn-shadow-hover);
    box-shadow: var(--btn-shadow-hover);
  }
}

@media (hover: hover) {
  .hupx25__item.hupx25__wrapper:hover,
  .hupx25__wrapper:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
  }
}