@import 'https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap';
* {
  padding: 0;
  margin: 0;
  border: none;
}

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

:focus,
\:active {
  outline: none;
}

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

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;
}

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

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

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background: transparent 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;
}

body {
  background-color: #1E1E1E;
  font-family: "Inter", sans-serif;
  color: #FFF;
}

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

::-webkit-scrollbar-track {
  background: #1E1E1E;
}

::-webkit-scrollbar-thumb {
  background: #E270BB;
  border-radius: 12px;
}

.text--highlighted {
  color: #E270BB;
  font-weight: 600;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px 0 20px;
}
.container--mobile {
  max-width: 450px;
}

.btn {
  background-color: #E270BB;
  align-items: center;
  padding: 12px 20px;
  border-radius: 12px;
}
.btn:disabled {
  cursor: not-allowed;
  background-color: #848282;
}
.btn__text {
  margin: 0 auto;
}
.btn--wide {
  width: 100%;
}
.btn--outline {
  background: none;
  border: #E270BB 3px solid;
}

.header {
  position: sticky;
  width: 100%;
  top: 0;
  display: flex;
  background-color: #1E1E1E;
  padding: 10px 25px;
  gap: 25px;
  border-bottom: #2d2d2d 1px solid;
  z-index: 1;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #E270BB;
}
.header__logo-image {
  max-width: 30px;
}
.header__logo-name {
  font-size: 1.25em;
  font-weight: 600;
}
.header__navigation {
  display: flex;
  gap: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.header__navigation--login {
  right: 70px;
}
.header__navigation-btn {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header__navigation-btn-text {
  color: #848282;
  font-size: 0.875em;
}
.header__navigation-btn_active span {
  color: #E270BB;
}
.header__navigation-btn_active svg {
  fill: #E270BB;
}
.header__shop-items {
  display: flex;
  gap: 10px;
  margin: 0 0 0 auto;
}
.header__shop-button {
  display: flex;
  background-color: #29bae7;
  color: #FFF;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 5px 15px;
  border-radius: 12px;
}
.header__shop-text {
  font-weight: 600;
  font-size: 0.875em;
  white-space: nowrap;
}
.header__balance {
  background-color: #252525;
  border: #2d2d2d 1px solid;
  padding: 10px;
  align-items: center;
  border-radius: 12px;
  display: flex;
  gap: 8px;
}
.header__balance-icon {
  max-width: 25px;
}
.header__balance-count {
  color: #FFF;
  font-weight: 500;
}
.header__balance-plus {
  display: none;
}
.header__login-btn {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0 0 0 auto;
  padding: 10px 15px;
  background-color: #E270BB;
  border-radius: 12px;
}
.header__login-btn-text {
  color: #FFF;
  font-weight: 600;
}

.popup {
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  transition: all 0.5s;
}
.popup:target, .popup_active {
  opacity: 1;
  visibility: visible;
}
.popup:target .popup__content, .popup_active .popup__content {
  transform: scale(100%);
}
.popup__body {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup__content {
  width: 100%;
  border-radius: 12px;
  padding: 30px;
  max-width: 450px;
  max-height: 90vh;
  overflow-x: auto;
  background-color: #1E1E1E;
  transition: transform 0.5s;
  transform: scale(80%);
}
.popup__content--fullscreen {
  max-width: none;
}
.popup__area {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.popup__title {
  margin: 0 auto;
  max-width: 450px;
  display: flex;
  font-size: 1.5em;
  text-align: center;
  font-weight: 600;
}
.popup__cross-btn {
  margin-left: auto;
}
.popup__cross-btn img {
  height: 100%;
}

.choice {
  max-width: 450px;
  margin: 0 auto 0 auto;
}
.choice__title {
  display: flex;
  font-size: 1.5em;
  text-align: center;
  font-weight: 600;
}
.choice__items {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-direction: column;
}
.choice__items-sections {
  display: flex;
  gap: 20px;
}
.choice__items-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 10px;
}
.choice__item {
  display: flex;
  gap: 20px;
  padding: 10px 15px;
  border: #2d2d2d solid 1px;
  border-radius: 12px;
  background-color: #252525;
  color: #FFF;
  width: 100%;
  text-align: left;
}
.choice__item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.choice__item-icon {
  max-width: 50px;
  object-fit: contain;
}
.choice__item-title {
  font-weight: 600;
  font-size: 1.125em;
}
.choice__item-description {
  margin-top: 5px;
  color: #848282;
}

.shop__btn {
  margin-top: 20px;
  display: flex;
  color: #FFF;
}
.shop__btn:disabled {
  cursor: not-allowed;
  background-color: #848282;
}
.shop__title {
  font-weight: 600;
  text-align: center;
  font-size: 1.5em;
}
.shop__items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.shop__items-section {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.shop__items-section:nth-child(1) .shop__item:nth-child(1) {
  background: url("../images/shop-1.48409ed8cec8.webp") no-repeat center center #252525;
}
.shop__items-section:nth-child(1) .shop__item:nth-child(2) {
  background: url("../images/shop-2.ab58312a9c6c.webp") no-repeat center center #252525;
}
.shop__items-section:nth-child(2) .shop__item:nth-child(1) {
  background: url("../images/shop-3.3b8178f2f6d5.webp") no-repeat center center #252525;
}
.shop__items-section:nth-child(2) .shop__item:nth-child(2) {
  background: url("../images/shop-4.4ef00cfeef11.webp") no-repeat center center #252525;
}
.shop__items-section:nth-child(3) .shop__item:nth-child(1) {
  background: url("../images/shop-5.d68218efae89.webp") no-repeat center center #252525;
}
.shop__items-section:nth-child(3) .shop__item:nth-child(2) {
  background: url("../images/shop-6.c27c88856178.webp") no-repeat center center #252525;
}
.shop__item:nth-child(1):nth-child(1) {
  background: url("../images/shop-1.48409ed8cec8.webp") no-repeat center center #252525;
}
.shop__item:nth-child(2):nth-child(2) {
  background: url("../images/shop-2.ab58312a9c6c.webp") no-repeat center center #252525;
}
.shop__item:nth-child(3):nth-child(3) {
  background: url("../images/shop-3.3b8178f2f6d5.webp") no-repeat center center #252525;
}
.shop__item:nth-child(4):nth-child(4) {
  background: url("../images/shop-4.4ef00cfeef11.webp") no-repeat center center #252525;
}
.shop__item:nth-child(5):nth-child(5) {
  background: url("../images/shop-5.d68218efae89.webp") no-repeat center center #252525;
}
.shop__item:nth-child(6):nth-child(6) {
  background: url("../images/shop-6.c27c88856178.webp") no-repeat center center #252525;
}
.shop__item {
  background-size: 80% !important;
  object-fit: cover;
  overflow: hidden;
  width: 160px;
  border: #2d2d2d 1px solid;
  border-radius: 12px;
  color: #FFF;
  transition: border 0.1s, border-color 0s;
}
.shop__item_selected {
  border: #E270BB 2px solid;
}
.shop__item-info {
  display: flex;
  justify-content: space-between;
}
.shop__discount {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-transform: uppercase;
  position: relative;
  font-size: 0.625em;
  font-weight: 600;
  right: 55px;
  bottom: 82px;
  padding-bottom: 5px;
  width: 100%;
  background: #E270BB;
  transform: rotate(-45deg);
}
.shop__terms {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  text-align: right;
}
.shop__count {
  margin-right: 5px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}
.shop__count-number {
  font-size: 40px;
}
.shop__price {
  margin: 20px 0 10px 0;
  padding: 5px 10px;
  border-radius: 999px 0 0 999px;
  font-weight: 600;
  font-size: 0.875em;
  background-color: #E270BB;
}
.shop__sub-title {
  font-weight: 600;
  font-size: 1.125em;
  margin-left: 5px;
}
.shop__currency {
  margin: 20px auto;
  max-width: 400px;
}
.shop__currency-btns {
  display: flex;
  margin-top: 15px;
  gap: 10px;
}
.shop__currency-btn {
  width: 40px;
  height: 40px;
  font-weight: 600;
  font-size: 1.125em;
  background-color: #252525;
  border-radius: 9999px;
}
.shop__currency-btn_selected {
  border: #E270BB solid 2px;
}
.shop__currency-btn:disabled {
  display: none;
}
.shop__payment-method {
  margin-top: 10px;
  width: 100%;
  max-width: 250px;
  padding: 8px;
  border: 2px solid #2d2d2d;
  border-radius: 12px;
  background-color: #252525;
}
.shop__payment-method:focus {
  outline: none;
  border-color: #E270BB;
}

.footer {
  background-color: #252525;
}
.footer__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1200px;
  margin: 100px auto 0 auto;
  padding: 20px 30px;
  border-color: #2d2d2d;
  border-radius: 12px 12px 0 0;
}
.footer__links {
  display: flex;
}
.footer__column {
  flex: 1;
  min-width: 200px;
}
.footer__title {
  margin-bottom: 10px;
}
.footer__link {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #848282;
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: #fff;
}
.footer__copyright {
  background-color: #252525;
  color: #848282;
  font-size: 0.85em;
  margin-top: 20px;
}
.footer__navigation {
  display: none;
}
.footer__navigation-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.75em;
  align-items: center;
  color: #848282;
  font-weight: 500;
}
.footer__navigation-btn_active {
  color: #E270BB;
}
.footer__navigation-btn_active svg {
  fill: #E270BB;
}

.sign__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.sign__content_center {
  height: 85vh;
}
.sign__logo-image {
  max-height: 135px;
}
.sign__forms {
  width: 100%;
}
.sign__form {
  display: none;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
.sign__form_active {
  display: flex;
}
.sign__input-field {
  border: 1px solid #2d2d2d;
  border-radius: 12px;
  background-color: #252525;
  padding: 14px 20px;
  width: 100%;
  transition: border-color 0.25s;
}
.sign__input-field:focus {
  border-color: #E270BB;
}
.sign__error-text {
  color: #E270BB;
  font-weight: 500;
}
.sign__link {
  color: #E270BB;
  font-weight: 600;
}
.sign__link:hover {
  border-bottom: #E270BB 2px solid;
}
.sign__tabs {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}
.sign__btn {
  width: 100%;
  border-radius: 12px;
  text-align: center;
  color: #FFF;
}
.sign__btn-text {
  font-weight: 600;
}
.sign__btn-tab {
  display: block;
  font-weight: 600;
  color: #848282;
}
.sign__btn-tab_active {
  color: #E270BB;
}

@media (max-width: 768px) {
  .header__shop-button {
    display: none;
  }
  .header__balance {
    padding: 5px 10px;
  }
  .header__balance-plus {
    display: block;
  }
  .header__navigation {
    display: none;
  }
  .header__balance {
    margin-left: auto;
  }
  .footer {
    margin-bottom: 65px;
  }
  .footer__navigation {
    display: flex;
    justify-content: space-evenly;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #252525;
    text-align: center;
    padding: 10px 0;
  }
  .popup__body {
    align-items: end;
  }
  .popup__content {
    border-radius: 12px 12px 0 0;
    transform: scale(100%) translate(0, 100%);
    max-width: none;
  }
  .popup:target .popup__content {
    transform: translate(0, 0);
  }
}

/*# sourceMappingURL=base.css.572a8c5caedd.map */
