/*==========================================================================
  ACH – app.css  v0.5.2
  Szerkezet:
    0) Fontok
    1) Változók + alapok
    2) Topbar (fehér sáv) + nyelvválasztó + rács/hamburger
    3) Navbar (fekete menüsáv)
    4) Hero (videó, image + szöveg)
    5) Kártyák / Kalkulátorok / Feature / Szolgáltatások
    6) Térkép
    7) Lábléc
    8) Login/Regisztráció oldalak
    9) Utilok, ikon-kártyák, 404, Timeline
   10) RFQ – AJAX overlay + request-strip háttér
==========================================================================*/

/* 0) FONTS -------------------------------------------------------------- */
@font-face {
    font-family: "Helvetica Local";
    src: url("/assets/fonts/helveticaneueltpro-ultlt-webfont.woff2") format("woff2"),
        url("/assets/fonts/helveticaneueltpro-ultlt-webfont.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Helvetica Local";
    src: url("/assets/fonts/helveticaneueltpro-bd-webfont.woff2") format("woff2"),
        url("/assets/fonts/helveticaneueltpro-bd-webfont.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* 1) VÁLTOZÓK + ALAPOK -------------------------------------------------- */
:root {
    --ach-blue: #00a3e5;
    /*#4EA2E0;*/
    --ach-dark: #0b0e12;
    --ach-gray: #f2f4f7;
    --ach-red: #a3132a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 300;
}

.section {
    padding: 56px 0;
}

/* globális cross-fade */
@media (prefers-reduced-motion:no-preference) {
    body {
        transition: opacity .35s ease;
    }

    body.preload,
    body.fade-out {
        opacity: 0;
    }
}

/* 2) TOPBAR + NYELVVÁLASZTÓ + RÁCS ------------------------------------- */
.topbar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.topbar .link-dark {
    color: #111827;
    opacity: .85;
    text-decoration: none;
}

.topbar .link-dark:hover {
    opacity: 1;
}

.topbar-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

.topbar-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    text-decoration: none;
    justify-self: start;
}

.topbar-logo img {
    display: block;
    height: 90px;
}

.topbar-burger {
    justify-self: end;
}

/* desktop elrendezés */
@media (min-width:992px) {
    .topbar-grid {
        grid-template-columns: 1fr auto 1fr;
        grid-template-areas: "left center right";
    }

    .topbar-logo {
        grid-area: center;
        justify-self: center;
    }

    .topbar-burger {
        display: none !important;
    }

    .topbar-right {
        grid-area: right;
        justify-self: end;
    }
}

/* hamburger ikon */
.topbar {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0,0,0,.8)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.topbar .navbar-toggler {
    border: 0;
    padding: .25rem .5rem;
}

/* Nyelvválasztó */
.topbar-langs {
    padding-right: 30px;
}

.lang {
    display: inline-block;
    text-decoration: none;
    color: #000;
}

.lang>span {
    display: inline-block;
    border: 1px solid #ced4da;
    padding: .25rem .5rem;
    line-height: 1;
    transition: background-color .15s, color .15s, border-color .15s, box-shadow .15s, transform .15s;
}

.lang:hover>span,
.lang:focus-visible>span {
    background: #1565c0;
    border-color: #1565c0;
    color: #fff;
    box-shadow: 0 6px 14px rgba(21, 101, 192, .28), 0 2px 4px rgba(0, 0, 0, .12);
    transform: translateY(-1px);
}

.lang:active>span {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(21, 101, 192, .22), 0 1px 2px rgba(0, 0, 0, .10);
}

.lang-active {
    background: #1565c0;
    border-color: #1565c0;
    color: #fff;
}

@media (max-width:575.98px) {
    .lang {
        color: #fff;
    }
}

/* 3) NAVBAR -------------------------------------------------------------- */
.navbar.bg-lg-opacity-75 {
    background-color: rgba(0, 0, 0, .75) !important;
}

@media (max-width:991.98px) {
    .navbar.bg-lg-opacity-75 {
        background-color: #000 !important;
    }
}

/* 4) HERO (videó + image) ----------------------------------------------- */
.hero {
    position: relative;
    min-height: 620px;
    color: #fff;
    display: flex;
    align-items: center;
    background: #222 center/cover no-repeat;
}

.hero h1 {
    font-weight: 700;
    letter-spacing: .5px;
    font-family: "Helvetica Local";
}

.hero .lead {
    max-width: 860px;
}

.hero span {
    font-weight: 400;
    font-family: "Helvetica Local";
}

.hero>video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.55) contrast(1.05);
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

/* címsorok */
.hero-title-thin {
    font-family: "Helvetica Local", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 300;
    font-size: clamp(42px, 9vw, 130px);
    line-height: .95;
    margin: 0 0 .10em 0;
}

.hero-title-bold {
    font-family: "Helvetica Local", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(58px, 10vw, 130px);
    line-height: .95;
    margin: -.15em 0 .1em 0;
}

.hero-sub {
    font-family: "Helvetica Local", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 300;
    font-size: clamp(18px, 3.2vw, 40px);
    line-height: 1.1;
    margin: 0;
    max-width: 32ch;
}

/* HERO – kép + alatta szöveg */
.hero-img__media {
    position: relative;
    height: clamp(260px, 50vh, 560px);
    overflow: hidden;
}

.hero-img__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-img .hero-title-thin {
    margin-bottom: .1em;
}

.hero-img .hero-title-bold {
    margin-top: -.15em;
    margin-bottom: .3em;
}

.hero-text {
    padding-block: clamp(32px, 6vw, 72px);
    color: #0b0e12;
    background: #fff;
}

/* 5) KÁRTYÁK / KALKULÁTOROK / FEATURE / SZOLGÁLTATÁSOK ----------------- */
/* Kalkulátor-kártya */
.calc-card {
    position: relative;
    overflow: hidden;
    color: #fff;
    border: 0;
    min-height: 260px;
}

.calc-card .card-body {
    position: relative;
    z-index: 1;
}

.calc-title {
    margin: 0;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: .8px;
    font-size: clamp(16px, 5vw, 38px);
    text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
}

/* Háttérképek */
.calc-card--sheet {
    background: #0f1e2c url("/images/bootstrap-ACH_KALKULATOR_1.png") no-repeat right center/cover;
}

.calc-card--cube {
    background: url("/images/bootstrap-ACH_KALKULATOR_2.png") no-repeat right center/cover;
}

.calc-card--rod {
    background: url("/images/bootstrap-ACH_KALKULATOR_3_v2.png") no-repeat right center/cover;
}

@media (max-width:576px) {
    .calc-card--sheet {
        background-position: 70% center;
    }
}

@media (max-width:991.98px) {
    .calc-card--sheet {
        background-image: url("/images/bootstrap-ACH_KALKULATOR_1_MOBIL.png");
        background-position: center;
    }

    .calc-card--cube {
        background-image: url("/images/bootstrap-ACH_KALKULATOR_2_MOBIL.png");
        background-position: center;
    }

    .calc-card--rod {
        background-image: url("/images/bootstrap-ACH_KALKULATOR_3_MOBIL.png");
        background-position: center;
    }
}

/* világos űrlap sötét képen */
.calc-card--sheet .form-control,
.calc-card--sheet .form-select,
.calc-card--cube .form-control,
.calc-card--cube .form-select,
.calc-card--rod .form-control,
.calc-card--rod .form-select {
    background: rgba(255, 255, 255, .95);
    border: 0;
    color: #0b1420;
}

.calc-card--sheet .form-control::placeholder,
.calc-card--cube .form-control::placeholder,
.calc-card--rod .form-control::placeholder {
    color: rgba(0, 0, 0, .45);
}

/* Gombok */
.btn-calc {
    background: #115fbf;
    border-color: #115fbf;
    color: #fff;
    font-weight: 400;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
}

.btn-calc:hover,
.btn-calc:focus {
    background: #1565c0;
    border-color: #1565c0;
    color: #fff;
}

.btn-pry {
    background: #023455;
    border-color: #023455;
    color: #fff;
    font-weight: 400;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
}

.btn-pry:hover,
.btn-pry:focus {
    background: #1565c0;
    border-color: #1565c0;
    color: #fff;
}

/* “Értékek” sor */
.values {
    color: var(--ach-blue);
    font-size: clamp(14px, 4vw, 32px);
}

/* Feature kártyák */
.feature-card .card {
    border: 0;
}

.feature-card .img.ph {
    background: #cfd6df;
    aspect-ratio: 16/9;
    width: 100%;
    display: block;
}

.feature-card--hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    color: #fff;
    border: 0;
    min-height: 520px;
    background: url("/images/bootstrap-ACH_IMAGE_2.png") center/cover no-repeat;
}

@media (max-width:575.98px) {
    .feature-card--hero {
        min-height: 440px;
        background-position: center 35%;
    }
}

.feature-card__body {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.feature-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, .35) 65%, rgba(0, 0, 0, .6) 100%);
}

.feature-title {
    margin: 0;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: .5px;
    font-size: clamp(26px, 4.6vw, 48px);
    text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}

.feature-lead {
    color: rgba(255, 255, 255, .85);
    font-size: 1rem;
    line-height: 1.65;
}

.feature-title-sm {
    margin: 0;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: .5px;
    font-size: clamp(22px, 3.6vw, 40px);
    text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
}

.feature-lead-sm {
    color: rgba(255, 255, 255, .9);
    font-size: 1rem;
    line-height: 1.6;
}

.feature-card--panel {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 340px;
    color: #fff;
    border: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width:1200px) {
    .feature-card--panel {
        min-height: 380px;
    }
}

@media (max-width:575.98px) {
    .feature-card--panel {
        min-height: 320px;
        background-position: center 35%;
    }

    .feature-card__body {
        padding-bottom: 1.25rem;
    }
}

.feature-card--quality {
    background-image: url("/images/bootstrap-ACH_IMAGE_3.png");
}

.feature-card--max {
    background-image: url("/images/bootstrap-ACH_IMAGE_4_v2.png");
}

/* ===== Szolgáltatás hero/kártya egységes alap ===== */
.service-hero,
.service-card {
    position: relative;
    border-radius: .75rem;
    overflow: hidden;
    background: center/cover no-repeat;
}

.service-hero {
    min-height: var(--hero-h, clamp(320px, 38vw, 620px));
}

.service-card {
    min-height: clamp(280px, 36vw, 460px);
}

/* overlay (desktopon oldalirányú, mobilon fentről) */
.service-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

@media (min-width:992px) {
    .service-overlay {
        background: linear-gradient(90deg, rgba(0, 0, 0, .75) 0 45%, rgba(0, 0, 0, .30) 70%, rgba(0, 0, 0, 0) 100%);
    }
}

@media (max-width:991.98px) {
    .service-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, .75) 0 60%, rgba(0, 0, 0, .25) 85%, rgba(0, 0, 0, 0) 100%);
    }
}

/* belső tartalom */
.service-content {
    position: relative;
    color: #fff;
    text-align: left;
    padding: 1rem;
}

@media (min-width:992px) {
    .service-content {
        padding: 2rem 2.5rem;
    }
}

.service-content--right {
    margin-left: auto;
}

.service-box {
    max-width: 720px;
    background: rgba(0, 0, 0, .25);
    backdrop-filter: blur(2px);
    border-radius: .5rem;
    padding: 1rem 1.25rem;
}

/* desktop: a jobbra húzott hero-szöveg overlay nélkül, doboz áttetszőség nélkül */
@media (min-width:992px) {
    .service-content--right {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 60%;
        padding-right: clamp(16px, 3vw, 40px);
    }

    .service-box {
        background: transparent;
        backdrop-filter: none;
        padding: 0;
    }
}

@media (min-width:1200px) {
    .service-content--right {
        width: 66.666%;
    }
}

@media (min-width:1400px) {
    .service-content--right {
        width: 69%;
    }
}

/* alsó igazítású variánsok */
.service-bottom {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
}

.bg-top {
    background-position: top center !important;
}

.bg-top-left {
    background-position: left top !important;
    ;
}

/* rövidebb hero + extra-tiny alsó bannerhez */
.service-hero--short {
    min-height: clamp(320px, 34vw, 520px);
}

@media (min-width:1200px) {
    .service-hero--short {
        --hero-h: clamp(240px, 24vw, 380px);
    }
}

.service-hero--tiny {
    --hero-h: clamp(220px, 24vw, 360px);
    min-height: var(--hero-h);
}

/* nagyobb kijelzőkön egységes top padding és felső igazítás */
@media (min-width:1200px) {
    .service-hero>.container {
        align-items: flex-start !important;
    }

    .service-hero .service-content,
    .service-card .service-content {
        padding-top: 2.5rem;
    }
}

@media (min-width:1400px) {

    .service-hero .service-content,
    .service-card .service-content {
        padding-top: 3rem;
    }
}

/* a hero alsó blokkját mindig balra és alul tartjuk, minden nézetben */
.service-hero {
    position: relative;
}

.service-hero .service-bottom {
    position: absolute !important;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end !important;
    justify-content: flex-start !important;
}

/* ha a .service-bottom-ot containerrel használtad, töröljük a belső paddinget */
.service-hero .service-bottom.container,
.service-hero .service-bottom.container-md {
    padding-left: 0;
    padding-right: 0;
}

/* overlay elhagyása ott, ahol nem kell */
.service-hero.no-overlay .service-overlay {
    display: none !important;
}

.service-hero.no-overlay .service-box {
    background: transparent !important;
    backdrop-filter: none !important;
    padding: 0;
}

/* 6) TÉRKÉP -------------------------------------------------------------- */
.map-hold {
    position: relative;
    width: 100%;
    padding-bottom: 40%;
    height: 0;
}

.map-hold iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) contrast(90%);
}

@media (max-width:768px) {
    .map-hold {
        padding-bottom: 70%;
    }
}

/* 7) LÁBLÉC -------------------------------------------------------------- */
.footer-dark {
    padding: 32px 0;
    background: #0f1216;
    color: #9aa3af;
}

.link-light-muted {
    color: #cbd5e1;
    text-decoration: none;
}

.link-light-muted:hover {
    color: #fff;
    text-decoration: underline;
}

/* 8) LOGIN + REG --------------------------------------------------------- */
/* Login oldal */
body.login-page {
    min-height: 100vh;
    margin: 0;
    background: url("/images/ach_login_hatter.jpg") center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background: rgba(10, 52, 84, .60);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(3px);
    padding: 2rem;
    border-radius: .5rem;
    z-index: 1;
}

.login-input {
    background: rgba(255, 255, 255, .95);
    border: 0;
}

.login-input::placeholder {
    color: rgba(0, 0, 0, .45);
}

.btn-login {
    background: linear-gradient(180deg, #2a80c8, #0d62b8);
    border: 0;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}

.btn-login:hover {
    filter: brightness(1.05);
}

.btn-create {
    background: linear-gradient(180deg, #d54040, #b82c2c);
    border: 0;
    color: #fff;
}

.login-terms {
    line-height: 1.4;
    font-size: .8rem;
}

.divider {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin: 1rem 0;
    color: #fff;
    font-weight: 600;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: rgba(255, 255, 255, .7);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .15);
}

.login-card .divider::before,
.login-card .divider::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .8), rgba(255, 255, 255, .1));
}

/* Regisztráció */
.reg-page {
    min-height: 100vh;
    margin: 0;
    background: #0c2a46;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reg-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.reg-plate {
    position: absolute;
    left: -12vw;
    top: -18vh;
    width: 140vw;
    height: 80vh;
    background: url("/images/ach_login_hatter.jpg") center/cover no-repeat;
    transform: rotate(-12deg);
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .35));
    opacity: .95;
    z-index: -1;
}

.reg-wrap {
    position: relative;
    z-index: 10;
    width: min(940px, 92vw);
    padding: clamp(12px, 2vw, 24px);
}

.reg-card {
    border-radius: 14px;
    background: rgba(163, 19, 42, .92);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(3px);
    padding: clamp(18px, 2.4vw, 28px);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .28);
}

.reg-logo {
    height: 48px;
    width: auto;
}

.reg-card .form-control,
.reg-card .form-select {
    color: #0b1420;
}

.reg-card .toggle-pass {
    color: #0b1420;
}

#reg-msg.alert {
    margin-top: -.25rem;
}

@media (max-width:575.98px) {
    .reg-wrap {
        width: min(600px, 96vw);
    }

    .reg-card {
        padding: 18px;
    }
}

/* 9) UTILOK, IKON-KÁRTYÁK, 404, TIMELINE ------------------------------- */
.ls-1 {
    letter-spacing: .05rem !important;
}

.ls-2 {
    letter-spacing: .10rem !important;
}

.ls-3 {
    letter-spacing: .15rem !important;
}

.ls-4 {
    letter-spacing: .30rem !important;
}

.display-7 {
    font-size: clamp(1rem, 1.2vw + 1rem, 1.5rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: .5rem;
}

.focim {
    /*font-family:"Helvetica Local",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;*/
    font-weight: 50;
    font-size: clamp(16px, 9vw, 36px);
    line-height: .95;
    margin: 0 0 .10em 0;
    letter-spacing: 0;
}

.text-helvetica {
    font-family: "Helvetica Local", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 26pt;
}

/* Profil menü – Neumorphic Soft UI gombok (fehér, ACH design) */
.profil-tiles {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.25rem;
}
.profil-tiles .col {
    display: flex;
}
.profil-tiles .neu-link {
    flex: 1;
    min-width: 0;
    text-decoration: none !important;
    display: block;
}
.profil-tiles .neu-card {
    height: 100px;
    min-height: 100px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 6px 6px 12px #e8eaed, -6px -6px 12px #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.2s ease-in-out;
    text-align: center;
    padding: 10px;
}
.profil-tiles .neu-link:hover .neu-card {
    box-shadow: inset 4px 4px 8px #e5e7eb, inset -4px -4px 8px #ffffff;
    transform: scale(0.97);
}
.profil-tiles .neu-link:hover i,
.profil-tiles .neu-link:hover .tile-label {
    color: var(--ach-blue) !important;
}
.profil-tiles .tile-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 6px;
    color: #6c757d;
    line-height: 1.2;
    word-break: break-word;
    max-width: 100%;
}

.tile-link {
    display: block;
}

.tile.card.border-secondary {
    color: var(--bs-secondary);
    background: #fff;
    transition: transform .15s, box-shadow .15s, background-color .15s, color .15s, border-color .15s;
}

.tile.card.border-secondary .text-secondary {
    color: var(--bs-secondary) !important;
}

.tile-link:hover .tile.card.border-secondary {
    background: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .08);
}

.tile-link:hover .tile.card.border-secondary .text-secondary {
    color: #fff !important;
}

/* Kapcsolat tipográfia */
.section-eyebrow {
    letter-spacing: .12em;
    font-size: .95rem;
}

.contact-list li {
    margin: .25rem 0;
}

.contact-list i {
    width: 1.25rem;
    display: inline-block;
    opacity: .7;
}

/* People list */
.people-list a {
    text-decoration: none;
}

.people-list a:hover {
    text-decoration: underline;
}

/* 404 */
.error-404 {
    min-height: 50vh;
}

.error-404__row {
    max-width: 1100px;
    margin-inline: auto;
}

.error-brand {
    height: 46px;
    width: auto;
}

.error-copy {
    max-width: 46ch;
}

.error-meerkat {
    max-width: 360px;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .12));
}

@media (max-width:575.98px) {
    .error-meerkat {
        max-width: 280px;
    }
}

/* Timeline (csak lg+) */
.ach-timeline {
    --line: var(--ach-blue);
    --ring: 70px;
}

.ach-timeline .container {
    position: relative;
    isolation: isolate;
}

.ach-timeline .tl {
    position: relative;
    padding: 50px 0;
}

@media (max-width:991.98px) {
    .ach-timeline {
        display: none !important;
    }
}

@media (min-width:992px) {
    .ach-timeline .timeline-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background: url("/images/ach_terkep_v2.jpg") center/contain no-repeat fixed;
        filter: grayscale(100%);
    }
}

.ach-timeline .tl::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-left: 2px dashed var(--line);
    z-index: 1;
}

.tl-nodes {
    position: relative;
    padding-bottom: 25px;
}

@media (min-width:992px) {
    .tl-nodes:nth-child(even) {
        flex-direction: row-reverse;
    }
}

.tl-content {
    position: relative;
    z-index: 2;
    background: #fff;
    border: 1px solid var(--ach-blue);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 3px 25px rgba(10, 55, 90, .2);
    padding: 5px 15px;
}

.tl-content h3 {
    margin: 0 0 .25rem 0;
    padding: 5px 15px;
    font-weight: 300;
    background: var(--ach-blue);
    color: #fff;
}

.tl-content p {
    color: #0b0e12;
    padding: 5px 15px;
}

.tl-date time {
    color: var(--ach-blue);
}

.tl-nodes:nth-child(odd) .tl-content::after,
.tl-nodes:nth-child(even) .tl-content::after {
    content: "";
    position: absolute;
    top: 14px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
}

.tl-nodes:nth-child(odd) .tl-content::after {
    left: 100%;
    border-left-color: var(--ach-blue);
}

.tl-nodes:nth-child(even) .tl-content::after {
    right: 100%;
    border-right-color: var(--ach-blue);
}

.tl-marker {
    display: inline-block;
    position: relative;
    z-index: 2;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #121212;
    margin-top: .25rem;
}

.tl-marker::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: var(--ring);
    height: var(--ring);
    border-radius: 50%;
    border: 2px dashed var(--line);
    background: #fff;
    z-index: -1;
}

@media (min-width:992px) {

    .tl-nodes:nth-child(odd) .tl-content h3,
    .tl-nodes:nth-child(odd) .tl-content p {
        text-align: right;
    }

    .tl-nodes:nth-child(odd) .tl-date {
        text-align: left;
    }

    .tl-nodes:nth-child(even) .tl-date {
        text-align: right;
    }
}

.tl-marker:not(:empty) {
    width: var(--ring);
    height: var(--ring);
    border-radius: 50%;
    border: 2px dashed var(--line);
    background: #fff;
    color: var(--bs-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: calc(var(--ring) * .28);
    line-height: 1;
    margin-top: 0;
}

/* Eredmény pill ---------------------------------------------------------- */
.result-pill {
    background: #04ffdf;
    color: #000;
    padding: .21rem .5rem;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .22);
    width: 100%;
}

.result-pill .val {
    font-weight: 800;
    font-size: 1.30rem;
    letter-spacing: .3px;
}

.result-pill .unit {
    opacity: .9;
    font-weight: 600;
}

.result-pending {
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(2px);
}

.result-error {
    background: #6c757d;
}

/* 10) RFQ – AJAX OVERLAY + request-strip háttér ------------------------- */
.ajax-wrap {
    position: relative;
}

.ajax-wrap.is-loading .rfq-content {
    visibility: hidden;
}

/* form tartalma eltűnik, hely marad */

/* full-screen overlay + spinner */
#rfq-overlay {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, .6);
    z-index: 2000;
}

#rfq-overlay.d-none {
    display: none;
}

#rfq-spinner {
    width: clamp(120px, 22vmin, 260px);
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

/* mobilon nagyobb */
@media (max-width:576px) {
    #rfq-spinner {
        width: clamp(240px, 44vmin, 400px);
    }
}

/* opcionális másodlagos overlay */
#rfq2-overlay {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, .6);
    z-index: 4000;
}

#rfq2-overlay.d-none {
    display: none;
}

#rfq2-overlay img {
    width: clamp(120px, 22vmin, 260px);
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

input.disabled {
    background: rgba(0, 0, 0, .05);
    cursor: not-allowed;
}

/* kapcsolati sáv háttere fixen látszódjon */
.request-strip.section--bg {
    background: url("/images/bootstrap-ACH_KALKULATOR_4.png") center/cover no-repeat !important;
}

.request-strip.section--bg.is-loading {
    background: url("/images/bootstrap-ACH_KALKULATOR_4.png") center/cover no-repeat !important;
}

/* Precizitás kártya: nőjön szabadon, ne vágódjon le a tartalom */
.service-card--content {
    overflow: visible;
    /* a belső tartalom ne vágódjon le */
}

.service-card--content .service-bottom {
    position: static;
    /* ne legyen a doboz aljához abszolút rögzítve */
}

/* (opcionális) kényelmesebb alsó belső tér nagyobb kijelzőn */
@media (min-width: 992px) {
    .service-card--content .service-content {
        padding-bottom: 1rem;
    }
}

/* Mobil/Tablet: az alsó banner (service-hero--tiny) engedje nőni a tartalmat */
@media (max-width: 991.98px) {
    .service-hero--tiny {
        min-height: auto;
        /* ne kényszerítsünk fix magasságot */
    }

    .service-hero--tiny .service-bottom {
        position: static !important;
        /* ne legyen absolute, kövesse a tartalmat */
    }
}

/* TERMEKEK – finomhangolás */
/* PROD CARD – nőjön a magasság, de a tartalom maradjon alul */
.prod-card {
    position: relative;
    display: flex;
    /* FLEX! */
    flex-direction: column;
    /* oszlopirány */
    border-radius: .75rem;
    overflow: hidden;
    color: #fff;
    background: center/cover no-repeat;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .08);
    min-height: 380px;
    /* alap magasság */
}

@media (max-width: 575.98px) {
    .prod-card {
        min-height: 280px;
    }
}

/*.prod-card .overlay{
    position:absolute;
    inset:0;
    background: linear-gradient(180deg, rgba(0,0,0,.15) 0, rgba(0,0,0,.55) 70%, rgba(0,0,0,.7) 100%);
    pointer-events:none;
}*/

.prod-card .content {
    position: relative;
    /* ne legyen absolute */
    z-index: 1;
    margin-top: auto;
    /* ← ez tolja le az aljára */
    padding: clamp(16px, 2.4vw, 28px);
}

/* belső container ne adjon extra oldalsó paddinget */
.prod-card .content .container-lg {
    padding-left: 0;
    padding-right: 0;
}

/* a belső grid ne tolja el a széleket mobilon */
.prod-card .content .container-lg {
    padding-left: 0;
    padding-right: 0;
}

.prod-card h3 {
    text-transform: uppercase;
    letter-spacing: .02em;
    font-weight: 800;
}

.prod-card p {
    max-width: 60ch;
    margin-bottom: .85rem;
}

.prod-card .btn {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

/* Link – nincs hover “mozdulás” */
a.prod-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

a.prod-link:focus-visible {
    outline: 2px solid #4EA2E0;
    outline-offset: 4px;
    border-radius: .85rem;
}

/* Háttérképek */
/*.bg-keszletpolitika { background-image:url("/images/ach_beszerzesi_politika_eu_v1.jpg"); }*/
.bg-vastaglemez {
    background-image: url("/images/ach_termekek_vastaglemez_v1.jpg");
}

.bg-szalanyag {
    /*background-image:url("/images/ach_termekek_szalanyag_v1.jpg");*/
    background-image: url("/images/ach_termekek_aluminium_szalanyag_v1.jpg");
}

.bg-vekonylemez {
    background-image: url("/images/ach_termekek_vekonylemez_v1.jpg");
}

/* Desktop háttér (alap) */
.bg-keszletpolitika {
    background-image: url("/images/ach_beszerzesi_politika_eu_v1.jpg");
    /*background-position: top center;    ahogy most használod */
    background-size: cover;
}

/* Mobilon másik háttér */
@media (max-width: 991.98px) {
    .bg-keszletpolitika {
        background-image: url("/images/ach_beszerzesi_politika_eu_mobil_v1.jpg");
        background-position: center;
    }
}

/*Tudástár*/

.bg-ach {
    background-color: var(--ach-blue) !important;
}

/*Vastaglemezek*/
/* ACH kék a gombhoz */
.btn-primary {
    background: #00a3e5;
    border-color: #00a3e5;
}

.btn-primary:hover,
.btn-primary:focus {
    filter: brightness(0.95);
}

/* Banner csík – minimál CSS, minden más Bootstrap */
.v-banner {
    position: relative;
    display: block;
    overflow: hidden;
    background: #111 center/cover no-repeat;
    min-height: 140px;
    /* mobilon picit magasabb, hogy a gomb is elférjen */
}

@media (min-width: 576px) {
    .v-banner {
        min-height: 160px;
    }
}

@media (min-width: 992px) {
    .v-banner {
        min-height: 180px;
    }
}

/* Finom sötétítés, hogy a jobb oldali szöveg mindig olvasható legyen */
.v-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .55) 55%, rgba(0, 0, 0, .70) 100%);
}

/* Tartalom: jobb oldalra igazítva, alul összezárva */
.v-banner__content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    /* nagyobb kijelzőn középmagasság */
    justify-content: flex-end;
    /* JOBB szélre */
    padding: .75rem .75rem;
}

/* Mobilon maradjon középmagasság; nagyobb kijelzőn igazítsuk lejjebb,
   hogy egy vonalban legyen a gombokkal – a képen jobbra lent */
@media (min-width: 768px) {
    .v-banner__content {
        align-items: flex-end;
        padding: 1rem 1.25rem;
    }
}

@media (min-width: 1200px) {
    .v-banner__content {
        padding: 1.25rem 1.5rem;
    }
}

/* A szövegblokk jobbra zárt, a gomb a szöveg aljával egy vonalban */
.v-banner__text {
    color: #fff;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .5rem;
    max-width: 32rem;
    /* ne fusson túl hosszúra */
}

/* Finom körív, hogy illeszkedjen a site stílusához */
.v-banner {
    border: 1px solid rgba(255, 255, 255, .06);
}

/*/// Letöltések:*/

.dl-header {
    background: var(--ach-blue);
}

/* kicsi optika a kártyához */
.dl-header+.card-body {
    border: 1px solid rgba(0, 0, 0, .075);
    border-top: 0;
    border-bottom-left-radius: .375rem;
    border-bottom-right-radius: .375rem;
}

/*Géppark*/
.bg-box01 {
    /*background-image:url("/images/ach_geppark_schelling_fm6_v1.jpg");*/
    background-image: url("/images/briganto_ap18_v1.jpg");

}

.bg-box02 {
    background-image: url("/images/ach_geppark_schelling_fm8_v1.jpg");
}

.bg-box03 {
    background-image: url("/images/ach_geppark_briganto_v1.jpg");
}

.bg-box03_1 {
    background-image: url("/images/ach_shelling_fm6_v1.jpg");
}

.bg-box04 {
    background-image: url("/images/ach_geppark_kasto_v1.jpg");
}

/*.bg-box05 { background-image:url("/images/ach_geppark_schelling_fm6_v1.jpg"); }*/
.bg-box06 {
    background-image: url("/images/ACH_GEPPARK_3.jpg");
}

.bg-box07 {
    background-image: url("/images/ACH_GEPPARK-2.jpg");
}


.topbar-metrics {
    gap: .5rem;
}

/* még kisebb rés – állítható */
.topbar-metrics .metric-badge {
    margin-right: 0;
}

/* belső me-? eltüntetése */
.topbar-metrics .metric-badge strong {
    font-weight: 600;
}

/* Kétsoros, feszes mérők a logó mellett (desktop) */
.topbar-metrics-v {
    line-height: 1.1;
}

/* kicsi sormagasság */
.topbar-metrics-v .metric-badge {
    margin: 0;
}

/* minden külső margót le */
.topbar-metrics-v .metric-badge strong {
    font-weight: 600;
}

/* ha még sűrűbb kell, engedd picit kisebbre */
@media (min-width: 992px) {
    .topbar-metrics-v .metric-badge {
        font-size: .875rem;
        /* = small */
    }
}

.topbar-metrics-grid {
    display: inline-grid;
    /* <<< kulcs: ne legyen block */
    grid-template-columns: max-content max-content 1rem max-content max-content;
    /*   [label]         [value]   [→]   [%]          [abs]   */
    column-gap: .4rem;
    row-gap: 2px;
    align-items: baseline;
    line-height: 1.1;
    font-size: .80rem;
}

.topbar-metrics-grid .arrow {
    text-align: center;
    width: 1rem;
}

.topbar-metrics-grid .arrow i {
    font-size: .95rem;
    line-height: 1;
}

#career-overlay {
    position: fixed;
    inset: 0;
    /* top/right/bottom/left: 0 */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .65);
    z-index: 1055;
    /* elég magas, hogy minden fölé kerüljön */
}

#career-overlay img {
    width: 120px;
    /* ízlés szerint */
    height: auto;
}

/* Thumbnail keret */
.glx-thumb {
    position: relative;
    overflow: hidden;
    border-radius: .5rem;
    display: block;
}

/* Alap: NINCS végleges transform érték, csak transition */
.glx-thumb img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform .6s ease, filter .6s ease;
    will-change: transform, filter;

    /* belépő animáció: csak opacity + pici translateY változóval */
    --ty: 0px;
    --scale: 1;
    /* hoverkor ezt emeljük 1.08-ra */
    opacity: 0;
    transform: translateY(var(--ty)) scale(var(--scale));
    animation: glxFadeIn .7s ease forwards;
}

/* Belépő animáció: a VÁLTOZÓT állítjuk, nem közvetlen transformot */
@keyframes glxFadeIn {
    to {
        opacity: 1;
        /* hoverkompatibilis: csak a változót nullázzuk */
        --ty: 0;
    }
}

/* Hover: csak a scale változót emeljük
   (ha GLightbox felülírja a transformot, tedd rá az !important-ot) */
.glx-thumb:hover img {
    --scale: 1.08;
    filter: brightness(0.9);
    transform: translateY(var(--ty)) scale(var(--scale)) !important;
}

/* Overlay (ACH kék) */
.glx-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background .4s ease;
}

.glx-thumb:hover::after {
    background: rgba(0, 163, 229, 0.22);
}

/* Logóváltás 768 alatt */
.logo-light {
    display: none;
}

.logo-dark {
    display: inline;
}

@media (max-width: 767.98px) {
    .logo-light {
        display: inline;
    }

    .logo-dark {
        display: none;
    }
}

/* Kapcsolat kártyák + QR gomb */
.contact-card {
    position: relative;
    padding-bottom: 2.5rem;
    /* hogy ne lógjon rá a QR gomb a szövegre */
}

.contact-qr-btn {
    position: absolute;
    right: .75rem;
    bottom: .75rem;
    border-radius: 999px;
    font-size: 1rem;
    padding: .25rem .55rem;
}

/* QR kártya alapméret (desktop) */
.qr-modal-box {
    max-width: 520px;
}

/* a kép sose lógjon ki a kártyából */
.qr-modal-img {
    max-width: 100%;
    height: auto;
}

/* Mobil: kisebb kártya, hogy biztosan ne lógjon ki és legyen „szabad” háttér is */
@media (max-width: 575.98px) {
    .qr-modal-box {
        max-width: 90vw;
    }

    .qr-modal-img {
        max-width: 100%;
        max-height: 70vh;
        /* ne érjen rá a status bar / nav sávra */
    }
}

/* Új géppark-kártya osztály */
.gp-card {
    position: relative;
    display: flex;
    justify-content: center;
    /* vízszintesen középre */
    align-items: center;
    /* függőlegesen középre */
    border-radius: .75rem;
    overflow: hidden;
    color: #fff;
    min-height: 380px;
}

.gp-card .overlay {
    position: absolute;
    inset: 0;
    /* gradient sötétítés alul: */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0) 100%);
}

.gp-card .content {
    position: relative;
    z-index: 2;
    /*text-align: center;*/
    padding: clamp(16px, 2.4vw, 28px);
    width: 100%;
}

.gp-card h3 {
    text-transform: uppercase;
    letter-spacing: .02em;
    font-weight: 800;
    margin-bottom: .5rem;
}

.gp-card p {
    margin: 0;
    max-width: 60ch;
}

/*NAV Lenyíló menü*/
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.nav-item.dropdown .dropdown-toggle.show {
    /* Bootstrap ne csukja be idő előtt */
    pointer-events: none;
}

/* ACH – finom megjegyzés szöveg */
.text-justify-ach {
    text-align: justify;
}

/* ACH – alsó sötét átmenetes overlay szöveghez */
.overlay-gradient-bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.35) 30%,
            rgba(0, 0, 0, 0.15) 50%,
            rgba(0, 0, 0, 0.0) 70%);
    pointer-events: none;
}


/* NAV dropdown – enyhén áttetsző háttér */
.navbar .dropdown-menu {
    background-color: rgba(0, 0, 0, 0.75);
    /* fekete, 75% */
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .08);
}

/* Szöveg */
.navbar .dropdown-menu .dropdown-item {
    color: #fff;
}

/* Hover */
.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus {
    background-color: rgba(255, 255, 255, .12);
    color: #fff;
}

/* Elválasztó */
.navbar .dropdown-divider {
    border-color: rgba(255, 255, 255, .2);
}




/* ===== EU KÉSZLETPOLITIKA MODAL ===== */

/* A modal-body ne görgessen, ne vágjon */
#euStockModal .modal-body {
    overflow: hidden;
}

/* Kétoszlopos layout, fix magassággal */
.eu-modal {
    display: flex;
    height: min(72vh, 720px);
    /* <<< fix “ablak” magasság */
}

/* BAL: fix térkép (nem scrollozik) */
.eu-modal-map {
    flex: 0 0 45%;
    background-image: url("/images/ach_beszerzesi_politika_eu_v1.jpg");
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}


/* JOBB: háttér fix, content flex */
.eu-modal-content {
    flex: 1;
    color: #fff;
    background: linear-gradient(90deg, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .45) 100%);
    display: flex;
    min-width: 0;
    /* fontos: ne szálljon el overflow miatt */
}

/* CSAK EZ GÖRGESSEN */
.eu-modal-scroll {
    padding: 3rem;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 100%;
    width: 100%;
}

/* tipó */
.eu-modal-content h3 {
    font-weight: 800;
    margin-bottom: 1rem;
}

.eu-modal-content p {
    opacity: .9;
    line-height: 1.6;
}

.eu-modal-content ul {
    margin-top: 1rem;
    padding-left: 1.1rem;
}

.eu-modal-content li {
    margin-bottom: .5rem;
}

/* MOBIL: egymás alá, a térkép fix blokk, a szöveg alatta görgethető */
@media (max-width: 991.98px) {
    .eu-modal {
        flex-direction: column;
        height: min(82vh, 820px);
    }

    .eu-modal-map {
        flex: 0 0 auto;
        height: 240px;
        /* fix térkép blokk */
        background-image: url("/images/ach_beszerzesi_politika_eu_v2.jpg");
        background-size: cover;
        background-position: center;
    }

    .eu-modal-scroll {
        padding: 1.5rem;
    }
}

.contact-card {
    position: relative;
    padding-bottom: 48px;
    /* kell hely a sarok ikonoknak */
}

.contact-qr-btn,
.contact-link-btn {
    position: absolute;
    bottom: 12px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.contact-qr-btn {
    right: 12px;
}

.contact-link-btn {
    left: 12px;
}

#dl-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, .85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

#dl-overlay.d-none {
    display: none;
}

#dl-overlay img {
    width: 140px;
    height: auto;
}

#eidTable thead th.sorted-asc::after {
    content: " ▲";
    font-size: 12px;
}

#eidTable thead th.sorted-desc::after {
    content: " ▼";
    font-size: 12px;
}

#eidTable thead th {
    white-space: nowrap;
    vertical-align: middle;
}

#eidTable thead th .th-label {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    white-space: nowrap;
}

/* nyilak: ne ::after legyen, hanem span */
#eidTable thead th .sort-ind {
    font-size: 12px;
    line-height: 1;
    opacity: .75;
}

.nowrap {
    white-space: nowrap;
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #ddd;
}

/* Üzletkötő értékelése modal */
.ach-rating-card {
    border: 1px solid #e9ecef;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, .04);
}

.ach-rating-head {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e9ecef;
    border-radius: 14px 14px 0 0;
}

.ach-rating-row {
    border: 1px solid #edf0f2;
    border-radius: 12px;
    padding: 14px;
    background: #fbfcfd;
}

.ach-rating-scale {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.ach-rating-scale .form-check {
    margin: 0;
}

.ach-rating-scale .form-check-input {
    display: none;
}

.ach-rating-scale .form-check-label {
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #d7dce1;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
    font-weight: 600;
    transition: all .15s ease-in-out;
    user-select: none;
}

.ach-rating-scale .form-check-input:checked+.form-check-label {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
    box-shadow: 0 0 0 .2rem rgba(13, 110, 253, .15);
}

.ach-rating-scale .na-label {
    min-width: 58px;
}

.ach-rating-help {
    font-size: .875rem;
    color: #6c757d;
}

.ach-rating-success {
    display: none;
}