@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c9a227;
    --gold-light: #e8c547;
    --gold-dark: #8b6914;
    --dark: #0d0d0f;
    --dark-card: #16161a;
    --dark-section: #1a1a1f;
    --text: #e8e6e3;
    --text-muted: #9a9895;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
    background: rgba(13, 13, 15, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    color: var(--gold);
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 0.35rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 13, 15, 0.6) 0%,
        rgba(13, 13, 15, 0.85) 50%,
        rgba(13, 13, 15, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 40px rgba(201, 162, 39, 0.4);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.05em;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(201, 162, 39, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark);
}

.btn-gold:hover {
    box-shadow: 0 6px 25px rgba(201, 162, 39, 0.4);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-dark {
    background: var(--dark-section);
}

.section-alt {
    background: var(--dark-card);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 3rem;
}

/* Conta (landing — registrar / esqueci senha) */
.conta-section {
    scroll-margin-top: 5rem;
}

.conta-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.conta-nav-link {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: none;
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 4px;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    background: transparent;
    cursor: pointer;
    font: inherit;
}

.conta-nav-link:hover,
.conta-nav-link.active {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.08);
}

.conta-panels {
    max-width: 480px;
    margin: 0 auto;
}

.conta-panel:not(.is-active) {
    display: none;
}

.conta-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.conta-card-title {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    text-align: center;
}

.conta-card-hint {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.5;
}

.form-orion-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
    letter-spacing: 0.03em;
}

.form-orion-input {
    width: 100%;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text);
    font-size: 1rem;
}

.form-orion-input:focus {
    outline: none;
    border-color: var(--gold);
}

.form-orion-submit {
    width: 100%;
    margin-top: 0.25rem;
}

a.form-orion-submit.conta-cta-auth {
    text-align: center;
    box-sizing: border-box;
}

.form-orion-msg {
    max-width: 480px;
    margin: 0 auto 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 6px;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-orion-msg--sucesso {
    background: rgba(76, 175, 80, 0.12);
    border: 1px solid rgba(76, 175, 80, 0.45);
    color: #a5d6a7;
}

.form-orion-msg--erro {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.4);
    color: #ef9a9a;
}

.conta-footnote {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.conta-footnote a {
    color: var(--gold);
}

/* Register */
.register-box {
    max-width: 420px;
    margin: 0 auto;
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.register-form input {
    width: 100%;
    padding: 0.9rem 1rem;
    margin-bottom: 1rem;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text);
    font-size: 1rem;
}

.register-form input::placeholder {
    color: var(--text-muted);
}

.register-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.register-form button {
    width: 100%;
    margin-top: 0.5rem;
}

/* Gallery / Ranking */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.ranking-placeholder {
    text-align: center;
    padding: 2rem;
    background: var(--dark-card);
    border-radius: 8px;
    border: 1px dashed rgba(201, 162, 39, 0.3);
    color: var(--text-muted);
}

/* Guia */
.guia-banner {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.guia-banner img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.guia-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.guia-card {
    background: var(--dark);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(201, 162, 39, 0.15);
    transition: border-color 0.2s, transform 0.2s;
}

.guia-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.guia-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.guia-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Download */
.download-area {
    text-align: center;
}

.download-banner {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.download-banner img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    display: block;
}

.download-actions {
    margin-top: 1rem;
}

.download-note {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
    background: var(--dark-card);
    border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.footer-logo {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Rankings (index.php / ranking.php) */
.rank-orion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

/* Home: 4 cards na mesma linha (PvP, Level, SoD, Rei do Castelo) — VIP oculto */
.rank-orion-grid--4cols {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.rank-orion-grid--4cols .rank-orion-card {
    min-width: 0;
}

.rank-orion-grid--4cols .rank-orion-table {
    font-size: 0.78rem;
}

.rank-orion-grid--4cols .rank-orion-table th,
.rank-orion-grid--4cols .rank-orion-table td {
    padding: 0.3rem 0.2rem;
    word-break: break-word;
}

/* Home: + card SoD pontos de clãs */
.rank-orion-grid--5cols {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
}

.rank-orion-grid--5cols .rank-orion-card {
    min-width: 0;
}

.rank-orion-grid--5cols .rank-orion-table {
    font-size: 0.72rem;
}

.rank-orion-grid--5cols .rank-orion-table th,
.rank-orion-grid--5cols .rank-orion-table td {
    padding: 0.28rem 0.15rem;
    word-break: break-word;
}

.rank-orion-card {
    background: var(--dark-card);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 8px;
    padding: 1rem 1rem 1.25rem;
}

.rank-orion-title {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    text-align: center;
}

.rank-orion-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.rank-orion-table th,
.rank-orion-table td {
    padding: 0.4rem 0.35rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rank-orion-table th {
    color: var(--text-muted);
    font-weight: 500;
}

.rank-orion-castelo {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
    padding: 0.25rem 0;
}

.rank-orion-castelo__icon img {
    border-radius: 6px;
    border: 1px solid rgba(201, 162, 39, 0.35);
    object-fit: cover;
}

.rank-orion-castelo__name {
    display: block;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.3;
}

.rank-orion-castelo__sub {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.rank-orion-castelo__empty {
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 0.5rem 0;
}

.rank-orion-more {
    text-align: center;
    margin-top: 1.5rem;
}

.rank-full-block {
    margin-bottom: 2.5rem;
}

.rank-full-h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.rank-full-table {
    font-size: 0.9rem;
}

.rank-full-table th,
.rank-full-table td {
    padding: 0.5rem 0.6rem;
}

/* Ýcones de classe: Ranking/game/classes/{ID}.png (ID = tabela Classe) */
.rank-class-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    min-width: 1.75rem;
    min-height: 1.75rem;
}

.rank-class-icon {
    width: 32px;
    height: 32px;
    max-width: 100%;
    object-fit: contain;
    vertical-align: middle;
    border-radius: 4px;
}

.rank-class-icon--sm {
    width: 24px;
    height: 24px;
}

.rank-class-fallback {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-light);
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: var(--dark-card);
        padding: 5rem 1.5rem 1.5rem;
        transition: right 0.3s;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .section {
        padding: 3rem 0;
    }

    .rank-orion-grid--4cols {
        grid-template-columns: 1fr;
    }

    .rank-orion-grid--5cols {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1100px) {
    .rank-orion-grid--4cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rank-orion-grid--5cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1101px) and (max-width: 1500px) {
    .rank-orion-grid--5cols {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Página ranking.php — abas, busca, paginação */
.rank-page-main .section-desc.rank-page-updated {
    margin-bottom: 0.35rem;
}

.rank-page-cache {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.9em;
}

.rank-page-hint {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.rank-page-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.rank-page-tab {
    display: inline-block;
    padding: 0.45rem 0.85rem;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.rank-page-tab:hover {
    color: var(--gold-light);
    border-color: rgba(201, 162, 39, 0.35);
}

.rank-page-tab--active {
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-color: transparent;
    font-weight: 600;
}

.rank-page-block {
    margin-top: 0.5rem;
}

.rank-page-search {
    margin-bottom: 1rem;
}

.rank-page-search__label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.rank-page-search__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.rank-page-search__input {
    flex: 1;
    min-width: 200px;
    padding: 0.55rem 0.75rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--dark-card);
    color: var(--text);
    font-size: 0.95rem;
}

.rank-page-search__btn {
    padding: 0.55rem 1rem;
    font-size: 0.9rem;
}

.rank-page-search__clear {
    font-size: 0.85rem;
    color: var(--gold);
}

.rank-page-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.rank-page-pager {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.rank-page-pager__link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.95rem;
}

.rank-page-pager__link:hover {
    text-decoration: underline;
}

.rank-page-pager__info {
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .rank-page-tabs {
        gap: 0.35rem;
    }

    .rank-page-tab {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
}

/* Informações — duas colunas (imagem + lista) */
.section-informacoes {
    scroll-margin-top: 5rem;
    background: linear-gradient(180deg, var(--dark-card) 0%, var(--dark) 100%);
}

.info-grid {
    display: grid;
    /* Imagem à esquerda, centralizada na vertical em relação ao texto ao lado */
    grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.25fr);
    gap: 2.5rem 2rem;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
}

.info-figure {
    margin: 0;
    position: relative;
}

.info-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(201, 162, 39, 0.22);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.info-col--text {
    padding-top: 0;
    min-width: 0;
}

/* Duas colunas de texto ao lado da imagem */
.info-text-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem 1.75rem;
    align-items: start;
}

.info-text-columns .info-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 1rem;
    line-height: 1.45;
    color: var(--text);
}

.info-bullet {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 0.5em;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.45);
}

.info-list kbd {
    font-family: 'Roboto', ui-monospace, monospace;
    font-size: 0.88em;
    font-weight: 600;
    padding: 0.12em 0.45em;
    border-radius: 4px;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.35);
    color: var(--gold-light);
}

@media (max-width: 900px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: stretch;
    }

    /* Imagem em cima, largura alinhada ao texto abaixo */
    .info-col--image {
        order: -1;
        max-width: 100%;
    }

    .info-img {
        max-height: 320px;
        width: 100%;
    }

    /* Em telas médias: texto continua em 2 colunas */
    .info-text-columns {
        grid-template-columns: 1fr 1fr;
        gap: 0.55rem 1.25rem;
    }
}

@media (max-width: 520px) {
    .info-text-columns {
        grid-template-columns: 1fr;
    }
}

/* Registro — slider CAPTCHA */
.reg-slider-wrap {
    margin: 1.25rem 0 1.5rem;
    max-width: 100%;
}

.reg-slider-hint {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 0 0.75rem;
}

.reg-slider-track {
    position: relative;
    height: 48px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(201, 162, 39, 0.25);
    cursor: pointer;
    touch-action: none;
    user-select: none;
}

.reg-slider-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    max-width: 100%;
    border-radius: 7px 0 0 7px;
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.35), rgba(201, 162, 39, 0.55));
    pointer-events: none;
}

.reg-slider-endzone {
    position: absolute;
    left: var(--reg-slider-target-pct, 88%);
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 0 7px 7px 0;
    background: rgba(46, 160, 67, 0.25);
    border-left: 2px dashed rgba(46, 160, 67, 0.6);
    pointer-events: none;
}

.reg-slider-handle {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: var(--dark);
    cursor: grab;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    z-index: 2;
    touch-action: none;
}

.reg-slider-handle:active {
    cursor: grabbing;
}

.reg-slider-handle-icon {
    font-size: 1.1rem;
    font-weight: 700;
}

.reg-slider-status {
    font-size: 0.85rem;
    margin: 0.5rem 0 0;
    min-height: 1.25em;
    color: var(--text-muted);
}

.reg-slider-status.reg-slider-ok {
    color: #6fcf97;
}

button.form-orion-submit:disabled,
.btn-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}
