@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Roboto&display=swap");
.nv {
  color: #76B900 !important;
  font-weight: 500;
}

@keyframes fadeInLeftShort {
  from {
    opacity: 0;
    transform: translateX(-5px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftShort {
  animation-name: fadeInLeftShort;
}

html,
body,
* {
  box-sizing: border-box;
  font-family: "Noto Sans TC", "GeForce";
}

html,
body {
  background: #222;
  color: #fff;
}

a,
a:active,
a:visited,
a:focus {
  display: inline-block;
  color: #fff;
  text-decoration: none;
}
a span,
a:active span,
a:visited span,
a:focus span {
  white-space: pre-wrap;
}

.en {
  font-family: "GeForce", "Noto Sans TC";
  font-weight: 700;
}

.zh {
  font-family: "Noto Sans TC";
}

.twm {
  color: #F68428;
}

.logo-wrap img {
  width: 100%;
}

.ratio {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  overflow: hidden;
}
.ratio__24-7 {
  padding-top: 29.1666666667%;
}
.ratio__16-9 {
  padding-top: 56.25%;
}
.ratio__1-1 {
  padding-top: 100%;
}
.ratio img,
.ratio iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.disabled {
  color: #999 !important;
  pointer-events: none !important;
}
.disabled a,
.disabled a:active,
.disabled a:visited {
  color: #999 !important;
}

.title.styled {
  display: inline-block;
  font-size: 30px;
  padding: 22px 90px;
  background: #222;
  border-left: 5px solid #76B900;
  border-right: 5px solid #76B900;
  margin-bottom: 2vw;
}
.title.styled.long {
  width: 100%;
  padding: 20px;
  margin: 10px 0;
  line-height: 1.6;
}

.sub {
  color: #999;
  margin: 0 10px;
}
.sub.at {
  font-size: 20px;
  margin: 24px 0;
}
.sub.sm {
  font-size: 13px;
}

@keyframes glow {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.state {
  animation-name: glow;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  width: 50px;
}
.state.new {
  color: #76B900;
}
.state.hot {
  color: #FF0000;
}
.state.na {
  color: rgba(0, 0, 0, 0);
}

.failed {
  color: #FF0000;
}

.scrollTop {
  position: fixed;
  z-index: 10;
  right: 15px;
  bottom: 15px;
  background-color: #76B900;
  padding: 12px 15px;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
}

.ic-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ic-wrap img,
.ic-wrap svg {
  margin: 0 7px;
}

.col1,
.col2,
.col2-sp {
  display: inline-block;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.col2 {
  width: 45%;
}

.col2-sp {
  width: 49%;
  margin: 0 0.4%;
  min-width: 200px;
}

.primary-block,
.secondary-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #707070;
  padding: 0rem 1.3rem;
  height: 60px;
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  font-weight: 500;
  white-space: nowrap;
}
.primary-block:focus,
.secondary-block:focus {
  border: 1px solid #76B900;
  outline: none;
}

.secondary-block {
  border: 1px solid #707070;
  background-color: rgba(0, 0, 0, 0);
  transition: 0.2s;
  color: #fff;
}
.secondary-block.code-blcok {
  margin-right: 10px;
}

.primary-btn,
.secondary-btn,
.twm-btn,
.third-btn {
  background: #76B900;
  padding: 0.8rem 1.3rem;
  text-align: center;
  margin: 0 15px;
  position: relative;
  overflow: hidden;
  font-weight: 500;
}
.primary-btn.login-btn,
.secondary-btn.login-btn,
.twm-btn.login-btn,
.third-btn.login-btn {
  padding: 0.8rem 1.3rem;
}
.primary-btn span,
.primary-btn svg,
.secondary-btn span,
.secondary-btn svg,
.twm-btn span,
.twm-btn svg,
.third-btn span,
.third-btn svg {
  position: relative;
  z-index: 2;
}
.primary-btn::before,
.secondary-btn::before,
.twm-btn::before,
.third-btn::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0px;
  right: 0px;
  bottom: 0px;
  background: rgb(105, 166, 12);
  transform-origin: right;
  transition: 0.3s ease-in-out;
  z-index: 0;
}
.primary-btn:hover::before,
.secondary-btn:hover::before,
.twm-btn:hover::before,
.third-btn:hover::before {
  width: 100%;
}
.primary-btn.account-center-opener,
.secondary-btn.account-center-opener,
.twm-btn.account-center-opener,
.third-btn.account-center-opener {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px 10px;
  margin: 0;
}
.primary-btn.account-center-opener:hover::before,
.secondary-btn.account-center-opener:hover::before,
.twm-btn.account-center-opener:hover::before,
.third-btn.account-center-opener:hover::before {
  display: none;
}
.primary-btn[disabled],
.secondary-btn[disabled],
.twm-btn[disabled],
.third-btn[disabled] {
  pointer-events: none;
  color: #999;
}
.primary-btn.full,
.secondary-btn.full,
.twm-btn.full,
.third-btn.full {
  margin: 0;
}

.secondary-btn {
  border: 1px solid #76B900;
  background-color: rgba(0, 0, 0, 0);
  transition: 0.2s;
}
.secondary-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.secondary-btn::before {
  display: none;
}
.secondary-btn.qs {
  width: calc(100% - 32px);
  margin: 16px auto;
  max-width: 1000px;
  background: #000;
  font-style: 20px;
}
.secondary-btn.qs .title {
  font-size: 24px;
  margin: 32px 0;
}

.twm-btn {
  background-color: #F68428;
  border: none;
}
.twm-btn::before {
  background-color: rgb(214, 117, 37);
}

.third-btn {
  background-color: #555555;
}
.third-btn:hover {
  filter: brightness(1.1);
}
.third-btn::before {
  display: none;
}

.wrapper {
  padding-top: 80px;
  max-width: 100vw;
  overflow: hidden;
}

nav {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}

.nav-items-wrap {
  text-align: right;
  position: relative;
  flex: 0.8;
}
.nav-items-wrap ul {
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.nav-items-wrap ul.m-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: #000;
  z-index: -1;
  text-align: center;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
  padding-bottom: 10px;
}
.nav-items-wrap ul.m-menu a {
  display: block;
}
.nav-items-wrap ul.m-menu a li.nav-item {
  width: 100%;
  transition: 0.3s;
  line-height: 55px;
}
.nav-items-wrap ul.m-menu a li.nav-item:hover {
  background: #222;
}
.nav-items-wrap ul li {
  display: inline-block;
  font-weight: 500;
  padding: 0 16px;
}
.nav-items-wrap ul li.nav-item {
  transition: 0.3s;
  line-height: 80px;
}
.nav-items-wrap ul li.nav-item.active, .nav-items-wrap ul li.nav-item:hover {
  background: #76B900;
}
.nav-items-wrap ul li.primary-btn {
  margin-right: 0;
}
.nav-items-wrap ul a {
  position: relative;
}

/* Icon 2 */
#nav-icon2 {
  width: 24px;
  height: 24px;
  position: relative;
  margin: 0 auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: none;
}

#nav-icon2 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 50%;
  background: #fff;
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-icon2 span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

#nav-icon2 span:nth-child(odd) {
  left: 0px;
  border-radius: 9px 0 0 9px;
}

#nav-icon2 span:nth-child(1),
#nav-icon2 span:nth-child(2) {
  top: 0px;
}

#nav-icon2 span:nth-child(3),
#nav-icon2 span:nth-child(4) {
  top: 10px;
}

#nav-icon2 span:nth-child(5),
#nav-icon2 span:nth-child(6) {
  top: 20px;
}

#nav-icon2.open span:nth-child(1),
#nav-icon2.open span:nth-child(6) {
  transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2),
#nav-icon2.open span:nth-child(5) {
  transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
  left: 5px;
  top: 8px;
}

#nav-icon2.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 8px;
}

#nav-icon2.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
  left: 5px;
  top: 14px;
}

#nav-icon2.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 14px;
}

.option-wrap {
  position: relative;
}

#accountOption {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 20px);
  background-color: #222;
  width: 100%;
  text-align: center;
}
#accountOption .nav-item {
  display: inline-block !important;
  width: 100%;
  line-height: 70px;
}
#accountOption a {
  display: block;
}
#accountOption li {
  width: 100%;
}

/*
-----
舞台區
-----
*/
.section {
  width: 100%;
  background: #222 url("../img/gfn-overview-kv-bg-mp4-desktop.png");
  background-repeat: repeat-x;
  background-position: center top;
  text-align: center;
  background-size: auto 100vh;
  background-repeat: no-repeat;
  background-color: #000;
  line-height: 1.5;
  position: relative;
  padding: 4.7vw 0;
  z-index: 0;
}
.section#notFound {
  background-image: none;
  background-color: #efefef;
  color: #222;
  font-size: 32px;
  line-height: 1.5;
}
.section#notFound .section-title {
  font-size: 48px;
}
.section#notFound::before, .section#notFound::after {
  display: none;
}
.section#receipt .section-panel {
  text-align: left;
}
.section#receipt .q-title {
  color: #999;
}
.section#receipt .fixed {
  background-color: #444;
  border: none;
  height: 48px;
  font-size: 16px;
  padding: 0 15px;
  margin-bottom: 20px;
}
.section#receipt .primary_input-wrap {
  margin: 20px 0;
}
.section.bk {
  background: #000;
  margin: 0;
}
.section#systemRequire {
  background-size: cover;
}
.section#pricing {
  background-position: center top;
  background-size: contain;
}
.section#pricingTitanium {
  background: #000;
}
.section#qa {
  background: #000;
}
.section#newsArticle {
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #000;
  line-height: 1.5;
  padding-top: 0;
}
.section#newsArticle .section-title,
.section#newsArticle .section-inner {
  text-align: center;
  width: calc(100% - 32px);
  max-width: 1000px;
  margin: 0 auto;
}

.section::after,
.section4::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to top, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0));
  z-index: -1;
}

.section-inner {
  width: 100%;
}
.section-inner.article h1,
.section-inner.article h2,
.section-inner.article h3,
.section-inner.article h4,
.section-inner.article h5,
.section-inner.article h6,
.section-inner.article p,
.section-inner.article a,
.section-inner.article img,
.section-inner.article video,
.section-inner.article iframe {
  margin: 32px 0;
  line-height: 2;
  text-align: left;
}
.section-inner.article img {
  display: inline-block;
  width: 100%;
}
.section-inner.article em {
  color: #76B900;
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
}
.section-inner.article table {
  width: 100%;
  border: 1px solid #222;
}
.section-inner.article table ul {
  text-align: left;
  list-style-type: disc;
  padding-left: 20px;
}
.section-inner.article th,
.section-inner.article td {
  padding: 16px;
  border: 1px solid #222;
}
.section-inner.article th {
  background-color: #76B900;
  font-weight: 600;
}
.section-inner.article td:first-child {
  background-color: #555555;
  vertical-align: middle;
}
.section-inner.article td {
  background-color: #333;
}
.section-inner.article p {
  text-align: left;
}
.section-inner.article p a,
.section-inner.article ol a {
  margin: 0;
}
.section-inner.article ol {
  list-style-type: decimal;
  padding-left: 20px;
}
.section-inner.article ol,
.section-inner.article li {
  text-align: left;
}
.section-inner.article ol a,
.section-inner.article li a {
  margin: 0;
}
.section-inner.article .tg {
  font-size: 24px;
  font-weight: 700;
}

.section-panel {
  margin: 0 auto;
  width: 95%;
  max-width: 500px;
  background-color: #333;
  padding: 30px;
  line-height: 34px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.section-panel .ic-wrap {
  position: relative;
}
.section-panel .crown {
  display: inline-block;
  height: 20px;
}
.section-panel .btn {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin: 12px 0;
  overflow: initial;
}
.section-panel .secondary-btn {
  margin: 32px 0;
}
.section-panel .secondary-btn:hover .tooltip {
  display: block;
}
.section-panel .em {
  font-weight: 700;
  margin-bottom: 24px;
}
.section-panel .visa,
.section-panel .mastercard,
.section-panel .jcb {
  margin: 2px;
  z-index: 2;
}
.section-panel .visa {
  margin-left: 10px;
}
.section-panel.nav {
  padding: 0;
  margin-bottom: 24px;
}
.section-panel.sys:not(#winpc) {
  display: none;
}

.tooltip {
  position: absolute;
  left: calc(100% + 64px);
  top: -0.8rem;
  height: auto;
  width: 100%;
  max-width: 280px;
  z-index: 10;
  background-color: #333;
  text-align: left;
  border-right: 5px solid #76B900;
  display: none;
}
.tooltip p:not(:last-child) {
  margin: 0 0 15px 0;
}

.tooltip-container {
  padding: 24px;
  position: relative;
  height: 100%;
  width: 100%;
}
.tooltip-container::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  left: -23px;
  border-style: solid;
  border-width: 18px 23px 18px 0;
  border-color: rgba(0, 0, 0, 0) #333 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}
.tooltip-container .em {
  color: #76B900;
  font-weight: 700;
}

.receipt {
  padding: 15px;
  margin: 32px 0 15px 0;
  background-color: #555555;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
  text-align: left;
  line-height: 1.5;
}

.receipt-logo {
  width: 211px;
  height: 36px;
  background-image: url(../img/logo.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 10px;
}

.receipt-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.receipt-close {
  position: absolute;
  top: 0px;
  right: 5px;
  font-size: 24px;
  color: #999;
}

.receipt-title {
  display: block;
  color: #999;
  font-size: 14px;
}

.receipt-item-wrap {
  padding: 7px 15px;
}

.section1 {
  position: relative;
  width: 100%;
  height: 750px;
  background: #222 url("../img/gfn-overview-kv-bg-mp4-desktop.png");
  background-repeat: repeat-x;
  background-position: center top;
  top: 0px;
  overflow: hidden;
}

#gfn-video-bg {
  position: relative;
  width: 2560px;
  height: 750px;
  margin: 0 auto;
  display: block;
  text-align: center;
}

#gfn-video-loop {
  width: 100vw;
  height: 880px;
  float: left;
  z-index: 0;
  display: block;
  text-align: center;
  margin-left: calc(50% - 1280px);
}

#key-visual-content {
  position: relative;
  width: 100%;
  height: auto;
  left: 0px;
}

/*
-----
首頻Slogan
-----
*/
#key-visual-text {
  position: relative;
  width: 1025px;
  margin: 0 auto;
}

#the-power-to-play-h1 {
  position: absolute;
  width: 100%;
  max-width: 480px;
  top: 100px;
  right: -80px;
  font-family: "Noto Sans TC";
  font-weight: 700;
  font-size: 56px;
  line-height: 1.5em;
  text-transform: uppercase;
  text-align: right;
  margin: 0 auto;
  padding: 0;
  padding-top: 108px;
  padding-bottom: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

#key-visual-text .button {
  position: absolute;
  font-family: "Noto Sans TC";
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  background-color: #76b900;
  float: right;
  /* display: none; */
  white-space: nowrap;
}

#button-join {
  width: auto;
  top: 480px;
  right: 0;
  cursor: pointer;
  z-index: 9;
}

.tpt-left {
  text-align: left;
}

.tpt-mid {
  text-align: center;
  font-size: 36px;
}

/*
------
多邊形特區
------
*/
#hexagons {
  position: relative;
  width: 1025px;
  height: 750px;
  top: 0px;
  left: 0px;
  margin: 0 auto;
}

.hex-lg {
  width: 688px;
  height: 688px;
}

.hex-m1 {
  width: 448px;
  height: 448px;
}

.hex-sm {
  width: 352px;
  height: 352px;
}

.hex-md {
  width: 448px;
  height: 448px;
}

#hexagon-1 {
  position: absolute;
  top: 310px;
  left: 170px;
}

#hex-1-shadow {
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url(https://www.nvidia.com/content/dam/en-zz/Solutions/gfn/webassets/overview/kv/fg-content-hex1-shadow.png);
  pointer-events: none;
  background-position: center center;
  background-size: cover;
}

#gfn-video-clip-1 {
  position: absolute;
  width: 272px;
  height: 272px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
  top: 88px;
  left: 87px;
  opacity: 1;
  clip-path: polygon(204px 18.22px, 68px 18.22px, 0px 136px, 68px 253.78px, 204px 253.78px, 272px 136px, 204px 18.22px);
  /* clip-path: url(#gfn-video-msk-1-LDU); */
  margin: 0;
  pointer-events: none;
}

#hex-1-crop {
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url(https://www.nvidia.com/content/dam/en-zz/Solutions/gfn/webassets/overview/kv/fg-content-hex1-crop.png);
  pointer-events: none;
  background-position: center center;
  background-size: cover;
}

#c1 {
  position: absolute;
  top: 88px;
  left: 86px;
  margin: 0 auto;
  width: 272px;
  height: 272px;
  z-index: 0;
  visibility: hidden;
}

#hex-1-stroke-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url(https://www.nvidia.com/content/dam/en-zz/Solutions/gfn/webassets/overview/kv/fg-content-hex1-stroke-overlay.png);
  opacity: 0.5;
  pointer-events: none;
  background-position: center center;
  background-size: cover;
}

#hex-1-flares-add {
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url(https://www.nvidia.com/content/dam/en-zz/Solutions/gfn/webassets/overview/kv/fg-content-hex1-flares-add.png);
  pointer-events: none;
  background-position: center center;
  background-size: cover;
}

#hexagon-2 {
  position: absolute;
  left: -310px;
  top: 63px;
}

#hex-2-shadow {
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url(https://www.nvidia.com/content/dam/en-zz/Solutions/gfn/webassets/overview/kv/fg-content-hex2-shadow.png);
  pointer-events: none;
  background-position: center center;
  background-size: cover;
}

#hex-2-crop {
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url(https://www.nvidia.com/content/dam/en-zz/Solutions/gfn/webassets/overview/kv/fg-content-hex2-crop.png);
  pointer-events: none;
  background-position: center center;
  background-size: cover;
}

#gfn-video-clip-2 {
  position: absolute;
  width: 525px;
  height: 525px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  top: 82px;
  left: 82px;
  opacity: 1;
  clip-path: url(#gfn-video-msk-2-LDU);
  margin: 0;
  pointer-events: none;
}

#c2 {
  position: absolute;
  top: 80px;
  left: 82px;
  margin: 0 auto;
  width: 525px;
  height: 525px;
  z-index: 0;
  visibility: hidden;
}

#hex-2-stroke-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url(https://www.nvidia.com/content/dam/en-zz/Solutions/gfn/webassets/overview/kv/fg-content-hex2-stroke-overlay.png);
  opacity: 0.5;
  pointer-events: none;
  background-position: center center;
  background-size: cover;
}

#hex-2-flares-add {
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url(https://www.nvidia.com/content/dam/en-zz/Solutions/gfn/webassets/overview/kv/fg-content-hex2-flares-add.png);
  pointer-events: none;
  background-position: center center;
  background-size: cover;
}

#hexagon-3 {
  position: absolute;
  top: 220px;
  left: 400px;
}

#hex-3-shadow {
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url(https://www.nvidia.com/content/dam/en-zz/Solutions/gfn/webassets/overview/kv/fg-content-hex3-shadow.png);
  pointer-events: none;
  background-position: center center;
  background-size: cover;
}

#hex-3-crop {
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url(https://www.nvidia.com/content/dam/en-zz/Solutions/gfn/webassets/overview/kv/fg-content-hex3-crop.png);
  pointer-events: none;
  background-position: center center;
  background-size: cover;
}

#gfn-video-clip-3 {
  position: absolute;
  width: 178px;
  height: 178px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
  top: 88px;
  left: 88px;
  opacity: 1;
  clip-path: polygon(132px 11px, 44px 11px, 0px 88px, 44px 166px, 132px 166px, 178px 88px, 132px 11px);
  /* clip-path: url(#gfn-video-msk-3-LDU); */
  margin: 0;
  pointer-events: none;
}

#c3 {
  position: absolute;
  top: 87.5px;
  left: 87.5px;
  margin: 0 auto;
  width: 180px;
  height: 180px;
  z-index: 0;
  visibility: hidden;
}

#hex-3-stroke-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url(https://www.nvidia.com/content/dam/en-zz/Solutions/gfn/webassets/overview/kv/fg-content-hex3-stroke-overlay.png);
  opacity: 0.5;
  pointer-events: none;
  background-position: center center;
  background-size: cover;
}

#hex-3-flares-add {
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url(https://www.nvidia.com/content/dam/en-zz/Solutions/gfn/webassets/overview/kv/fg-content-hex3-flares-add.png);
  pointer-events: none;
  background-position: center center;
  background-size: cover;
}

#hexagon-4 {
  position: absolute;
  top: 50px;
  left: 170px;
}

#hex-4-shadow {
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url(https://www.nvidia.com/content/dam/en-zz/Solutions/gfn/webassets/overview/kv/fg-content-hex4-shadow.png);
  pointer-events: none;
  background-position: center center;
  background-size: cover;
}

#hex-4-crop {
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url(https://www.nvidia.com/content/dam/en-zz/Solutions/gfn/webassets/overview/kv/fg-content-hex4-crop.png);
  pointer-events: none;
  background-position: center center;
  background-size: cover;
  background-position: center center;
  background-size: cover;
}

#gfn-video-clip-4 {
  position: absolute;
  width: 274px;
  height: 274px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  top: 87px;
  left: 87px;
  opacity: 1;
  clip-path: polygon(205.5px 18.36px, 68.5px 18.36px, 0px 137px, 68.5px 255.65px, 205.5px 255.65px, 274px 137px, 205.5px 18.36px);
  /* clip-path: url(#gfn-video-msk-4-LDU); */
  margin: 0;
  pointer-events: none;
}

#c4 {
  position: absolute;
  top: 86px;
  left: 86px;
  margin: 0 auto;
  width: 274px;
  height: 274px;
  z-index: 0;
  visibility: hidden;
}

#hex-4-stroke-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url(https://www.nvidia.com/content/dam/en-zz/Solutions/gfn/webassets/overview/kv/fg-content-hex4-stroke-overlay.png);
  opacity: 0.5;
  pointer-events: none;
  background-position: center center;
  background-size: cover;
}

#hex-4-flares-add {
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url(https://www.nvidia.com/content/dam/en-zz/Solutions/gfn/webassets/overview/kv/fg-content-hex4-flares-add.png);
  pointer-events: none;
  background-position: center center;
  background-size: cover;
}

/*
-----
跑馬燈
-----
*/
#captionForGFN {
  position: relative;
}
#captionForGFN .content {
  margin: 0 auto;
  width: 95%;
}

.carousel-section {
  position: absolute;
  top: -40px;
  height: 80px;
  width: 100%;
  margin: 0 auto;
}

#news-carousel {
  background: #222;
  border-left: 5px solid #76B900;
  border-right: 5px solid #76B900;
  width: 95%;
  max-width: 800px;
  height: 80px;
  margin: 0 auto;
}
#news-carousel .item {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
#news-carousel .tt {
  white-space: nowrap;
}
#news-carousel .tt .en {
  font-weight: 700;
  color: #fff;
}
#news-carousel .tt .zh {
  font-weight: 700;
  color: #76B900;
  margin: 0 5px;
}
#news-carousel .divi {
  color: #666;
  margin: 0 15px;
}
#news-carousel .date {
  color: #666;
  font-weight: 400;
  margin: 0 5px;
}
#news-carousel .content {
  margin: 0 5px;
  text-align: left;
  width: auto;
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*
------
技術支持敘述
------
*/
#captionForGFN {
  background: #000;
  padding: 7vw 0 4vw;
  text-align: center;
}
#captionForGFN h1 {
  font-size: 32px;
  font-weight: 600;
}
#captionForGFN p {
  text-align: center;
  width: 95%;
  max-width: 600px;
  margin: 40px auto;
  line-height: 2;
}
#captionForGFN svg {
  margin: 0 10px;
}
#captionForGFN .more {
  color: #76B900;
}
#captionForGFN .more .en {
  font-weight: 700;
}

/*
------
遊戲列表
------
*/
@keyframes rollDown {
  50% {
    background-position: 0 1077.5px;
  }
}
@keyframes rollUp {
  50% {
    background-position: 0 -1077.5px;
  }
}
#gamesList {
  background: #fff;
  position: relative;
  overflow: hidden;
  text-align: right;
}
#gamesList .container {
  height: 100%;
  width: 100%;
  padding: 4.7vw 5vw;
  color: #76B900;
}
#gamesList .game-wrap {
  position: absolute;
  top: -15vw;
  left: -25vw;
  transform-origin: center center;
  transform: rotate(-30deg) translateX(-4vw);
  width: 80%;
  height: 100%;
}
#gamesList .game-wrap.image {
  transform: rotate(0);
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  overflow: hidden;
}
#gamesList .game-wrap.image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#gamesList .game-wrap .g {
  display: inline-block;
  width: 20%;
  height: 2155px;
  margin: 0 2px;
  background-repeat: repeat;
  background-size: contain;
}
#gamesList .game-wrap .g1 {
  background-image: url(../img/col1.png);
  animation: rollDown 60s linear infinite;
  background-position: bottom;
}
#gamesList .game-wrap .g2 {
  background-image: url(../img/col2.png);
  animation: rollUp 60s linear infinite;
  background-position: top;
}
#gamesList .game-wrap .g3 {
  background-image: url(../img/col3.png);
  animation: rollDown 60s linear infinite;
  background-position: bottom;
}
#gamesList .game-wrap .g4 {
  background-image: url(../img/col4.png);
  animation: rollUp 60s linear infinite;
  background-position: top;
}
#gamesList .caption span {
  display: inline-block;
}
#gamesList .caption h1 {
  font-size: 32px;
  font-weight: 500;
  margin: 10px 0;
}
#gamesList .caption h1 .en {
  font-weight: 700;
  display: inline;
}
#gamesList .caption h1 span {
  max-width: 37%;
}
#gamesList .caption p {
  font-size: 20px;
  line-height: 1.5;
}
#gamesList .caption p span {
  max-width: 32%;
}
#gamesList .caption .sub {
  color: #999;
  font-size: 16px;
  margin: 24px 0;
}
#gamesList .caption .sub span {
  display: inline-block;
  max-width: 24%;
}
#gamesList .caption .primary-btn {
  margin: 0;
}

/*
-----
價格方案
-----
*/
#mpricingCarousel,
#mtimeCarousel {
  display: none;
}

#pricing {
  background-image: url(../img/gfn-overview-kv-bg-mp4-desktop.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 2vw 0;
  text-align: center;
  position: relative;
}

#wpricingCarousel .owl-stage {
  display: flex;
}

.pricing-title,
.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 3vw;
}
.pricing-title .en,
.section-title .en {
  font-weight: 700;
}
.pricing-title .zh,
.section-title .zh {
  font-weight: 600;
  color: #76B900;
}

.pricing-title {
  margin-bottom: 1vw;
}

.pricing-panel-wrap {
  margin: 0 auto;
}
.pricing-panel-wrap .panel-item {
  position: relative;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  line-height: 1.6;
  border: 1px solid #333;
  width: 100%;
  max-width: 350px;
  min-width: 300px;
  height: auto;
  background: #333;
  padding: 32px 15px;
  vertical-align: middle;
  text-align: center;
  box-shadow: 3px 0px 15px rgba(0, 0, 0, 0.5);
  transition: 0.2s;
}
.pricing-panel-wrap .panel-item[disabled] {
  pointer-events: none;
}
.pricing-panel-wrap .panel-item:hover {
  border-color: #76B900;
}
.pricing-panel-wrap .panel-item .wrapper {
  position: absolute;
  z-index: 10;
  top: -35px;
  left: calc(50% - 30px);
}
.pricing-panel-wrap .panel-item .title .en {
  font-size: 14px;
  margin: 10px;
}
.pricing-panel-wrap .panel-item .title .zh {
  font-size: 24px;
  font-weight: 500;
}
.pricing-panel-wrap .panel-item .divi {
  display: block;
  height: 1px;
  min-height: 1px;
  width: 3vw;
  min-width: 100px;
  background: #707070;
  margin: 24px auto;
}
.pricing-panel-wrap .panel-item .cost {
  color: #76B900;
}
.pricing-panel-wrap .panel-item .cost .sub {
  margin: 8px;
}
.pricing-panel-wrap .panel-item .cost-wrap .origin {
  color: #fff;
  text-decoration: line-through;
  font-weight: 300;
}
.pricing-panel-wrap .panel-item .cost-wrap .arr {
  color: #fff;
  margin: 0 5px;
}
.pricing-panel-wrap .panel-item .cost-wrap .discount {
  font-weight: 600;
}
.pricing-panel-wrap .panel-item .ic-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  margin: 15px 0;
}
.pricing-panel-wrap .panel-item .ic-wrap svg {
  margin: 0 8px;
  color: #76B900;
}
.pricing-panel-wrap .panel-item .sub {
  color: #999;
  font-size: 14px;
  font-weight: 300;
}
.pricing-panel-wrap .panel-item .crown {
  position: absolute;
  z-index: 10;
  top: -35px;
  left: calc(50% - 30px);
  height: 50px;
  width: 60px;
  background-image: url(../img/crown.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.pricing-alert {
  font-size: 12px;
  width: 95%;
  max-width: 1290px;
  margin: 0 auto;
  line-height: 2;
  padding: 32px 0;
}

/*
-----
公開橫幅
-----
*/
#bannerGame {
  background-image: url(../img/hero-banner-platform-2560x770-d.jpg);
  background-size: cover;
  background-position: center;
  height: 600px;
  width: 100%;
}
#bannerGame .container {
  position: relative;
  width: 95%;
  margin: 0 auto;
  max-width: 912px;
  padding: 4.7vw 0;
  height: 100%;
}
#bannerGame .caption-text {
  position: absolute;
  font-size: 24px;
  font-weight: 600;
  line-height: 2;
  padding: 0 15px;
  filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.5));
}
#bannerGame .caption-text .line1 {
  padding-right: 3vw;
}
#bannerGame .caption-text .line2 {
  text-align: center;
}
#bannerGame .caption-text.bottom {
  font-size: 16px;
  font-weight: normal;
  bottom: 16px;
  left: calc(50% - 200px);
  width: 100%;
}

/*
-----
下載通道
-----
*/
.download-item-wrap .ic-img.adtv {
  background-image: url(../img/androidTV.svg);
  width: 148px;
  height: 102px;
}

#downloadPath {
  background: #000;
}
#downloadPath .container {
  width: 95%;
  max-width: 780px;
  margin: 0 auto;
  padding: 4.7vw 0;
}
#downloadPath .title {
  text-align: center;
  font-size: 32px;
  margin: 0 0 4.7vw 0;
}
#downloadPath .title .en {
  font-weight: 700;
}

.download-item-wrap {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
.download-item-wrap .item {
  display: inline-flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.download-item-wrap .ic-img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.download-item-wrap .ic-img.win {
  background-image: url(../img/win.svg);
  width: 168px;
  height: 95px;
}
.download-item-wrap .ic-img.mac {
  background-image: url(../img/mac.svg);
  width: 145px;
  height: 102px;
}
.download-item-wrap .ic-img.android {
  background-image: url(../img/android.svg);
  width: 145px;
  height: 100px;
}
.download-item-wrap .ic-title {
  font-size: 32px;
  font-weight: lighter;
  margin: 20px 0;
}

/*
-----
開始玩遊戲
-----
*/
#downloadMethod {
  background-image: url(../img/gfn-overview-kv-bg-mp4-desktop.png);
  background-size: cover;
}
#downloadMethod .container {
  width: 95%;
  max-width: 656px;
  margin: 0 auto;
  padding: 4.7vw 0;
  text-align: center;
}

.step-item-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.step-item-wrap .item {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.step-item-wrap .item .num {
  font-size: 32px;
  font-weight: 700;
  font-family: "GeForce";
  color: #76B900;
  margin-bottom: 50px;
  filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.5));
}
.step-item-wrap .item .ic-img {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 20px;
  filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.5));
}
.step-item-wrap .item .ic-img.account {
  background-image: url(../img/icon-account.svg);
  width: 75px;
  height: 75px;
}
.step-item-wrap .item .ic-img.install {
  background-image: url(../img/icon-download.svg);
  width: 75px;
  height: 75px;
}
.step-item-wrap .item .ic-img.connect {
  background-image: url(../img/steam.svg);
  width: 75px;
  height: 75px;
}

.step-arr {
  background-image: url(../img/step-arr.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 121px;
  height: 18px;
  position: relative;
  bottom: -30px;
  filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.5));
}

/*
-----
底部額外連結
-----
*/
.divi-wide {
  width: 90%;
  max-width: 1290px;
  margin: 0 auto;
  background: #222;
  height: 1px;
}
.divi-wide.g60 {
  background: #666;
  margin: 50px auto;
}
.divi-wide.hyper {
  margin: 100px 0;
}

#preFooter {
  background: #000;
}
#preFooter .container {
  width: 95%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 4.7vw 0;
}

.option-item-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.option-item-wrap .ic-wrap {
  display: flex;
  align-items: center;
}
.option-item-wrap .ic-img {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 20px 0 0;
}
.option-item-wrap .ic-img.system {
  background-image: url(../img/icon-sys-req.svg);
  width: 70px;
  height: 70px;
}
.option-item-wrap .ic-img.faq {
  background-image: url(../img/icon-faqs.svg);
  width: 70px;
  height: 70px;
}
.option-item-wrap .ic-img.service {
  background-image: url(../img/icon-server.svg);
  width: 56px;
  height: 69px;
}
.option-item-wrap .tt {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 10px;
}
.option-item-wrap .more {
  color: #76B900;
}
.option-item-wrap .more .txt {
  margin-bottom: 5px;
}
.option-item-wrap.hyper {
  font-size: 20px;
  margin-bottom: 50px;
}
.option-item-wrap.hyper .divi-verti {
  height: 45px;
  width: 1px;
  min-width: 1px;
  background-color: #666;
}
.option-item-wrap.hyper img {
  margin: 20px 0;
}

.multi-item-wrap {
  display: flex;
  justify-content: center;
  padding: 4.7vw 0;
}
.multi-item-wrap .multi-item {
  margin: 0 32px;
}
.multi-item-wrap .multi-item .title {
  font-size: 24px;
  font-weight: 500;
}
.multi-item-wrap .multi-item .title .en {
  font-weight: 700;
}
.multi-item-wrap .multi-item .divi {
  background: #666;
  height: 1px;
  width: 300px;
  margin: 24px 0;
}
.multi-item-wrap .multi-item .multi-link-wrap {
  display: flex;
}
.multi-item-wrap .multi-item .multi-link-wrap .col {
  flex: 1;
  display: inline-flex;
  flex-direction: column;
}
.multi-item-wrap .multi-item .multi-link-wrap .col .multi-link {
  color: #76B900;
  font-weight: 300;
  margin: 15px 0;
}

/*
-----
Footer
-----
*/
footer {
  background-color: #222;
}
footer .container {
  width: 95%;
  max-width: 1290px;
  margin: 0 auto;
  padding: 50px 0;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-nav {
  display: flex;
  align-items: center;
}

.logo {
  margin-right: 50px;
  height: 45px;
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

a.footer-link {
  white-space: nowrap;
  color: #666;
  margin: 0 12px;
}
a.footer-link:hover {
  filter: brightness(1.1);
}

.copy-right {
  text-align: center;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
}

.copyright.hyper {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  text-align: center;
}

.social-ic {
  margin: 0 5px;
  transition: 0.2s;
}
.social-ic:hover {
  filter: brightness(1.1);
}

/*
--------------
Admin Deck
--------------
*/
.admin-wrapper {
  width: 100%;
  background: #222 url(../img/gfn-overview-kv-bg-mp4-desktop.png);
  background-repeat: repeat-x;
  background-position: center top;
  text-align: center;
  background-size: auto 100vh;
  background-repeat: no-repeat;
  background-color: #000;
  line-height: 1.5;
  position: relative;
  padding: 4.7vw 0;
  z-index: 0;
}
.admin-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-image: linear-gradient(to top, #000, rgba(0, 0, 0, 0));
}

.admin-container {
  width: 100%;
  height: 100%;
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  padding: 50px 0;
}

.admin-inner-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
}

.admin-side-menu,
.admin-showing-panel {
  display: inline-block;
  width: 25%;
  min-height: 700px;
  max-width: 320px;
  margin: 0 16px;
  background-color: #333;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  position: relative;
}
.admin-side-menu .ic-wrap,
.admin-showing-panel .ic-wrap {
  display: block;
  width: 100%;
  position: relative;
}

.admin-showing-panel {
  width: 75%;
  max-width: 1014px;
}

.admin-showing-panel-title {
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  font-size: 18px;
  font-weight: 500;
}
.admin-showing-panel-title div {
  position: relative;
  background-color: #76B900;
  height: 60px;
  width: 9vw;
  min-width: 150px;
  padding: 15px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-showing-panel-title div::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: 0;
  height: 0;
  border-top: 60px solid #76B900;
  border-right: 40px solid rgba(0, 0, 0, 0);
}

.admin-side-menu-title {
  padding: 20px;
}
.admin-side-menu-title .ic-wrap {
  display: inline-flex;
  justify-content: flex-start;
}

.admin-slide-menu-item {
  width: 100%;
  padding: 0px 24px;
  height: 64px;
  border-left: 5px solid rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
}
.admin-slide-menu-item:hover, .admin-slide-menu-item.active, .admin-slide-menu-item:active {
  display: flex;
  background-color: #222;
}
.admin-slide-menu-item.active {
  border-left: 5px solid #76B900;
}
.admin-slide-menu-item svg {
  margin-right: 5px;
  font-size: 14px;
}
.admin-slide-menu-item .ic-clip {
  display: inline-flex;
  align-items: center;
  justify-items: center;
  height: 16px;
  width: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 5px;
}

.admin-showing-panel_content-container {
  position: relative;
}
.admin-showing-panel_content-section {
  padding: 60px 32px 32px 32px;
  line-height: 1.5;
}
.admin-showing-panel_content-title {
  margin: 32px 0;
}
.admin-showing-panel_content-item-wrap {
  width: 100%;
  margin: 24px 0px;
  white-space: nowrap;
  line-height: 48px;
}
.admin-showing-panel_content-item-wrap.record {
  margin: 10px 0;
  font-size: 14px;
  line-height: 48px;
  white-space: nowrap;
}
.admin-showing-panel_content-item-wrap.record tr {
  white-space: nowrap;
}
.admin-showing-panel_content-item-wrap.record th,
.admin-showing-panel_content-item-wrap.record td {
  padding: 0 20px;
}
.admin-showing-panel_content-item-wrap.record .td {
  position: relative;
}
.admin-showing-panel_content-item-wrap.record tr:nth-child(even) td {
  background-color: #444;
}
.admin-showing-panel_content-item-wrap.record th {
  color: #999;
  text-align: left;
}
.admin-showing-panel_content-item-wrap.qa tr:nth-child(even) td,
.admin-showing-panel_content-item-wrap.qa tr:nth-child(odd) td {
  background-color: #444;
}
.admin-showing-panel_content-item-wrap.qa tr.answer-section {
  display: none;
}
.admin-showing-panel_content-item-wrap.qa tr.answer-section td {
  background-color: #222;
}
.admin-showing-panel_content-item:not(:last-child) {
  margin-bottom: 24px;
}
.admin-showing-panel_content-sub-title, .admin-showing-panel_content-txt {
  white-space: initial;
  display: inline-block;
  position: relative;
  vertical-align: top;
}
.admin-showing-panel_content-sub-title div, .admin-showing-panel_content-txt div {
  margin: 24px 0;
}
.admin-showing-panel_content-sub-title {
  width: 15%;
  min-width: 120px;
  color: #999;
  text-align: right;
  white-space: nowrap;
  margin-right: 24px;
}
.admin-showing-panel_content-txt {
  width: calc(100% - 150px);
}
.admin-showing-panel_content-navtab {
  padding: 24px 2vw 19px 2vw;
  border-bottom: 5px solid rgba(0, 0, 0, 0);
  transition: 0.2s;
}
.admin-showing-panel_content-navtab.active {
  border-bottom-color: #76B900;
}
.admin-showing-panel_content-navtab.active:hover {
  border-bottom-color: rgb(105, 166, 12);
}
.admin-showing-panel_content-navtab:hover {
  border-bottom-color: #666;
}

.receipt_popup {
  position: fixed;
  height: auto;
  width: 100%;
  max-width: 26vw;
  min-width: 320px;
  top: 200px;
  left: calc(50% - 13vw);
  display: none;
}

.edit-btn,
a.receipt-link {
  color: #76B900;
  margin-left: 5px;
}
.edit-btn:hover,
a.receipt-link:hover {
  color: rgb(105, 166, 12);
}

a.receipt-link {
  margin: 0;
}

.navigation {
  width: 100%;
  margin: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation a {
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation a.active {
  background-color: #76B900;
}
.navigation a.disabled {
  color: #999;
}

/*
------
404
------
*/
.notfound-kv {
  width: 100%;
  background-image: url(../img/nv-web-404-robot-625-t.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 257px;
  max-width: 625px;
  margin: 0 auto;
}

.notfound-kv-txt {
  margin: 32px 0;
}

/*
------
Custom Select
------
*/
.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #efefef;
  width: 100%;
  height: 48px;
}

.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #444;
  display: flex;
  align-items: center;
  padding: 0 15px;
}
.select-styled:after {
  content: "";
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-color: #76B900 transparent transparent transparent;
  position: absolute;
  top: 20px;
  right: 10px;
}
.select-styled:hover {
  background-color: rgb(62.9, 62.9, 62.9);
}
.select-styled:active, .select-styled.active {
  background-color: rgb(55.25, 55.25, 55.25);
}
.select-styled:active:after, .select-styled.active:after {
  top: 13px;
  border-color: transparent transparent #76B900 transparent;
}

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: rgb(55.25, 55.25, 55.25);
}
.select-options li {
  margin: 0;
  padding: 12px 0;
  text-indent: 15px;
  border-top: 1px solid rgb(42.5, 42.5, 42.5);
}
.select-options li:hover {
  color: #444;
  background: #efefef;
}
.select-options li[rel=hide] {
  display: none;
}

/*
--------
Custom Checkbox
--------
*/
.styled-checkbox {
  position: absolute;
  opacity: 0;
}
.styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}
.styled-checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: #222;
}
.styled-checkbox:hover + label:before {
  background: #000;
}
.styled-checkbox:focus + label:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.styled-checkbox:checked + label:before {
  background: #76B900;
}
.styled-checkbox:disabled + label {
  color: #999;
  cursor: auto;
}
.styled-checkbox:disabled + label:before {
  box-shadow: none;
  background: #999;
}

#type2,
#type3,
#type4 {
  display: none;
}

.q-title {
  margin: 12px 0;
}

textarea {
  width: 100%;
  max-width: 100%;
  max-height: 500px;
  font-size: 16px;
  padding: 12px;
  background-color: #444;
  border: 0;
  color: #efefef;
}
textarea:focus {
  outline: none;
}

.primary_input-wrap {
  position: relative;
  margin: 15px 3px;
  vertical-align: top;
}
.primary_input-wrap .comfirm-pic {
  background-color: #76B900;
  height: 50px;
  width: 150px;
  margin: 0 20px;
}
.primary_input-wrap .ic-wrap {
  display: flex;
  align-items: center;
}
.primary_input-wrap input {
  background-color: #333;
  border: 1px solid #707070;
  padding: 24px;
  font-size: 16px;
  width: 100%;
  outline: none;
  color: #fff;
  transition: 0.3s;
}
.primary_input-wrap input:focus {
  border-color: #76B900;
}
.primary_input-wrap input.err {
  border-color: #FF0000;
}
.primary_input-wrap .fa-redo {
  font-size: 32px;
  color: #999;
  transition: 0.3s;
}
.primary_input-wrap .fa-redo:hover {
  color: #fff;
}

.err-txt {
  color: #FF0000;
  text-align: right;
  float: right;
  padding: 5px 0;
}

.primary_input-title {
  position: absolute;
  z-index: 1;
  background-color: #333;
  top: -14px;
  left: 15px;
  color: #999;
  padding: 0 14px;
  transition: 0.3s;
}
.primary_input-title.focus {
  color: #fff;
}

.btn-wrap {
  margin: 0;
  text-align: center;
}
.btn-wrap a {
  display: inline-flex;
}
.btn-wrap .btn {
  margin: 15px 5px;
  padding: 0.8rem 2.3rem;
}

.answer-opener {
  text-align: right;
  position: relative;
}
.answer-opener .notify-dot {
  position: absolute;
  right: 48px;
  top: 18px;
  height: 12px;
  width: 12px;
  border-radius: 100%;
  background-color: #FF0000;
}

.answer-opener-a {
  transform: rotate(-90deg);
  transition: 0.3s;
}
.answer-opener-a.active {
  transform: rotate(0);
}

.admin-showing-panel_content-item-wrap.record .answer-section td {
  text-align: left;
  line-height: 2;
  padding: 20px;
  width: 100%;
  background-color: #222;
}

.answer-divi {
  width: 100%;
  height: 1px;
  background-color: #666;
  margin: 20px 0;
}

.self-question {
  color: #999;
  font-style: italic;
}

.section-banner-img {
  height: 0;
  width: 90%;
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  padding-top: 33%;
  background-color: #000;
}
.section-banner-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section-caption {
  text-align: left;
  line-height: 2;
  max-width: 1366px;
  width: 90%;
  margin: 44px auto 0 auto;
}

.game-list-container {
  width: 90%;
  max-width: 1366px;
  margin: 0 auto;
}

.game-list-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  list-style: disc;
  text-align: left;
  line-height: 1.6;
}
.game-list-wrapper li {
  width: calc(25% - 40px);
  min-width: 250px;
  margin: 15px 20px;
}

.section-panel-nav {
  display: flex;
  justify-content: center;
}

.section-panel-nav-tab {
  width: 33.3333333333%;
  max-width: 33.3333333333%;
  overflow: hidden;
  height: 65px;
  line-height: 65px;
  border-bottom: 3px solid transparent;
  transition: 0.2s;
}
.section-panel-nav-tab:hover {
  background-color: #222;
}
.section-panel-nav-tab.active {
  border-bottom: 3px solid #76B900;
}

.section-panel-title {
  text-align: left;
}

.section-panel-list {
  text-align: left;
  line-height: 24px;
}
.section-panel-list li.sub {
  color: #999;
  padding-left: 12px;
}

.system-item {
  margin: 10px 0;
}
.system-item:first-child {
  margin: 0;
}

.qa-dsiplay-section {
  text-align: left;
}

.qa-display-container {
  margin: 0 auto;
  width: 90%;
  max-width: 1290px;
}

.qa-title {
  font-size: 24px;
  margin: 24px 0;
}

.qa-item {
  line-height: 2;
  margin: 15px 0;
}
.qa-item .q {
  color: #76B900;
  font-weight: 500;
}
.qa-item .a {
  font-weight: 300;
}

.display-section {
  width: calc(100% - 32px);
  max-width: 1000px;
  margin: 0 auto;
  background-color: #222;
  border: 1px solid #76B900;
  padding: 32px 16px;
}
.display-section.news-list .ic-wrap {
  justify-content: flex-start;
  width: 100%;
}
.display-section.news-list ul li {
  width: 100%;
  max-width: 80%;
  margin: 24px auto;
}
.display-section.news-list ul li a.news-title {
  max-width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.display-section.news-list ul li a.news-title:hover {
  opacity: 0.8;
}

.section-anchor-nav {
  width: 90%;
  max-width: 1290px;
  margin: 0 auto;
}

.section-anchor-nav-tab {
  color: #76B900;
  font-weight: 500;
  font-size: 18px;
  margin: 20px;
  white-space: nowrap;
}
.section-anchor-nav-tab.primary-btn {
  color: #fff;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 100;
}
.modal p {
  line-height: 2;
}

.modal-container {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-closer {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-panel {
  position: relative;
  padding: 32px;
  background-color: #333;
  z-index: 1;
  border-radius: 5px;
  width: 90%;
  max-width: 400px;
}
.modal-panel.alert {
  max-width: 550px;
}

.hyper-video .modal-panel {
  max-width: 50vw;
  background-color: rgba(0, 0, 0, 0);
}

.modal-title {
  font-size: 24px;
  margin-bottom: 24px;
}

.modal-body {
  width: 100%;
}

.modal-footer {
  text-align: center;
  margin-top: 10px;
}
.modal-footer .primary-btn {
  margin: 0;
}

a.at-backer.ic-wrap {
  display: inline-flex;
  font-size: 16px;
  text-align: left;
  justify-content: flex-start;
  width: 100%;
  font-weight: 500;
  color: #76B900;
  margin: 24px 0;
}

.at-time {
  font-size: 16px;
  text-align: right;
}

.at-logo {
  max-width: 200px;
  text-align: right;
}

.chart-wrapper {
  width: calc(100% - 32px);
  max-width: 1000px;
  margin: 16px auto;
  text-align: center;
}

.chart-item {
  clip-path: polygon(0% 0%, 75% 0%, 84% 50%, 75% 100%, 0% 100%);
  width: auto;
  display: inline-block;
  padding: 24px 60px 24px 24px;
  margin: 15px 0;
  line-height: 1.5;
  vertical-align: middle;
  transform: 0.5s;
  background: #444;
}
.chart-item.result {
  clip-path: none;
  padding: 24px;
}
.chart-item.twm-bg {
  background: #F68428;
}
.chart-item.twm-bg:hover {
  pointer-events: none;
}
.chart-item:first-child {
  background-color: #76B900;
  opacity: 1;
}
.chart-item:first-child:hover {
  background: rgb(105, 166, 12);
}

/*
----------
HyperScape
----------
*/
#campBanner1,
#campBanner2,
#campBanner3 {
  background-image: url(https://www.nvidia.com/content/dam/en-zz/Solutions/GeForce/campaigns/hyper-scape-bundle/new-creative/geforce-rtx-hyper-scape-hero-2560x770-d@2x.jpg);
  background-size: cover;
  background-position: center;
  width: 100vw;
  height: 770px;
  text-align: left;
}
#campBanner1 .container,
#campBanner2 .container,
#campBanner3 .container {
  width: 95%;
  height: 100%;
  max-width: 1290px;
  margin: 0 auto;
}
#campBanner1 .en,
#campBanner2 .en,
#campBanner3 .en {
  font-weight: 700;
}
#campBanner1.bd,
#campBanner2.bd,
#campBanner3.bd {
  background-image: url(../event/black-desert/img/geforce-rtx-black-desert-hero-2560x770-d.jpg);
}

#campBanner2 {
  background-image: url(https://www.nvidia.com/content/dam/en-zz/Solutions/GeForce/campaigns/hyper-scape-bundle/new-creative/geforce-rtx-hyper-scape-pack-2560x770-p.jpg);
}
#campBanner2.bd {
  background-image: url(../event/black-desert/img/geforce-rtx-black-desert-pack-2560x770-p.jpg.jpg);
  height: 570px;
}

#campBanner3 {
  background-image: url(https://www.nvidia.com/content/dam/en-zz/Solutions/GeForce/campaigns/hyper-scape-bundle/geforce-rtx-hyper-scape-video-bg-2560x770-d.jpg);
  text-align: center;
  position: relative;
}
#campBanner3.bd {
  background-image: url(../event/black-desert/img/geforce-rtx-black-desert-video-bg-2560x770-d.jpg.png);
}

.content-table {
  float: left;
  display: table;
  height: 100%;
  width: 50%;
  line-height: 1.5;
}
.content-table.right {
  float: right;
}
.content-table.middle {
  float: none;
  margin: 0 auto;
}
.content-table.w-40 {
  width: 40%;
  height: 550px;
}

.content-cell {
  display: table-cell;
  vertical-align: middle;
  word-wrap: break-word;
}

.txt-content h1 {
  font-weight: 500;
  font-size: 40px;
}
.txt-content h2 {
  font-size: 32px;
}
.txt-content h1,
.txt-content h2,
.txt-content p {
  margin: 20px 0;
}
.txt-content .primary-btn {
  max-width: 150px;
  margin: 30px 0;
  font-size: 20px;
  font-weight: 700;
}
.txt-content ul {
  list-style-type: disc;
  padding-left: 24px;
  line-height: 2.5;
}
.txt-content .img-wrap {
  display: inline-block;
  position: relative;
  height: 0;
  width: 100%;
  max-width: 700px;
  padding-top: 56.25%;
}
.txt-content .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.hyper-methods {
  text-align: left;
  list-style-type: decimal;
  padding-left: 24px;
  line-height: 2;
}

.hyper-action-section {
  margin: 32px 0;
}

ol {
  list-style-type: decimal;
  padding-left: 20px;
}

.special-content-part {
  max-width: 1366px;
  margin: 0 auto;
  width: calc(100% - 30px);
}
.special-content-part h1 {
  font-size: 24px;
  font-weight: 700;
}

.section-inner.article table.sp th {
  background-color: #555555;
}
.section-inner.article table.sp th.twm-bg {
  background-color: #F68428;
}
.section-inner.article table.sp td:first-child {
  background-color: #333;
}
.section-inner.article table.sp td:first-child,
.section-inner.article table.sp td:nth-child(2) {
  vertical-align: middle;
}

.title {
  font-weight: 700;
}

.admin-showing-panel_content-txt {
  text-align: left;
}

/*
-----
RWD
-----
*/
@media (max-width: 1440px) {
  #gamesList .caption p {
    font-size: 16px;
  }
  #gamesList .game-wrap.image {
    width: 55%;
  }
  .receipt_popup {
    left: calc(50% - 160px);
  }
}
@media (max-width: 1200px) {
  .col2-sp {
    width: 100%;
  }
  .tooltip {
    top: calc(100% + 50px);
    left: 0;
    width: 100%;
    max-width: unset;
    border-right: 0px;
    border-bottom: 5px solid #76B900;
    filter: drop-shadow(0 0px 15px rgba(0, 0, 0, 0.5));
  }
  .tooltip-container::before {
    top: -23px;
    left: calc(50% - 18px);
    transform: rotate(90deg);
  }
}
@media (max-width: 1024px) {
  #nav-icon2 {
    display: block;
  }
  .section1 {
    position: relative;
    width: 100%;
    height: 550px;
    background: #222 url("../img/gfn-overview-kv-bg-mp4-desktop.png");
    background-repeat: repeat-x;
    background-position: center top;
    top: 0px;
    overflow: hidden;
  }
  #gfn-video-bg {
    position: relative;
    width: 2560px;
    height: 550px;
    margin: 0 auto;
    display: block;
    text-align: center;
  }
  #gfn-video-loop {
    width: 100vw;
    height: 550px;
    float: left;
    z-index: 0;
    display: block;
    text-align: center;
    margin-left: calc(50% - 1280px);
  }
  #hexagons {
    position: relative;
    width: 640px;
    height: 450px;
    margin: 0 auto;
    top: 0px;
    left: 0px;
  }
  .hex-m1 {
    width: 320px;
    height: 320px;
  }
  .hex-lg {
    width: 495px;
    height: 495px;
  }
  .hex-sm {
    width: 253px;
    height: 253px;
  }
  .hex-md {
    width: 333px;
    height: 333px;
  }
  #hexagon-1 {
    top: 245px;
  }
  #hexagon-2 {
    left: -170px;
  }
  #hexagon-3 {
    display: none;
    top: 190px;
    left: 337px;
  }
  #key-visual-text {
    position: relative;
    width: 640px;
    margin: 0 auto;
  }
  #the-power-to-play-h1 {
    right: -50px;
    font-size: 32px;
  }
  .tpt-left {
    text-align: right;
  }
  .tpt-right {
    text-align: right;
  }
  .tpt-mid {
    text-align: right;
    font-size: 32px;
  }
  #button-join {
    top: 380px;
    right: -50px;
  }
  .nav-items-wrap .web-menu .nav-item {
    display: none;
  }
  #gamesList .game-wrap {
    transform: rotate(0deg);
  }
  #gamesList .caption h1 span,
  #gamesList .caption p span,
  #gamesList .caption .sub span {
    max-width: 40%;
  }
  #gamesList .game-wrap .g1,
  #gamesList .game-wrap .g2,
  #gamesList .game-wrap .g3,
  #gamesList .game-wrap .g4 {
    animation: none;
  }
  .option-item-wrap {
    flex-direction: column;
  }
  .option-item-wrap .item {
    margin: 24px 0;
  }
  #captionForGFN {
    padding: 80px 0 40px 0;
  }
  #captionForGFN h1 {
    line-height: 1.5;
  }
  .footer-nav {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .social-media {
    margin-top: 32px;
  }
  #news-carousel .content {
    max-width: 40%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .hyper-video .modal-panel {
    max-width: 100%;
  }
  .txt-content h1, .txt-content h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 1023px) and (min-width: 640px) {
  #campBanner1, #campBanner2, #campBanner3 {
    height: 550px;
  }
  #campBanner1 {
    padding-top: 550px;
    background-image: url(https://www.nvidia.com/content/dam/en-zz/Solutions/GeForce/campaigns/hyper-scape-bundle/new-creative/geforce-rtx-hyper-scape-hero-1024x550-t@2x.jpg);
  }
  #campBanner1.bd {
    background-image: url(../event/black-desert/img/geforce-rtx-black-desert-hero-1024x550-t.jpg);
  }
  #campBanner2 {
    margin-top: 550px;
    background-image: url(https://www.nvidia.com/content/dam/en-zz/Solutions/GeForce/campaigns/hyper-scape-bundle/new-creative/geforce-rtx-hyper-scape-pack-1024x550-t.jpg);
    padding-top: 550px;
  }
  #campBanner2.bd {
    background-image: url(../event/black-desert/img/geforce-rtx-black-desert-pack-1350x770-p.jpg.jpg);
  }
  #campBanner3 {
    margin-top: 550px;
  }
  #campBanner3.bd {
    background-image: url(../event/black-desert/img/geforce-rtx-black-desert-video-bg-1350x770-l.jpg.png);
  }
  .content-table, .content-table.w-40 {
    width: 100%;
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  #key-visual-text {
    width: 100%;
  }
  #gfn-video-bg,
  #gfn-video-loop,
  .section1,
  #hexagons {
    height: 650px;
  }
  #hexagon-1 {
    top: auto;
    left: auto;
    right: -60px;
    bottom: 0px;
  }
  #hexagon-2 {
    left: -70px;
    bottom: -90px;
    top: auto;
  }
  #hexagon-3 {
    display: block;
    top: auto;
    left: 277px;
    bottom: -50px;
  }
  #hexagon-4 {
    position: absolute;
    top: 180px;
    left: auto;
    right: 70px;
  }
  #gamesList {
    text-align: center;
  }
  #gamesList .game-wrap {
    position: relative;
    top: auto;
    left: auto;
    height: 150px;
    width: 100%;
    overflow: hidden;
  }
  #gamesList .game-wrap.image {
    width: 100%;
  }
  #gamesList .caption h1 span,
  #gamesList .caption p span,
  #gamesList .caption .sub span {
    max-width: 100%;
  }
  #pricing {
    padding: 40px 0;
  }
  .logo-nav {
    flex-direction: column;
  }
  .logo-nav a {
    margin: 15px 0;
  }
  #captionForGFN h1,
  #gamesList .caption h1 span,
  .pricing-title,
  #bannerGame .caption-text,
  #bannerGame .caption-text,
  .download-item-wrap .ic-title,
  #downloadMethod .title,
  .option-item-wrap .tt,
  #downloadPath .title,
  .title.styled {
    font-size: 16px;
    line-height: 1.5;
  }
  .download-item-wrap {
    flex-direction: column;
  }
  .download-item-wrap .item {
    margin: 24px 0;
  }
  #downloadPath .title {
    margin: 0;
  }
  .step-arr {
    width: 80px;
  }
  #captionForGFN p {
    margin: 32px auto;
  }
  .multi-item-wrap .multi-item .divi {
    width: 100%;
  }
  .pricing-title {
    margin-bottom: 40px;
  }
  .web-plan, .pricing-panel-wrap.web-plan#wpricingCarousel {
    display: none;
  }
  #pricingCarousel {
    display: none;
  }
  #mpricingCarousel, #mtimeCarousel {
    display: block;
    max-width: 100%;
  }
  #mpricingCarousel .crown, #mtimeCarousel .crown {
    position: absolute;
    top: 10px;
    left: calc(50% - 12px);
    height: 24px;
    width: 24px;
  }
  #mpricingCarousel .panel-item, #mtimeCarousel .panel-item {
    margin: 0;
  }
  .admin-slide-menu-item {
    width: auto;
    height: 64px;
    display: flex;
    align-items: center;
    justify-items: center;
  }
  .admin-slide-menu-item span {
    display: none;
  }
  .admin-side-menu-title {
    display: none;
  }
  .admin-side-menu {
    width: 64px;
    height: -moz-fit-content;
    height: fit-content;
    min-height: auto;
  }
  .admin-showing-panel {
    width: calc(100% - 64px);
  }
  .admin-showing-panel_content-sub-title {
    min-width: 100px;
  }
  .admin-side-menu, .admin-showing-panel {
    margin: 0px;
  }
  .admin-container {
    padding: 0;
  }
}
@media (max-width: 640px) {
  #accountOption {
    display: none;
    position: absolute;
    z-index: 100;
    right: 0;
    top: calc(100% + 100px);
    background-color: #222;
    width: auto;
    height: auto;
    text-align: center;
  }
  .section#notFound .section-title {
    font-size: 32px;
  }
  .section#notFound {
    font-size: 16px;
    padding-top: 80px;
  }
  section {
    padding: 40px 0;
  }
  #gfn-video-bg, #gfn-video-loop, .section1, #hexagons {
    height: 600px;
  }
  #hexagons {
    width: 412px;
  }
  .hex-m1 {
    width: 160px;
    height: 160px;
  }
  .hex-lg {
    width: 260px;
    height: 260px;
  }
  .hex-sm {
    width: 185px;
    height: 185px;
  }
  .hex-md {
    width: 170px;
    height: 170px;
  }
  #hexagon-1 {
    top: auto;
    bottom: 32px;
    left: auto;
    right: auto;
  }
  #hexagon-2 {
    top: auto;
    bottom: 80px;
    left: 60px;
    right: auto;
  }
  #hexagon-3 {
    top: auto;
    bottom: 48px;
    left: auto;
    right: 0;
  }
  #hexagon-4 {
    top: auto;
    bottom: 190px;
    left: auto;
    right: 0;
  }
  #news-carousel .tt {
    padding-left: 15px;
  }
  .step-item-wrap {
    flex-direction: column;
  }
  .step-item-wrap .item {
    margin: 24px 0;
  }
  .step-item-wrap .item.stop {
    animation-delay: 0 !important;
  }
  .step-item-wrap .item .num {
    margin-bottom: 15px;
  }
  .step-arr {
    display: none;
  }
  #downloadPath .title {
    margin-bottom: 40px;
  }
  #the-power-to-play-h1 {
    padding-top: 68px;
  }
  #button-join {
    top: 190px;
  }
  nav {
    height: 55px;
    font-size: 16px;
  }
  .wrapper {
    padding-top: 55px;
  }
  .logo-wrap {
    height: 36px;
  }
  .logo-wrap img {
    height: 100%;
    width: auto;
  }
  .nav-items-wrap ul.m-menu {
    top: 50px;
  }
  .primary_input-title {
    font-size: 12px;
  }
  .ic-wrap.comfirm-part {
    flex-direction: column;
  }
  .ic-wrap.comfirm-part .ic-wrap {
    margin: 15px 0;
  }
}
@media screen and (max-width: 639px) {
  #campBanner1, #campBanner2, #campBanner3 {
    height: 600px;
  }
  #campBanner1 {
    padding-top: 600px;
    background-image: url(https://www.nvidia.com/content/dam/en-zz/Solutions/GeForce/campaigns/hyper-scape-bundle/new-creative/geforce-rtx-hyper-scape-hero-767x550-p@2x.jpg);
  }
  #campBanner1.bd {
    background-image: url(../event/black-desert/img/geforce-rtx-black-desert-hero-767x550-p.jpg);
  }
  #campBanner2 {
    margin-top: 650px;
    background-image: url(https://www.nvidia.com/content/dam/en-zz/Solutions/GeForce/campaigns/hyper-scape-bundle/new-creative/geforce-rtx-hyper-scape-pack-767x550-p.jpg);
    padding-top: 600px;
  }
  #campBanner2.bd {
    background-image: url(../event/black-desert/img/geforce-rtx-black-desert-pack-1024x550-t.jpg.jpg);
  }
  #campBanner3 {
    margin-top: 550px;
  }
  #campBanner3.bd {
    background-image: url(../event/black-desert/img/geforce-rtx-black-desert-video-bg-1024x550-t.jpg.png);
  }
  .content-table, .content-table.w-40 {
    width: 100%;
    padding: 50px 15px;
  }
}
@media (max-width: 500px) {
  nav .primary-btn {
    position: fixed;
    top: 65px;
    right: 5px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
    z-index: 10;
    margin: 0;
    transition: 0.3s;
  }
  nav .primary-btn.account-center-opener {
    left: auto;
    right: 15px;
  }
  nav .primary-btn.account-center-opener span {
    display: none;
  }
  .admin-showing-panel_content-item-wrap {
    line-height: 32px;
    white-space: initial;
  }
  .admin-showing-panel_content-item-wrap.record {
    line-height: 48px;
  }
  .admin-showing-panel_content-sub-title, .admin-showing-panel_content-txt {
    width: 100%;
  }
  .admin-showing-panel_content-sub-title {
    text-align: left;
  }
}
@media (max-width: 350px) {
  #mpricingCarousel, #mtimeCarousel {
    padding-left: 24px;
  }
}/*# sourceMappingURL=main.css.map */