body {
  background-color: #15161d;
  font-size: 14px;
}
/* OVERRIDES */
input,
select {
  border: 1px solid #e4e7ed;
}

input:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: -webkit-focus-ring-color auto 0px;
}

.select2,
.select2-dropdown {
  border: 1px solid #e4e7ed;
}
/* /OVERRIDES */

/* HELPERS */
.button {
  background-color: #ef233c;
  color: #fff;
  padding: 0 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  border-radius: 40px;
  border: 2px solid transparent;
  transition: 0.2s all;
}

.uppercase {
  text-transform: uppercase;
}

.font-400 {
  font-weight: 400;
}

.font-700 {
  font-weight: 700;
}

.img-full-width {
  max-width: 100%;
  max-height: 100%;
}

a.hover-underline:hover {
  text-decoration: underline;
}

.color-red {
  color: #ff0000;
}

.hidden {
  display: none !important;
}
/* /HELPERS */

.header {
  padding-top: 15px;
  padding-bottom: 15px;
}

.header .header-logo,
.header .header-slogan {
  height: 100%;
  display: flex;
  align-items: center;
}

.header .header-logo img,
.header .header-slogan img {
  max-width: 100%;
  max-height: 100%;
}

.header .header-slogan a {
  text-decoration: none;
  width: 100%;
}

.header .header-slogan {
  text-align: center;
  margin: 0 auto;
}

.footer {
  color: #b9babc;
  font-size: 14px;
}

.footer .footer-title,
.footer .footer-title * {
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  margin: 0 0 30px;
}

.footer .footer-title a {
  text-decoration: none;
}

.footer .footer-title a:hover {
  color: #d10024;
}

.footer .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  word-break: break-word;
}

.footer .footer-links a {
  color: #b9babc;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  text-decoration: none;
}

.footer .footer-links a:hover,
.footer .footer-links a:focus {
  color: #d10024;
}

.footer .footer-links div:not(.no-icon):first-child {
  min-width: 20px;
  color: #d10024;
}

.footer .footer-content {
  margin: 30px 0;
}

.footer .footer-links a div span:first-child {
  margin-right: 5px;
}

.navigation {
  background: #fff;
  border-bottom: 2px solid #e4e7ed;
  border-top: 3px solid #d10024;
}

.navigation,
.navs {
  background: #fff;
}

.ul-navs {
  padding-top: 30px;
}

.ul-navs ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  margin: 0 50px;
  padding: 0;
}

.ul-navs ul li img {
  max-width: 100%;
  max-height: 100%;
  padding: 5px;
  /*display: block;*/
}

@media only screen and (max-width: 450px) {
  .header-logo {
    float: none !important;
    justify-content: center;
  }

  .ul-navs ul {
    display: block;
    text-align: center;
  }
}

.body-content,
.footer {
  padding-bottom: 30px;
  padding-top: 30px;
}

.navs.has-content + .body-content {
  padding-top: 0;
}

.body-content {
  background-color: #fff;
}

/* HOME STYLE */
.ads img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  display: block;
}

.products {
  padding-bottom: 50px;
}

/* GAME CARD */
.game-cards {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  row-gap: 55px;
}

.game-card {
  margin: 10px;
  width: calc(100% * (1 / 4) - 30px);
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  padding: 0;
  transition: 0.2s all;
}

.game-card:not(.is-loading):hover {
  box-shadow: 0px 0px 6px 0px #e4e7ed, 0px 0px 0px 2px #d10024;
}

.game-card,
.game-card .content {
  position: relative;
  z-index: 2;
  background: #fff;
}

.game-card a {
  text-decoration: none;
}

.game-card .image img {
  max-width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.game-card .content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.game-card .content.cart {
  position: absolute;
  transform: translateY(-100%);
  transition: 0.2s all;
  z-index: 1;
  background-color: #1e1f29;
  text-align: center;
  left: 0;
  right: 0;
}

.game-card:hover .content.cart,
.game-card a:hover .content.cart {
  transform: translateY(0);
  border: 2px solid #1e1f29;
  border-top: 0;
  border-bottom: 0;
  box-shadow: 0px 0px 0px 2px #1e1f29, 0px 0px 0px 0px #1e1f29;
  border-radius: 0 0 5px 5px;
}

.game-card .content.cart .button.button-cart {
  height: 40px;
  display: flex;
  align-items: center;
}

.game-card .content.cart .button.button-cart:hover {
  background-color: #fff;
  color: #d10024;
  border-color: #d10024;
}

.game-card .content h3 {
  text-transform: uppercase;
  font-size: 14px;
}

.game-card .content h4 {
  color: #d10024;
  font-size: 18px;
}

.game-card .content-badge {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
}

.game-card.game-card-badge .content-badge {
  display: block;
}

.game-card .content-badge div {
  position: absolute;
  top: 0;
  height: 65px;
  width: 100%;
  font-size: 12px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.game-card .content-badge div span:last-child {
  font-size: 16px;
}

.game-card.is-loading .image,
.game-card.is-loading h2,
.game-card.is-loading h3,
.game-card.is-loading h4,
.game-card.is-loading p {
  background: #eee;
  background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
  border-radius: 5px;
  background-size: 200% 100%;
  -webkit-animation: 1.5s shine linear infinite;
  animation: 1.5s shine linear infinite;
  width: 100%;
}

.game-card.is-loading .image {
  height: 200px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.game-card.is-loading h2,
.game-card.is-loading h3 {
  height: 30px;
}

.game-card.is-loading p,
.game-card.is-loading h4 {
  height: 70px;
}

@-webkit-keyframes shine {
  to {
    background-position-x: -200%;
  }
}

@keyframes shine {
  to {
    background-position-x: -200%;
  }
}

@media (max-width: 1199px) {
  .game-card {
    width: calc(100% * (1 / 3) - 30px);
  }
}

@media (max-width: 991px) {
  .game-card {
    width: calc(100% * (1 / 2) - 30px);
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #2b2d42;
  font-weight: 700;
  margin: 0 0 10px;
}

.product-content .game-card {
  width: auto;
}

.product-content .game-card .image img {
  width: 100%;
}

.product-content:not(.is-loading) .game-card,
.product-content:not(.is-loading) .game-card:hover {
  box-shadow: none;
}

.game-card .pd-name {
  font-size: 18px;
}

.game-card .pd-price {
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  gap: 30px;
  align-items: baseline;
}

.game-card .pd-price,
.game-card .pd-price * {
  color: #d10024;
  font-size: 24px;
}

.game-card .pd-price .pd-price-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.game-card .pd-price .pd-price-item h5 {
  font-size: 20px;
}

.game-card .pd-price .pd-price-stock,
.game-card .pd-price .pd-price-stock * {
  font-size: 12px;
}

.game-card .pd-contact {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.game-card .pd-contact li {
  display: flex;
  gap: 10px;
}

.game-card .pd-contact li span:first-child {
  font-weight: 700;
}

.game-card .pd-info {
  color: #d10024;
}

.game-card .pd-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.game-card .pd-quantity-input {
  display: flex;
  gap: 0;
}

.game-card .product-quantity-buttons {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.game-card .pd-quantity-input .txt-quantity {
  padding: 0 35px 0 15px;
  height: 40px;
  width: 90px;
}

.game-card .pd-quantity-input .txt-quantity,
.game-card .pd-quantity-input .txt-quantity:focus,
.game-card .pd-quantity-input .txt-quantity:focus-visible,
.game-card .pd-quantity-input .pd-quantity-btn {
  border: 1px solid #e4e7ed;
  background-color: #fff;
  outline: -webkit-focus-ring-color auto 0px;
}

.game-card .pd-quantity-input .pd-quantity-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.game-card .pd-quantity-input .pd-quantity-btn {
  width: 20px;
  height: 20px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.game-card .pd-quantity-input .pd-quantity-btn:hover {
  color: #d10024;
}

.game-card.order-detail hr {
  margin-top: 50px;
  background-color: #e4e7ed;
}

.game-card.order-detail {
  border: 1px solid #e4e7ed;
  padding: 20px 30px 50px 30px;
}

.game-card.order-detail > h2 {
  text-align: center;
  margin: 0 auto;
}

.game-card.order-detail .od-summary {
  flex-direction: column;
  text-transform: uppercase;
  margin-top: 30px;
}

.game-card.order-detail .od-summary,
.game-card.order-detail .od-summary div,
.game-card.order-detail .od-summary div span {
  display: flex;
}

.game-card.order-detail .od-summary {
  gap: 20px;
}

.game-card.order-detail .od-summary > div {
  align-items: center;
  justify-content: space-between;
}

.game-card.order-detail .od-summary div > div {
  flex: 3;
}

.game-card.order-detail .od-summary div > div:last-child {
  flex: 1;
  justify-content: flex-end;
}

.game-card.order-detail .od-summary div > div {
  gap: 10px;
}

.game-card .button-submit {
  background-color: #d10024;
  color: #fff;
  padding: 12px 30px;
}

.od-summary .od-summary-discount-label,
.od-summary .od-summary-discount,
.od-summary .od-summary-total {
  color: #d10024;
}

.od-summary .od-summary-total {
  font-size: 24px;
}

.payment-detail > .row,
.od-dynamic-form > .row {
  padding: 5px 0;
}

.od-submit {
  margin-top: 80px;
}

.payment-detail input,
.payment-detail select,
.payment-detail .select2,
.od-dynamic-form input,
.od-dynamic-form .select,
.od-dynamic-form .select2 {
  width: 360px !important;
  padding: 0 15px;
  height: 40px;
  border: 1px solid #e4e7ed;
}

@media only screen and (max-width: 450px) {
  .payment-detail input,
  .payment-detail select,
  .payment-detail .select2,
  .od-dynamic-form input,
  .od-dynamic-form .select,
  .od-dynamic-form .select2 {
    width: 100% !important;
  }
}

.payment-detail .select2 .selection .select2-selection,
.payment-detail .select2 .selection .select2-selection__rendered,
.payment-detail .select2 .selection .select2-selection__arrow,
.od-dynamic-form .select2 .selection .select2-selection,
.od-dynamic-form .select2 .selection .select2-selection__rendered,
.od-dynamic-form .select2 .selection .select2-selection__arrow {
  border: none;
  height: 38px;
}

.payment-detail .select2 .selection .select2-selection__rendered,
.payment-detail .select2 .selection .select2-selection__clear,
.od-dynamic-form .select2 .selection .select2-selection__rendered,
.od-dynamic-form .select2 .selection .select2-selection__clear {
  line-height: 38px;
}

.payment-detail input.error,
.od-dynamic-form input.error,
.payment-detail select.error + .select2,
.od-dynamic-form select.error + .select2 {
  border-color: #d10024;
}

.payment-detail span.error,
.od-dynamic-form span.error {
  display: block;
  color: #d10024;
  padding: 2px 0;
  font-size: 12px;
}

.payment-detail span.error[class*="font-"],
.od-dynamic-form span.error[class*="font-"] {
  font-size: 14px;
}

.vn-result-content > div {
  padding-bottom: 25px;
}

.vn-result-content .vn-result {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vn-result-content .vn-result:last-child {
  gap: unset;
}

.vn-result-content .vn-result > div {
  display: flex;
  gap: 5px;
}

.generic-content > div {
  padding-bottom: 25px;
}

.generic-content .gen-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #808080;
  font-size: 20px;
  gap: 10px;
}

.generic-content .gen-result:last-child {
  gap: unset;
}

.generic-content .gen-result > div {
  display: flex;
  gap: 5px;
  padding-bottom: 10px;
}

/* MODAL */
.modal.modal-no-spacing .modal-body {
  padding: 0;
}
/* /MODAL */

/* LANGUAGE */
.language-selector {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 0;
  overflow: hidden;
  background: #0000004d;
  z-index: 10;
  transition: all 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.language-selector.open {
  height: 100vh;
  padding: 40px;
}

.language-selector ul {
  list-style: none;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 0;
  margin: 0;
}

.language-selector ul li a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
  align-items: center;
  text-decoration: none;
}

.language-selector ul li a i:before {
  width: 60px;
  height: 60px;
  background-size: 60px;
}

.language-selector .language-selector-container {
  padding: 20px;
  margin: 0;
  background: #000000cc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-width: 300px;
  min-height: 200px;
  gap: 20px;
  color: #fff;
}

.header-right > .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.language-container {
  position: relative;
  display: block;
}

.language-icon {
  position: relative;
}

.language-icon:before {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 30px;
}

.language-icon.language-icon-en-au:before {
  background-image: url("/_static/img/flags/Flag-AU.png");
}

.language-icon.language-icon-en-in:before {
  background-image: url("/_static/img/flags/Flag-IN.png");
}

.language-icon.language-icon-en-my:before,
.language-icon.language-icon-zh-my:before {
  background-image: url("/_static/img/flags/Flag-MY.png");
}

.language-icon.language-icon-en-us:before {
  background-image: url("/_static/img/flags/Flag-EN.png");
}

.language-icon.language-icon-es-cl:before {
  background-image: url("/_static/img/flags/Flag-CL.png");
}

.language-icon.language-icon-es-mx:before {
  background-image: url("/_static/img/flags/Flag-MX.png");
}

.language-icon.language-icon-es-pe:before {
  background-image: url("/_static/img/flags/Flag-PE.png");
}

.language-icon.language-icon-id-id:before {
  background-image: url("/_static/img/flags/Flag-ID.png");
}

.language-icon.language-icon-km-kh:before {
  background-image: url("/_static/img/flags/Flag-KH.png");
}

.language-icon.language-icon-ko-kr:before {
  background-image: url("/_static/img/flags/Flag-KR.png");
}

.language-icon.language-icon-pt-br:before {
  background-image: url("/_static/img/flags/Flag-BR.png");
}

.language-icon.language-icon-th-th:before {
  background-image: url("/_static/img/flags/Flag-TH.png");
}

.language-icon.language-icon-vi-vn:before {
  background-image: url("/_static/img/flags/Flag-VN.png");
}

.language-icon.language-icon-zh-cn:before {
  background-image: url("/_static/img/flags/Flag-CN.png");
}
/* /LANGUAGE */
