@import url(https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap);
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto Flex", sans-serif;
}

body {
  background-color: rgb(216, 202, 228);
}

header {
  padding: 15px 0;
}
header .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
header .header .logo a {
  display: flex;
}
header .header .logo a img {
  width: 100%;
}
header .header .centerded_menu {
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 30px;
  background: var(--Body-Text, #000);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
header .header .centerded_menu a {
  padding: 10px 18px;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  text-decoration-line: underline;
}
header .header .centerded_menu a.active {
  background: #2E2E2E;
  border-radius: 20px;
  text-decoration: none;
}
header .header .right_menu {
  display: flex;
  align-items: center;
  position: relative;
  gap: 5px;
}
header .header .right_menu .profile_wrapper {
  padding: 8px 16px 8px 8px;
  border-radius: 30px;
  background: var(--Body-Text, #000);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  cursor: pointer;
}
header .header .right_menu .profile_wrapper .dropdown_title {
  display: flex;
  align-items: center;
  gap: 12px;
}
header .header .right_menu .profile_wrapper .dropdown {
  display: none;
  position: absolute;
  right: -91px;
  top: calc(100% + 23px);
  width: 230px;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  z-index: 99999;
}
header .header .right_menu .profile_wrapper .dropdown a {
  display: block;
  opacity: 0.8;
  color: #FFF;
  width: -moz-fit-content;
  width: fit-content;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}
header .header .right_menu .profile_wrapper .dropdown a.empty_orders {
  opacity: 0.36;
}
header .header .right_menu .profile_wrapper .dropdown a:not(:last-child) {
  margin-bottom: 12px;
}
header .header .right_menu .profile_wrapper .dropdown a.logout {
  margin: 0;
  color: #F77E5D;
}
header .header .right_menu .cart_wrapper {
  cursor: pointer;
  padding: 14px 16px;
  border-radius: 30px;
  background: var(--Body-Text, #000);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
header .header .right_menu .cart_wrapper .cart_link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
header .header .right_menu .cart_wrapper .cart_link:before {
  content: url("/img/ShoppingCartSimple.svg");
  height: 24px;
}
header .header .right_menu .cart_wrapper #cart_items_count {
  justify-content: center;
  align-items: center;
  display: flex;
  width: 24px;
  border-radius: 20px;
  background: #D8CAE4;
  height: 24px;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
}

footer {
  padding: 48px 0px;
  background: #1B1B1C;
}
footer .footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
footer .footer .left_menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
footer .footer .left_menu .col {
  display: grid;
  gap: 48px;
}
footer .footer .left_menu .col .menu_footer {
  border-top: 1px solid #FFF;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  padding-top: 24px;
  display: grid;
  gap: 10px;
  grid-auto-rows: max-content;
}
footer .footer .left_menu .col .menu_footer h3 {
  color: #FFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
}
footer .footer .left_menu .col .menu_footer a {
  width: -moz-fit-content;
  width: fit-content;
  color: #FFF;
  text-decoration: none;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
footer .footer .right_menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
footer .footer .right_menu .links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
footer .footer .right_menu .links a {
  height: 180px;
  border-radius: 12px;
  padding: 24px;
  background: #FFF;
  text-decoration: none;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  position: relative;
}
footer .footer .right_menu .links a svg {
  position: absolute;
  top: 24px;
  right: 24px;
}
footer .bottom_footer p {
  color: #FFF;
  opacity: 0.45;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 6px;
}
footer .bottom_footer .bottom_menu {
  display: flex;
  align-items: center;
  gap: 24px;
  grid-row-gap: 6px;
  flex-wrap: wrap;
}
footer .bottom_footer .bottom_menu a {
  color: #FFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}
footer .bottom_footer.mob {
  display: none;
}

.home_wrapper .shop_filters {
  display: none;
}

.top_section {
  padding-top: 50px;
  padding-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.top_section .filter .content {
  display: block;
}
.top_section .filter h3 {
  pointer-events: none;
  color: #000;
  margin-bottom: 12px;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
}
.top_section .filter .filter_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  max-width: 340px;
}
.top_section .filter .filter_wrapper .item {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 4px;
  background: #E9E0F1;
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
}
.top_section .filter .filter_wrapper .item.active {
  background: #000;
  color: #D8CAE4;
}
.top_section .filter .filter_wrapper .item.active:after {
  content: url("/img/Check.svg");
  height: 15px;
  line-height: 100%;
}

.currency_wrapper {
  z-index: 9999;
  position: fixed;
  display: flex;
  flex-direction: column;
  right: 0;
  top: 45vh;
  border-radius: 4px 0px 0px 4px;
  padding: 2px;
  background: #000;
}
.currency_wrapper a {
  display: flex;
  width: 24px;
  height: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0.6;
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  text-decoration-line: underline;
}
.currency_wrapper a.active {
  background: #222;
  opacity: 1;
  text-decoration: none;
}

.load-more-wrapper {
  padding-top: 30px;
  display: flex;
  justify-content: center;
}
.load-more-wrapper .load-more {
  color: #D8CAE4;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  gap: 24px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 25px;
  border: 1px solid #000;
  background: #000;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  display: inline-flex;
  align-items: center;
}

.product_section {
  padding-bottom: 100px;
}
.product_section .empty {
  padding-top: 150px;
  padding-bottom: 50px;
  text-align: center;
}
.product_section .products_list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 30px;
}
.product_section .products_list .product-item {
  text-decoration: none;
}
.product_section .products_list .product-item .img_wrapper {
  margin-bottom: 10px;
}
.product_section .products_list .product-item .img_wrapper img {
  border-radius: 8px;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.12);
  height: 180px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product_section .products_list .product-item p {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}

.purchases {
  padding: 50px 0 100px 0;
}
.purchases h1 {
  color: #000;
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: 84%;
  margin-bottom: 30px;
}
.purchases .products_list {
  display: grid;
  gap: 10px;
}
.purchases .products_list .product-item {
  gap: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 0px;
  display: grid;
  grid-template-columns: 63.467px auto 340px;
}
.purchases .products_list .product-item .image-wrapper {
  max-width: 63.467px;
}
.purchases .products_list .product-item .image-wrapper img {
  width: 63.467px;
  height: 84px;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.06);
}
.purchases .products_list .product-item .attributes-wrapper h2 {
  color: #000;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 96%;
  margin-bottom: 8px;
}
.purchases .products_list .product-item .attributes-wrapper .row {
  display: flex;
  align-items: center;
  opacity: 0.5;
}
.purchases .products_list .product-item .attributes-wrapper .row p {
  border-radius: 20px;
  border: 2px solid #D8CAE4;
  padding: 3px 12px;
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  background: #FBF6FF;
}
.purchases .products_list .product-item .attributes-wrapper .row p:not(:first-child) {
  margin-left: -8px;
}
.purchases .products_list .product-item .code_column {
  display: flex;
  align-items: center;
  gap: 4px;
}
.purchases .products_list .product-item .code_column .game-code-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
}
.purchases .products_list .product-item .code_column .game-code-wrapper .text {
  width: 181px;
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  opacity: 0.5;
}
.purchases .products_list .product-item .code_column .game-code-wrapper .game-code {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  align-self: stretch;
  overflow: hidden;
  color: #000;
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  margin-top: -4px;
}
.purchases .products_list .product-item .code_column .game-code-wrapper .copy {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 25px;
  background: #000;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  color: #D8CAE4;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  text-transform: uppercase;
}
.purchases .products_list .product-item .faq_link {
  display: flex;
}

@media (max-width: 1220px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 1024px) {
  .product_section .products_list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .product_section .products_list {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 12px;
    grid-row-gap: 24px;
  }
  header .header .right_menu .profile_wrapper .dropdown {
    right: -84px;
  }
  header .header {
    display: grid;
    grid-template-columns: 165.107px 1fr;
    gap: 15px;
  }
  header .header .centerded_menu {
    margin: 0 auto;
    grid-row-start: 2;
    grid-column-start: 1;
    grid-column-end: 3;
    width: -moz-fit-content;
    width: fit-content;
  }
  header .header .right_menu {
    justify-content: flex-end;
  }
  header .header .right_menu .profile_wrapper {
    padding: 8px 12px 8px 8px;
  }
  header .header .centerded_menu a {
    padding: 7px 15px;
  }
  header .header .right_menu .cart_wrapper {
    padding: 8px 12px;
  }
  header .header .right_menu .profile_wrapper .dropdown_title img {
    width: 24px;
    height: 24px;
  }
  header .header .right_menu .cart_wrapper .cart_link:before {
    width: 24px;
    height: 24px;
  }
  footer .footer .right_menu {
    grid-row-start: 1;
  }
  footer .footer {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  footer .footer .right_menu .links a {
    display: flex;
    align-items: flex-end;
    height: 120px;
    padding: 10px;
  }
  footer .footer .right_menu .links a svg {
    top: 10px;
    right: 10px;
  }
  footer .footer .right_menu .bottom_footer {
    display: none;
  }
  footer .footer .bottom_footer.mob {
    display: block;
  }
  footer .footer .left_menu {
    padding-bottom: 24px;
  }
  footer {
    padding-top: 10px;
    padding-bottom: 24px;
  }
  .top_section {
    padding-top: 35px;
  }
}
@media (max-width: 600px) {
  .purchases .products_list .product-item .image-wrapper img {
    width: 45.333px;
    height: 60px;
  }
  .purchases .products_list .product-item {
    grid-template-columns: 45.333px 1fr;
    grid-column-gap: 12px;
    grid-row-gap: 10px;
  }
  .purchases .products_list .product-item .code_column .game-code-wrapper {
    width: 100%;
    justify-content: space-between;
  }
  .purchases .products_list .product-item .code_column {
    grid-row-start: 2;
    grid-column-start: 2;
    grid-column-end: 4;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 10px;
  }
  .purchases .products_list .product-item .code_column .game-code-wrapper .text {
    width: auto;
  }
  .purchases .products_list .product-item .attributes-wrapper h2 {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%;
    margin-bottom: 10px;
  }
  .top_section {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .filter {
    padding: 10px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .top_section .filter h3 {
    pointer-events: all;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
  }
  .top_section .filter h3:after {
    content: url("/img/filterIcon.svg");
    height: 18px;
    line-height: 100%;
  }
  .top_section .filter.active h3:after {
    transform: rotate(-180deg);
  }
  .top_section .filter .filter_wrapper {
    max-width: 100%;
    padding-top: 12px;
  }
  .top_section .filter .content {
    display: none;
  }
  .top_section .filter:first-child .content {
    display: block;
  }
}
