.g-footer-lang {
  background: #191a1d;
  height: 58px;
  border-bottom: 1px solid #020303;
  display: flex;
  justify-content: center; align-items: center;
  position: relative;
  z-index: 1;
}
.g-footer-lang__shell {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  cursor: pointer;
  &:hover{
    .dropdown-toggle {
       color:var(--accent-color);
    }
  }
  .g-footer-lang__selector {
    line-height: 1em;
  }
  .g-footer-lang__globe {
    width: 14px; height: 14px;
  	background: url('https://nxcache.nexon.net/support/2024/global-2025/v-1.1.0/imgs/global/header/globe.png') no-repeat center center / 100% auto;
    margin-top: 2px;
  }
  .g-footer-lang__drop-down-icon {
    width: 11px; height: 16px;
  	background: url('https://nxcache.nexon.net/support/2024/global-2025/v-1.1.0/imgs/global/footer/dropdown-icon.jpg') no-repeat center center / 100% auto;
    margin-top: 3px;
  }
  .g-footer-lang__toggle {
    transition: color 0.3s;
    line-height: 1em;
    font-size: 16px;
    border: none;
    padding: 0; background: none;
  }
  .g-footer-lang__dropdown{
    display: none;
     opacity: 0;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 40%);
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    width: 200px;
    background: #191a1d;
    border-radius: 10px;
    flex-direction: column;
    text-align: center;

    padding: 10px 0;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    &.active {
      display: flex;
    }
    &.show-animation {
      opacity: 1;
      transform: translate(-50%, -30px);
      pointer-events: auto;
    }
  }
  .g-footer-lang__dropdown-link {
    display: flex;
    justify-content: center; align-items: center;
    height: 50px;
    transition: background 0.3s;
    color: white;
    &:hover{
      color: black;
      background: white;
    }
  }
}
.g-footer {
  padding-top: 30px;
  text-align: center;
  background: #191a1d;
  text-transform: uppercase;
  font-size: 12px;
  position: relative;
}

.g-footer__main-links {
  padding: 0 15px;
  margin-bottom: 20px;
}

.g-footer__sub-links {
  padding: 0 15px;
  margin-bottom: 20px;
}
.g-footer__link {
  color: #e4e5e5;
  transition: color 0.3s;
  position: relative;
  margin-right: 20px;
  padding-right: 20px;
  cursor: pointer;
  &:after{
    content: '|';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    color: #333333;
   }
  &:last-child {
    margin-right: 0;
    padding-right: 0;
    &:after{
      display: none;
    }
  }
  &:hover{
    color: #ffffff;
  }
}
.g-footer__link--main {
  color: rgba(255,255,255,0.75);
  &:after{
    color: #333333;
   }
  &:hover{
    color: rgba(255,255,255,1);
  }
}
.g-footer__link--sub {
  color: rgba(255,255,255,0.4);
  &:hover{
    color: rgba(255,255,255,0.6);
  }
}
.g-footer__copyright {
  height: 62px;
  margin-top: 15px;
  color: #444446;
  background: #131516;
  display: flex;
  justify-content: center; align-items: center;
}

.g-footer__nexon-logo {
  width: 89px; height: 29px;
  margin: 0 auto 20px;
  background: url('https://nxcache.nexon.net/support/2024/global-2025/v-1.1.0/imgs/global/footer/logo.jpg') no-repeat center center / 100% auto;
}

.g-footer__footer-live-chat-icon {
  position: fixed;
  bottom: 40px;
  right: 50px;
  width: 94px;
  height: 112px;
  background: var(--chat-with-us-bg) no-repeat center center/ 100% auto;
  cursor: pointer;
  transition: transform 0.2s;
  z-index: 7;
  &:hover {
    opacity: 1;
    transform: translateY(-8%);
    &:after {
      opacity: 1;
    }
  }
  &:after, &:before {
    content: '';
    position: absolute;
    z-index: 100;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 33px;
    height: 33px;
  }
  &:before {
    background: var(--chat-with-us-icon) no-repeat center center/ 100% auto;
  }
  &:after {
    opacity: 0;
    background: var(--chat-with-us-icon-hover) no-repeat center center/ 100% auto;
  }
}

/* Hide default Chat Icon */
.zopim[data-test-id="ChatWidgetButton"], .zopim[data-test-id="ChatWidgetMobileButton"] {
  display: none !important;
}

@media (max-width: 1024px) { 
  .g-footer__footer-live-chat-icon {
    width: 66px;
    height: 83px;
    &:after, &:before {
      width: 22px;
      height: 22px;
    }
  }
}

@media (max-width: 600px) { 
  .g-footer__footer-live-chat-icon {
    right: 20px;
    bottom: 25px;
  }
}