/*!***********************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./wwwroot/src/scss/profile-page.scss ***!
  \***********************************************************************************************************************************************************************/
/* animations */
@-webkit-keyframes draw-check {
  0% {
    stroke-dasharray: 49, 80;
    stroke-dashoffset: 48;
    opacity: 0;
    filter: alpha(opacity=0);
  }
  50% {
    stroke-dasharray: 49, 80;
    stroke-dashoffset: 48;
    opacity: 1;
    -webkit-filter: none;
            filter: none;
  }
  100% {
    stroke-dasharray: 130, 80;
    stroke-dashoffset: 48;
  }
}
@keyframes draw-check {
  0% {
    stroke-dasharray: 49, 80;
    stroke-dashoffset: 48;
    opacity: 0;
    filter: alpha(opacity=0);
  }
  50% {
    stroke-dasharray: 49, 80;
    stroke-dashoffset: 48;
    opacity: 1;
    -webkit-filter: none;
            filter: none;
  }
  100% {
    stroke-dasharray: 130, 80;
    stroke-dashoffset: 48;
  }
}
@-webkit-keyframes draw-first-line {
  0% {
    stroke-dasharray: 0, 56;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 0, 56;
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dasharray: 56, 330;
    stroke-dashoffset: 0;
  }
}
@keyframes draw-first-line {
  0% {
    stroke-dasharray: 0, 56;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 0, 56;
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dasharray: 56, 330;
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes draw-second-line {
  0% {
    stroke-dasharray: 0, 55;
    stroke-dashoffset: 1;
  }
  50% {
    stroke-dasharray: 0, 55;
    stroke-dashoffset: 1;
  }
  100% {
    stroke-dasharray: 55, 0;
    stroke-dashoffset: 70;
  }
}
@keyframes draw-second-line {
  0% {
    stroke-dasharray: 0, 55;
    stroke-dashoffset: 1;
  }
  50% {
    stroke-dasharray: 0, 55;
    stroke-dashoffset: 1;
  }
  100% {
    stroke-dasharray: 55, 0;
    stroke-dashoffset: 70;
  }
}
@-webkit-keyframes alert-sign-bounce {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
    filter: alpha(opacity=0);
  }
  50% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
    -webkit-filter: none;
            filter: none;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes alert-sign-bounce {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
    filter: alpha(opacity=0);
  }
  50% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
    -webkit-filter: none;
            filter: none;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* fonts */
/* font sizes */
/* Colors */
/* Gradients */
/* Gaps */
/* Paddings */
/* border radiuses */
:root {
  --alert-radius: 14px;
  --alert-padding: 18px 22px;
  --alert-gap: 14px;
  --alert-blur: blur(6px);
  --alert-text: #f5e6c8;
  --alert-white: #ffffff;
  --alert-shadow-text: 0 0 6px rgba(255, 200, 120, 0.2);
  --alert-close-size: 28px;
  --alert-close-radius: 20px;
}

@media screen and (max-width: 1023px) {
  .alerts:has(.alert) {
    margin: 285px 32px -270px;
  }
}

.alert {
  --alert-bg: linear-gradient( 90deg, rgba(120, 90, 20, 0.85) 0%, rgba(160, 120, 30, 0.9) 50%, rgba(120, 90, 20, 0.85) 100% );
  --alert-border: rgba(255, 200, 80, 0.5);
  --alert-shadow: 0 0 30px rgba(255, 180, 50, 0.25);
  --alert-shadow-inset: inset 0 0 20px rgba(255, 200, 100, 0.15);
  --alert-icon-bg: rgba(255, 200, 80, 0.2);
  --alert-icon-color: #ffd36a;
  --alert-close-bg: rgba(255, 200, 80, 0.2);
  --alert-close-color: rgba(255, 220, 150, 0.7);
  --alert-close-hover-bg: rgba(255, 200, 80, 0.15);
  --alert-close-hover-color: #ffd36a;
  --alert-close-hover-shadow: 0 0 10px rgba(255, 200, 80, 0.3);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--alert-gap);
  padding: var(--alert-padding);
  margin: 20px 0;
  border-radius: var(--alert-radius);
  -webkit-backdrop-filter: var(--alert-blur);
          backdrop-filter: var(--alert-blur);
  position: relative;
  background: var(--alert-bg);
  border: 1px solid var(--alert-border);
  -webkit-box-shadow: var(--alert-shadow), var(--alert-shadow-inset);
          box-shadow: var(--alert-shadow), var(--alert-shadow-inset);
}
.alert.notice {
  --alert-bg: transparent;
  --alert-border: rgba(255, 255, 255, 0.5);
  --alert-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
  --alert-shadow-inset: inset 0 0 20px rgba(255, 255, 255, 0.15);
  --alert-icon-color: var(--alert-white);
  --alert-close-bg: rgba(255, 255, 255, 0.2);
  --alert-close-color: rgba(255, 255, 255, 0.7);
  --alert-close-hover-bg: rgba(255, 255, 255, 0.15);
  --alert-close-hover-color: var(--alert-white);
  --alert-close-hover-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.alert-icon {
  width: 26px;
  height: 26px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background: var(--alert-icon-bg);
  color: var(--alert-icon-color);
  font-weight: bold;
  font-size: 16px;
}
.alert-title, .alert-text {
  color: var(--alert-text);
  line-height: 1.4;
  text-shadow: var(--alert-shadow-text);
}
.alert-title {
  font-size: 20px;
}
.alert-text {
  font-size: 16px;
}
.alert-close {
  margin-left: auto;
  width: var(--alert-close-size);
  height: var(--alert-close-size);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  border-radius: var(--alert-close-radius);
  background: var(--alert-close-bg);
  color: var(--alert-close-color);
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.alert-close:hover {
  background: var(--alert-close-hover-bg);
  color: var(--alert-close-hover-color);
  -webkit-box-shadow: var(--alert-close-hover-shadow);
          box-shadow: var(--alert-close-hover-shadow);
}
.alert-close:active {
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
}

.profile-holder {
  display: grid;
  margin: 40px auto 0;
  grid-template-columns: minmax(137px, 225px) minmax(751px, 1191px);
  grid-gap: 16px;
  max-width: 1432px;
}
@media screen and (max-width: 1023px) {
  .profile-holder {
    grid-template-columns: 100%;
    margin: 287px auto 0;
    grid-gap: 24px;
    width: 640px;
    padding: 0 32px;
  }
}
.profile-menu .menu {
  display: grid !important;
  grid-auto-flow: row !important;
  background: #232543;
  border-radius: 4px;
  padding: 10px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 190px;
}
@media screen and (max-width: 1023px) {
  .profile-menu .menu {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0;
  }
}
.profile-menu-tab {
  cursor: pointer;
  padding: 17px 30px;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  border-bottom: 1px solid #000a24;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .profile-menu-tab {
    border: 0;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    line-height: 16px;
    padding: 42px 0;
  }
}
.profile-menu-tab:last-child {
  border: 0;
}
.profile-menu-tab.active, .profile-menu-tab:hover {
  color: #51b66d;
}
.profile-menu-tab.active:before, .profile-menu-tab:hover:before {
  content: "";
  width: 2px;
  background: #51b66d;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .profile-menu-tab.active:before, .profile-menu-tab:hover:before {
    height: 4px;
    background: #51b66d;
    position: absolute;
    left: 0;
    top: inherit;
    bottom: 0;
    width: 100%;
    right: 0;
  }
}
.profile-content-title {
  background: -webkit-gradient(linear, left top, right top, color-stop(0.28%, #673ab7), to(#121432));
  background: -o-linear-gradient(left, #673ab7 0.28%, #121432 100%);
  background: linear-gradient(90deg, #673ab7 0.28%, #121432 100%);
  border-radius: 4px;
  font-weight: 700;
  font-size: 24px;
  line-height: 16px;
  padding: 32px 40px;
  margin: 0 0 16px;
  text-transform: uppercase;
}
@media screen and (max-width: 1023px) {
  .profile-content-title {
    font-weight: 700;
    font-size: 36px;
    line-height: 16px;
    padding: 40px 0;
    text-align: center;
    margin: 0 0 16px;
  }
}
.profile-content-subtitle {
  background: #51b66d;
  border-radius: 4px 4px 0 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  padding: 12px 44px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 1023px) {
  .profile-content-subtitle {
    font-weight: 700;
    font-size: 20px;
    line-height: 16px;
    width: 100%;
    text-align: center;
    padding: 20px;
  }
}
.profile-content .user-info-buttons {
  background: #121432;
  border-radius: 4px;
  padding: 36px 40px;
  font-weight: 700;
  font-size: 16px;
  line-height: 32px;
  position: relative;
}
.profile-content .user-info-buttons .user-logout {
  background: #232543;
  border-radius: 4px;
  color: #eb5757;
}
.profile-content .user-info-buttons .user-logout:hover {
  -webkit-box-shadow: 0 0 20px rgba(35, 37, 67, 0.1);
          box-shadow: 0 0 20px rgba(35, 37, 67, 0.1);
}
.profile-content .user-info-item {
  display: grid;
  grid-gap: 9px;
  grid-auto-flow: dense;
}
.profile-content .user-info-item-value {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #51b66d;
}
.profile-content .user-info-top {
  background: #000b28;
  border-radius: 0 0 4px;
  padding: 36px 40px;
  font-weight: 700;
  font-size: 16px;
  line-height: 32px;
  margin: 0 0 20px;
  border-top: 2px solid #51b66d;
}
.profile-content .user-info-top-title {
  margin: 0 0 16px;
}
.profile-content .user-info-top-description {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  margin: 0 0 36px;
}
.profile-content .user-info-top-info {
  display: grid;
  place-content: start;
  grid-auto-flow: column;
  grid-gap: 76px;
}
.profile-content .cart-history {
  border-top: 2px solid #51b66d;
}
@media screen and (max-width: 1023px) {
  .profile-content .cart-history {
    border: none;
  }
}
.profile-content .cart-history-empty {
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #121432;
  border-radius: 0 0 4px 4px;
  border-top: 2px solid #51b66d;
  display: grid;
  place-content: center;
  min-height: 440px;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  color: #232543;
  grid-gap: 16px;
}
.profile-content .cart-history-empty img {
  margin: auto;
}
.profile-content .cart-history-item-info-top {
  display: grid;
  grid-auto-flow: column;
  place-content: space-between;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #51b66d;
  padding: 20px 40px;
  background: #121432;
}
@media screen and (max-width: 1023px) {
  .profile-content .cart-history-item-info-top {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 12px;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-weight: 600;
    font-size: 32px;
    line-height: 150%;
    padding: 36px 34px;
    margin: 0;
    -webkit-text-size-adjust: none;
       -moz-text-size-adjust: none;
        -ms-text-size-adjust: none;
            text-size-adjust: none;
  }
}
.profile-content .cart-history-item-holder {
  display: grid;
  grid-auto-flow: column;
  background: #141739;
  padding: 30px 40px;
}
@media screen and (max-width: 1150px) {
  .profile-content .cart-history-item-holder {
    padding: 30px 23px;
  }
}
.profile-content .cart-history-item-holder:nth-child(odd) {
  background: #121432;
}
.profile-content .cart-history-item-child {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  place-content: start;
  grid-gap: 40px;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
}
@media screen and (max-width: 1150px) {
  .profile-content .cart-history-item-child-cover img {
    width: 91px;
  }
}
@media screen and (max-width: 1023px) {
  .profile-content .cart-history-item-child {
    grid-template-columns: 1fr;
    grid-auto-flow: dense;
    grid-gap: 24px;
    font-weight: 500;
    font-size: 24px !important;
    line-height: 130.32%;
    place-content: center;
  }
  .profile-content .cart-history-item-child-cover {
    text-align: center;
  }
  .profile-content .cart-history-item-child-title {
    text-align: center;
    margin: 0 0 24px;
  }
}
.profile-content .cart-history-item-child-key {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: auto;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .profile-content .cart-history-item-child-key {
    grid-template-columns: 1fr;
    place-content: space-between;
  }
  .profile-content .cart-history-item-child-key:last-child {
    margin: 0;
  }
}
.profile-content .cart-history-item-child-text {
  display: grid;
  width: 100%;
  grid-template-columns: 25% 75%;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1023px) {
  .profile-content .cart-history-item-child-text {
    display: block;
  }
}
.profile-content .cart-history-item-child-game-info {
  display: grid;
  gap: 24px;
}
.profile-content .cart-history-item-child-game-launcher {
  color: rgba(255, 255, 255, 0.5);
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
}
.profile-content .cart-history-item-child-game-key {
  font-weight: 500;
  text-transform: uppercase;
}
.profile-content .cart-history-item-child-game-key-block {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 12px;
}
@media screen and (max-width: 1023px) {
  .profile-content .cart-history-item-child-game-key-block {
    gap: 24px;
    margin: 0 0 24px;
  }
}
.profile-content .cart-history-item-child-game-key-error {
  text-align: right;
  line-height: 42px;
}
@media screen and (max-width: 1023px) {
  .profile-content .cart-history-item-child-game-key-error {
    text-align: center;
  }
}
.profile-content .cart-history-item-child-game-key-copy {
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1023px) {
  .profile-content .cart-history-item-child-game-key-copy img {
    width: 25px;
  }
}
.profile-content .cart-history-item-child-game-key-copy .ui.toast-container {
  top: -60px !important;
  right: 0 !important;
}
@media screen and (max-width: 1023px) {
  .profile-content .cart-history-item-child-game-key-copy .ui.toast-container {
    top: -100px !important;
  }
}
.profile-content .cart-history-item-child-game-key-copy .ui.toast-container .toast-box.compact {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.profile-content .cart-history-item-child-game-key-copy .ui.toast-container .toast-box.compact .ui.toast {
  background: #121432 !important;
  color: white !important;
  border: 1px solid white !important;
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
}

.payresult-text {
  text-align: center;
}
.payresult-holder {
  height: 364px;
  width: 364px;
  margin: 50px auto;
  background: #fff;
  text-align: left;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24), 0 0 2px rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24), 0 0 2px rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  color: black;
  text-align: center;
  display: grid;
  place-content: center;
}
.payresult .svg-box {
  display: inline-block;
  position: relative;
  width: 150px;
}
.payresult .green-stroke {
  stroke: #7cb342;
}
.payresult .red-stroke {
  stroke: #ff6245;
}
.payresult .yellow-stroke {
  stroke: #ffc107;
}
.payresult .circular circle.path {
  stroke-dasharray: 330;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  opacity: 0.4;
  filter: alpha(opacity=40);
  -webkit-animation: 0.7s draw-circle ease-out;
          animation: 0.7s draw-circle ease-out;
}
.payresult .checkmark {
  stroke-width: 6.25;
  stroke-linecap: round;
  position: absolute;
  top: 56px;
  left: 49px;
  width: 52px;
  height: 40px;
}
.payresult .checkmark path {
  -webkit-animation: 1s draw-check ease-out;
          animation: 1s draw-check ease-out;
}
.payresult .cross {
  stroke-width: 6.25;
  stroke-linecap: round;
  position: absolute;
  top: 54px;
  left: 54px;
  width: 40px;
  height: 40px;
}
.payresult .cross .first-line {
  -webkit-animation: 0.7s draw-first-line ease-out;
          animation: 0.7s draw-first-line ease-out;
}
.payresult .cross .second-line {
  -webkit-animation: 0.7s draw-second-line ease-out;
          animation: 0.7s draw-second-line ease-out;
}
.payresult .alert-sign {
  stroke-width: 6.25;
  stroke-linecap: round;
  position: absolute;
  top: 40px;
  left: 68px;
  width: 15px;
  height: 70px;
  -webkit-animation: 0.5s alert-sign-bounce cubic-bezier(0.175, 0.885, 0.32, 1.275);
          animation: 0.5s alert-sign-bounce cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.payresult .alert-sign .dot {
  stroke: none;
  fill: #ffc107;
}

@-webkit-keyframes draw-circle {
  0% {
    stroke-dasharray: 0, 330;
    stroke-dashoffset: 0;
    opacity: 1;
    -ms-filter: none;
    -webkit-filter: none;
            filter: none;
  }
  80% {
    stroke-dasharray: 330, 330;
    stroke-dashoffset: 0;
    opacity: 1;
    -ms-filter: none;
    -webkit-filter: none;
            filter: none;
  }
  100% {
    opacity: 0.4;
    -ms-filter: "alpha(Opacity=40)";
    filter: alpha(opacity=40);
  }
}

@keyframes draw-circle {
  0% {
    stroke-dasharray: 0, 330;
    stroke-dashoffset: 0;
    opacity: 1;
    -ms-filter: none;
    -webkit-filter: none;
            filter: none;
  }
  80% {
    stroke-dasharray: 330, 330;
    stroke-dashoffset: 0;
    opacity: 1;
    -ms-filter: none;
    -webkit-filter: none;
            filter: none;
  }
  100% {
    opacity: 0.4;
    -ms-filter: "alpha(Opacity=40)";
    filter: alpha(opacity=40);
  }
}
