/*
 * GTA Game Next 2.4.42 — style CAPTCHA ładowane wyłącznie gościom.
 * Reguły przeniesione bez zmiany działania z globalnego style.css.
 */
/* GTA Game Next 2.4.30 - przycisk przeładowania CAPTCHA z ochroną przed floodem. */
.gtx-captcha-refresh-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  max-width: 100%;
  vertical-align: middle;
}
.gtx-captcha-refresh-wrap > img {
  flex: 0 0 auto;
}
.gtx-captcha-refresh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  min-width: 94px;
  min-height: 34px;
  padding: .45rem .65rem;
  border: 1px solid rgba(108, 208, 255, .42);
  border-radius: .5rem;
  background: rgba(24, 31, 46, .96);
  color: #edf7ff;
  font: inherit;
  font-size: .75rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, background-color .15s ease;
}
.gtx-captcha-refresh:hover {
  transform: translateY(-1px);
  border-color: #73d8ff;
  background: rgba(40, 53, 78, .98);
}
.gtx-captcha-refresh:focus-visible {
  outline: 2px solid #73d8ff;
  outline-offset: 2px;
}
.gtx-captcha-refresh:disabled {
  cursor: progress;
  opacity: .62;
  transform: none;
}
.gtx-captcha-refresh > span:first-child {
  font-size: 1.1rem;
  line-height: .8;
}
.gtx-captcha-refresh-status {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.gtx-captcha-refresh.is-loading > span:first-child {
  animation: gtx-captcha-spin .8s linear infinite;
}
@keyframes gtx-captcha-spin {
  to { transform: rotate(360deg); }
}
.gtx-login-captcha__image .gtx-captcha-refresh-wrap {
  flex-direction: column;
  align-items: flex-start;
  gap: .3rem;
}
.gtx-login-captcha__image .gtx-captcha-refresh {
  min-height: 28px;
  padding: .35rem .48rem;
  font-size: .66rem;
}
@media (max-width: 480px) {
  .gtx-captcha-refresh-wrap {
    gap: .38rem;
  }
  .gtx-captcha-refresh {
    min-height: 32px;
    padding: .4rem .55rem;
  }
}
