:root {
    --gu-primary: #1769e0;
    --gu-primary-dark: #0d4db7;
    --gu-primary-soft: #eaf3ff;
    --gu-accent: #06b6d4;

    --gu-text: #172033;
    --gu-muted: #68758b;

    --gu-bg: #f6f8fc;
    --gu-surface: #ffffff;
    --gu-border: #e4e9f2;

    --gu-success: #0ea56b;

    --gu-radius: 18px;
    --gu-radius-lg: 26px;

    --gu-shadow:
        0 12px 35px rgba(24, 44, 82, .08);
}


html {
    scroll-behavior: smooth;
}


body.gulfupp-site {
    margin: 0;
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 50% -100px,
            rgba(23,105,224,.12),
            transparent 390px
        ),
        var(--gu-bg);

    color: var(--gu-text);

    font-family:
        "Segoe UI",
        Tahoma,
        Arial,
        sans-serif;

    font-size: 15px;
    line-height: 1.7;

    -webkit-font-smoothing: antialiased;
}


a {
    color: var(--gu-primary);
}


a:hover {
    color: var(--gu-primary-dark);
    text-decoration: none;
}


img {
    max-width: 100%;
}


.gu-header {
    position: relative;
    z-index: 100;

    background: rgba(255,255,255,.96);

    border-bottom:
        1px solid rgba(224,230,240,.9);

    box-shadow:
        0 4px 20px rgba(25,45,80,.04);
}


.gu-navbar {
    min-height: 76px;

    padding-top: 9px;
    padding-bottom: 9px;

    background: transparent;
}


.gu-brand {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    padding: 0;

    color: var(--gu-text) !important;
}


.gu-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    border-radius: 15px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--gu-primary),
            var(--gu-accent)
        );

    box-shadow:
        0 8px 20px rgba(23,105,224,.22);
}


.gu-arrow {
    display: block;

    transform: translateY(-1px);

    font-size: 29px;
    font-weight: 700;

    line-height: 1;
}


.gu-brand-copy {
    display: flex;
    flex-direction: column;

    line-height: 1.12;
}


.gu-brand-copy strong {
    color: var(--gu-text);

    font-size: 20px;
    font-weight: 800;

    letter-spacing: -.3px;
}


.gu-brand-copy small {
    margin-top: 5px;

    color: var(--gu-muted);

    font-size: 10.5px;
    font-weight: 500;
}


.gu-navbar .navbar-nav {
    align-items: center;
}


.gu-navbar .nav-link {
    margin: 0 2px;

    padding: 9px 11px !important;

    border-radius: 10px;

    color: #536078;

    font-weight: 600;

    transition:
        background .15s ease,
        color .15s ease;
}


.gu-navbar .nav-link:hover,
.gu-navbar .nav-link.active {
    color: var(--gu-primary);

    background: var(--gu-primary-soft);
}


.gu-account-menu {
    margin-inline-start: auto;
}


.gu-account-menu::before {
    display: block;

    width: 1px;
    height: 24px;

    margin: 0 8px;

    content: "";

    background: var(--gu-border);
}


.gu-user-pill {
    display: inline-flex;

    margin-inline-start: 6px;

    padding: 6px 11px;

    border-radius: 999px;

    color: var(--gu-primary-dark);

    background: var(--gu-primary-soft);

    font-size: 12px;
    font-weight: 700;
}


.gu-toggler {
    padding: 7px 9px;

    border: 1px solid var(--gu-border);
    border-radius: 10px;

    background: var(--gu-primary);
}


.gu-main {
    min-height: 70vh;
}


.gu-extra {
    text-align: center;
}


.gu-extra-top {
    margin: 18px 0;
}


.gu-extra-bottom {
    margin: 28px 0;
}


.gu-hero {
    max-width: 890px;

    margin: 48px auto 26px;

    text-align: center;
}


.gu-hero-label,
.gu-section-kicker {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--gu-primary-dark);

    font-size: 12px;
    font-weight: 800;
}


.gu-hero-label {
    padding: 7px 12px;

    border:
        1px solid rgba(23,105,224,.13);

    border-radius: 999px;

    background: rgba(234,243,255,.75);
}


.gu-status-dot,
.gu-online-dot {
    display: inline-block;

    width: 7px;
    height: 7px;

    border-radius: 999px;

    background: var(--gu-success);

    box-shadow:
        0 0 0 4px rgba(14,165,107,.10);
}


.gu-hero h1 {
    max-width: 760px;

    margin:
        17px auto 11px;

    color: #111a2d;

    font-size:
        clamp(30px, 5vw, 48px);

    font-weight: 800;

    line-height: 1.25;

    letter-spacing: -.9px;
}


.gu-hero-lead {
    max-width: 710px;

    margin: 0 auto;

    color: var(--gu-muted);

    font-size: 16px;
    line-height: 1.9;
}


.gu-limit-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 8px;

    margin-top: 18px;
}


.gu-limit-chip {
    display: inline-flex;
    align-items: center;

    padding: 7px 11px;

    border: 1px solid var(--gu-border);
    border-radius: 999px;

    color: #5e6b80;

    background: rgba(255,255,255,.8);

    font-size: 12px;
    font-weight: 700;
}


.gu-limit-primary {
    border-color: rgba(23,105,224,.13);

    color: var(--gu-primary-dark);

    background: var(--gu-primary-soft);
}


.gu-welcome-note {
    max-width: 680px;

    margin: 16px auto 0;

    color: #718096;

    font-size: 12px;
}


.gu-message-stack {
    max-width: 900px;

    margin: 16px auto;
}


.gu-upload-section {
    max-width: 900px;

    margin: 30px auto 0;

    overflow: hidden;

    border: 1px solid var(--gu-border);
    border-radius: var(--gu-radius-lg);

    background: var(--gu-surface);

    box-shadow: var(--gu-shadow);
}


.gu-upload-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 28px 30px 20px;
}


.gu-section-kicker {
    margin-bottom: 3px;
}


.gu-upload-heading h2 {
    margin: 2px 0 3px;

    color: var(--gu-text);

    font-size: 23px;
    font-weight: 800;
}


.gu-upload-heading p {
    margin: 0;

    color: var(--gu-muted);

    font-size: 13px;
}


.gu-upload-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    flex: 0 0 54px;

    border-radius: 17px;

    color: var(--gu-primary);

    background: var(--gu-primary-soft);

    font-size: 30px;
    font-weight: 800;
}


.gu-uploader {
    padding: 4px 30px 30px;
}


.gu-captcha {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    margin: 4px 0 18px;
    padding: 15px;

    border: 1px solid var(--gu-border);
    border-radius: 16px;

    background: #fafbfe;
}


.gu-captcha-copy {
    display: flex;
    flex-direction: column;

    min-width: 0;
}


.gu-captcha-copy strong {
    color: var(--gu-text);
}


.gu-captcha-copy small {
    margin-top: 2px;

    color: var(--gu-muted);

    font-size: 11px;
}


.gu-captcha-controls {
    display: flex;
    align-items: center;

    gap: 10px;
}


.gu-captcha-controls img {
    max-width: 150px;
    max-height: 58px;

    cursor: pointer;

    border-radius: 8px;
}


.gu-captcha-controls .form-control {
    width: 120px;

    border-color: var(--gu-border);
    border-radius: 10px;

    text-align: center;

    font-size: 17px;
}


.gu-file-list {
    display: grid;

    gap: 10px;
}


.gu-file-picker {
    display: flex;
    align-items: center;

    gap: 13px;

    min-height: 74px;

    padding: 11px 13px;

    cursor: pointer;

    border: 1.5px dashed #cbd5e3;
    border-radius: 15px;

    background: #fbfcff;

    transition:
        border-color .15s ease,
        background .15s ease,
        transform .15s ease,
        box-shadow .15s ease;
}


.gu-file-picker:hover {
    transform: translateY(-1px);

    border-color: rgba(23,105,224,.65);

    background: #f7faff;

    box-shadow:
        0 6px 18px rgba(23,105,224,.06);
}


.gu-file-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 39px;
    height: 39px;

    flex: 0 0 39px;

    border-radius: 12px;

    color: var(--gu-primary);

    background: var(--gu-primary-soft);

    font-size: 24px;
    font-weight: 500;
}


.gu-file-copy {
    display: flex;
    flex: 1;
    flex-direction: column;

    min-width: 0;
}


.gu-file-copy strong {
    color: #26334a;

    font-size: 13px;
}


.gu-file-name {
    width: 100%;

    overflow: hidden;

    padding: 1px 0;

    border: 0;
    outline: 0;

    color: var(--gu-muted);

    background: transparent;

    font-size: 11px;

    text-overflow: ellipsis;
    white-space: nowrap;
}


.gu-file-name:disabled {
    opacity: 1;
}


.gu-browse-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 76px;

    padding: 8px 12px;

    border-radius: 10px;

    color: var(--gu-primary);

    background: var(--gu-primary-soft);

    font-size: 12px;
    font-weight: 800;
}


.gu-submit-area {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 20px;
}


.gu-terms {
    max-width: 600px;

    color: var(--gu-muted);
}


.gu-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-width: 155px;

    padding: 12px 22px;

    border: 0;
    border-radius: 13px;

    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            var(--gu-primary),
            #2587ef
        );

    box-shadow:
        0 8px 20px rgba(23,105,224,.18);

    font-size: 14px;
    font-weight: 800;
}


.gu-submit:hover,
.gu-submit:focus {
    transform: translateY(-1px);

    background:
        linear-gradient(
            135deg,
            var(--gu-primary-dark),
            var(--gu-primary)
        );

    box-shadow:
        0 10px 24px rgba(23,105,224,.25);
}


#loadbox {
    display: none;
}


.gu-loading {
    align-items: center;
    justify-content: center;

    gap: 14px;

    min-height: 150px;

    margin: 0 30px 30px;
    padding: 20px;

    border-radius: 16px;

    color: var(--gu-primary-dark);

    background: var(--gu-primary-soft);

    text-align: center;
}


.gu-loading-spinner {
    width: 28px;
    height: 28px;

    border:
        3px solid rgba(23,105,224,.15);

    border-top-color: var(--gu-primary);

    border-radius: 50%;

    animation:
        guSpin .8s linear infinite;
}


@keyframes guSpin {
    to {
        transform: rotate(360deg);
    }
}


.gu-benefits {
    display: grid;

    max-width: 900px;

    margin: 18px auto;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;
}


.gu-benefit {
    display: flex;
    align-items: center;

    gap: 11px;

    padding: 15px;

    border: 1px solid var(--gu-border);
    border-radius: 15px;

    background: rgba(255,255,255,.72);
}


.gu-benefit > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    flex: 0 0 35px;

    border-radius: 10px;

    color: var(--gu-primary);

    background: var(--gu-primary-soft);

    font-weight: 800;
}


.gu-benefit div {
    display: flex;
    flex-direction: column;
}


.gu-benefit strong {
    color: #29364d;

    font-size: 12.5px;
}


.gu-benefit small {
    margin-top: 1px;

    color: var(--gu-muted);

    font-size: 10px;
}


.gu-online {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    max-width: 900px;

    margin: 16px auto 0;
    padding: 10px 14px;

    color: var(--gu-muted);

    font-size: 11px;
}


.gu-online-names {
    display: flex;
    flex-wrap: wrap;

    gap: 4px;
}


/*
 * General Kleeja pages:
 * login / register / profile / download / fileuser
 */

.gu-main > .container > h1,
.gu-main > .container > h2 {
    color: var(--gu-text);
}


.form-control {
    min-height: 44px;

    border-color: var(--gu-border);
    border-radius: 10px;

    box-shadow: none !important;
}


.form-control:focus {
    border-color: rgba(23,105,224,.6);
}


.btn {
    border-radius: 10px;
}


.card,
.jumbotron,
.list-group-item {
    border-color: var(--gu-border);
}


.card {
    border-radius: 15px;
}


.jumbotron {
    border-radius: 18px;

    background: #f5f8fd;
}


.file-user-image img {
    width: 100%;

    border-radius: 12px;

    transition:
        transform .18s ease,
        box-shadow .18s ease;

    box-shadow:
        0 3px 10px rgba(0,0,0,.07);
}


.file-user-image img:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(0,0,0,.10);
}


.file-user-file {
    transition:
        transform .18s ease,
        box-shadow .18s ease;
}


.file-user-file:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(0,0,0,.10);
}


.kcheck-image {
    position: absolute;

    bottom: 10px;
    left: 20px;

    z-index: 10;
}


@media (min-width: 992px) {
    .card-columns {
        column-count: 4;
    }
}


.debug_kleeja {
    width: 80%;

    margin: 20px 0;

    border: 1px solid #666;

    background: #fff;
}


.debug_kleeja fieldset {
    width: 80%;

    margin: 0 auto;
}


.g-recaptcha div {
    width: 100% !important;

    margin: 4px auto;
}


.gu-footer {
    max-width: 900px;

    margin: 48px auto 20px;
    padding: 22px 0;

    border-top: 1px solid var(--gu-border);
}


.gu-footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.gu-footer-brand {
    display: flex;
    flex-direction: column;
}


.gu-footer-brand strong {
    color: var(--gu-text);

    font-size: 17px;
    font-weight: 800;
}


.gu-footer-brand small {
    color: var(--gu-muted);

    font-size: 10px;
}


.gu-footer-copy {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;

    gap: 8px 16px;

    color: var(--gu-muted);

    font-size: 10.5px;
}


.gu-kleeja-credit a {
    color: inherit;
}


.gu-page-stats {
    margin-top: 10px;

    color: #98a2b3;

    font-size: 9px;

    text-align: center;
}


/* language-switch plugin */
#langSwitch {
    position: relative !important;

    z-index: 110 !important;
}


#langSwitchInner {
    top: 8px !important;
    left: 12px !important;

    display: flex;

    gap: 3px;

    padding: 4px !important;

    border: 1px solid var(--gu-border);
    border-radius: 9px;

    background: rgba(255,255,255,.94) !important;

    box-shadow:
        0 4px 12px rgba(0,0,0,.05);
}


#langSwitchInner img {
    display: block;

    width: 16px;
    height: 16px;

    padding: 0 !important;

    border: 0 !important;
}


@media (max-width: 991.98px) {

    .gu-navbar {
        min-height: 68px;
    }

    .gu-brand-copy small {
        display: none;
    }

    .gu-navbar .navbar-collapse {
        margin-top: 12px;
        padding: 12px;

        border: 1px solid var(--gu-border);
        border-radius: 14px;

        background: #fff;

        box-shadow: var(--gu-shadow);
    }

    .gu-navbar .navbar-nav {
        align-items: stretch;
    }

    .gu-account-menu {
        margin-inline-start: 0;
    }

    .gu-account-menu::before {
        width: 100%;
        height: 1px;

        margin: 8px 0;

        background: var(--gu-border);
    }

    .gu-hero {
        margin-top: 32px;
    }

    .gu-benefits {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 575.98px) {

    body.gulfupp-site {
        font-size: 14px;
    }

    .container {
        width: 100%;
        max-width: none;

        padding-right: 14px;
        padding-left: 14px;
    }

    .gu-brand-mark {
        width: 40px;
        height: 40px;

        flex-basis: 40px;

        border-radius: 12px;
    }

    .gu-brand-copy strong {
        font-size: 18px;
    }

    .gu-hero {
        margin-top: 26px;
    }

    .gu-hero h1 {
        margin-top: 13px;

        font-size: 29px;

        letter-spacing: -.4px;
    }

    .gu-hero-lead {
        font-size: 14px;
    }

    .gu-upload-section {
        margin-top: 22px;

        border-radius: 20px;
    }

    .gu-upload-heading {
        padding: 22px 18px 15px;
    }

    .gu-upload-icon {
        width: 44px;
        height: 44px;

        flex-basis: 44px;

        border-radius: 14px;

        font-size: 25px;
    }

    .gu-upload-heading h2 {
        font-size: 20px;
    }

    .gu-uploader {
        padding: 3px 18px 20px;
    }

    .gu-captcha {
        align-items: stretch;
        flex-direction: column;
    }

    .gu-captcha-controls {
        justify-content: space-between;
    }

    .gu-captcha-controls .form-control {
        flex: 1;
        width: auto;
    }

    .gu-file-picker {
        min-height: 68px;

        padding: 9px;
    }

    .gu-file-circle {
        width: 35px;
        height: 35px;

        flex-basis: 35px;
    }

    .gu-browse-button {
        min-width: auto;

        padding: 7px 9px;
    }

    .gu-submit-area {
        align-items: stretch;
        flex-direction: column;
    }

    .gu-submit {
        width: 100%;

        min-height: 48px;
    }

    .gu-loading {
        margin:
            0 18px 20px;
    }

    .gu-footer-main {
        align-items: flex-start;
        flex-direction: column;
    }

    .gu-footer-copy {
        justify-content: flex-start;
    }

    #langSwitchInner {
        top: 4px !important;
        left: 5px !important;
    }

}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;
    }

}


/* ============================================================
   GULFUPP_UI_POLISH_V1
   Mobile menu, progressive uploader, captcha, language switch,
   footer cleanup. UI only.
   ============================================================ */


/* Visible hamburger icon */
.gu-toggler .navbar-toggler-icon {
    width: 24px;
    height: 24px;

    background-image:
        linear-gradient(#fff, #fff),
        linear-gradient(#fff, #fff),
        linear-gradient(#fff, #fff);

    background-repeat: no-repeat;

    background-size:
        21px 2px,
        21px 2px,
        21px 2px;

    background-position:
        center 5px,
        center 11px,
        center 17px;
}


/* Selected upload row */
.gu-file-picker.gu-file-selected {
    border-style: solid;
    border-color: rgba(23,105,224,.40);

    background: #f3f8ff;

    box-shadow:
        0 5px 16px rgba(23,105,224,.07);
}


.gu-file-picker.gu-file-selected .gu-file-circle {
    color: #fff;
    background: var(--gu-success);
}


.gu-file-picker.gu-file-selected .gu-browse-button {
    color: var(--gu-primary-dark);
    background: #dfeeff;
}


/* Cleaner navigation on desktop */
@media (min-width: 992px) {

    .gu-navbar .nav-link {
        padding:
            8px 9px !important;

        font-size: 12px;
    }

    .gu-main-menu {
        margin-inline-start: 12px;
    }

}


/* Technical generation stats are not useful to normal visitors */
.gu-page-stats {
    display: none;
}


/* Slightly more readable footer */
.gu-footer-copy {
    font-size: 11.5px;
    line-height: 1.9;
}


.gu-footer-brand small {
    margin-top: 3px;

    font-size: 10.5px;
}


/* Prevent language flags from looking detached */
#langSwitchInner {
    min-height: 28px;

    align-items: center;
    justify-content: center;
}


#langSwitchInner a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 23px;
    height: 23px;

    border-radius: 6px;
}


#langSwitchInner a:hover {
    background: var(--gu-primary-soft);
}


/* --------------------------------------------
   Tablet / mobile
   -------------------------------------------- */

@media (max-width: 991.98px) {

    .gu-navbar .navbar-collapse {
        max-height: calc(100vh - 100px);

        overflow-y: auto;
    }

    .gu-navbar .nav-link {
        min-height: 42px;

        display: flex;
        align-items: center;
    }

}


/* --------------------------------------------
   Small mobile
   -------------------------------------------- */

@media (max-width: 575.98px) {

    /*
     * Toggler is on the left in the current RTL header.
     * Move language switch next to it instead of above it.
     */
    #langSwitchInner {
        top: 17px !important;
        left: 68px !important;

        min-height: 27px;

        padding: 2px !important;
    }


    #langSwitchInner a {
        width: 21px;
        height: 21px;
    }


    #langSwitchInner img {
        width: 16px !important;
        height: 16px !important;
    }


    /* Compact hero */
    .gu-hero {
        margin-top: 22px;
        margin-bottom: 20px;
    }


    .gu-hero-label {
        padding: 6px 10px;

        font-size: 11px;
    }


    .gu-hero h1 {
        margin-top: 12px;
        margin-bottom: 8px;

        font-size: 28px;
        line-height: 1.28;
    }


    .gu-hero-lead {
        max-width: 330px;

        font-size: 13.5px;
        line-height: 1.9;
    }


    .gu-limit-row {
        gap: 6px;

        margin-top: 14px;
    }


    .gu-limit-chip {
        padding: 6px 9px;

        font-size: 10.5px;
    }


    .gu-welcome-note {
        margin-top: 12px;

        font-size: 10.5px;
        line-height: 1.8;
    }


    /* Upload card */
    .gu-upload-heading {
        align-items: flex-start;
    }


    .gu-upload-heading p {
        max-width: 220px;

        line-height: 1.8;
    }


    /* CAPTCHA: no horizontal squeezing */
    .gu-captcha-controls {
        flex-direction: column;

        align-items: stretch;
        justify-content: center;
    }


    .gu-captcha-controls img {
        display: block;

        width: auto;
        max-width: 100%;
        max-height: 64px;

        margin: 0 auto;
    }


    .gu-captcha-controls .form-control {
        width: 100%;

        min-height: 46px;

        text-align: center;
    }


    /* Shorter upload rows */
    .gu-file-picker {
        min-height: 63px;

        gap: 9px;
    }


    .gu-file-copy strong {
        font-size: 12px;
    }


    .gu-file-name {
        font-size: 10px;
    }


    .gu-browse-button {
        font-size: 11px;
    }


    /* Benefits */
    .gu-benefit {
        min-height: 70px;

        padding: 13px 14px;
    }


    .gu-benefit strong {
        font-size: 12px;
    }


    .gu-benefit small {
        font-size: 9.5px;
        line-height: 1.7;
    }


    /* Footer */
    .gu-footer {
        margin-top: 34px;
        margin-bottom: 12px;

        padding-top: 20px;
    }


    .gu-footer-main {
        gap: 13px;
    }


    .gu-footer-copy {
        gap: 5px 12px;

        font-size: 10.5px;
        line-height: 1.9;
    }

}


/* ============================================================
   GULFUPP_UI_POLISH_V2
   Final mobile navbar + language switch + captcha cleanup
   ============================================================ */


/*
 * Reliable hamburger.
 * Do not depend on Bootstrap's SVG background icon.
 */
.gu-toggler {
    position: relative;

    width: 44px;
    height: 44px;

    padding: 0 !important;
}


.gu-toggler .navbar-toggler-icon {
    position: absolute;

    top: 50%;
    left: 50%;

    display: block;

    width: 22px;
    height: 2px;

    transform: translate(-50%, -50%);

    border-radius: 2px;

    background: #fff !important;
    background-image: none !important;
}


.gu-toggler .navbar-toggler-icon::before,
.gu-toggler .navbar-toggler-icon::after {
    position: absolute;

    left: 0;

    display: block;

    width: 22px;
    height: 2px;

    content: "";

    border-radius: 2px;

    background: #fff;
}


.gu-toggler .navbar-toggler-icon::before {
    top: -7px;
}


.gu-toggler .navbar-toggler-icon::after {
    top: 7px;
}


/*
 * Language plugin:
 * position the wrapper itself, not only its inner element.
 */
#langSwitch {
    position: fixed !important;

    top: 15px !important;
    left: 14px !important;

    width: auto !important;
    height: auto !important;

    z-index: 1200 !important;
}


#langSwitchInner {
    position: static !important;

    display: flex !important;
    align-items: center !important;

    gap: 2px;

    padding: 3px !important;

    border: 1px solid var(--gu-border) !important;
    border-radius: 9px !important;

    background: rgba(255,255,255,.97) !important;

    box-shadow:
        0 4px 12px rgba(22,41,74,.08);
}


#langSwitchInner a {
    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    padding: 0 !important;

    border-radius: 6px;
}


#langSwitchInner img {
    display: block !important;

    width: 16px !important;
    height: 16px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
}


/*
 * Page stats have also been removed from source.
 * Keep this as a defensive fallback.
 */
.gu-page-stats {
    display: none !important;
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 575.98px) {


    /*
     * hamburger at far left,
     * language switch beside it
     */
    #langSwitch {
        top: 13px !important;
        left: 69px !important;
    }


    /*
     * Give mobile header a predictable height.
     */
    .gu-navbar {
        min-height: 68px;
    }


    /*
     * CAPTCHA must never squeeze horizontally.
     */
    .gu-captcha {
        display: block !important;

        padding: 14px !important;
    }


    .gu-captcha-copy {
        margin-bottom: 12px;

        text-align: start;
    }


    .gu-captcha-controls {
        display: grid !important;

        width: 100% !important;

        grid-template-columns: 1fr !important;

        gap: 10px !important;
    }


    .gu-captcha-controls img {
        display: block !important;

        width: auto !important;
        max-width: 190px !important;
        height: auto !important;
        max-height: 70px !important;

        margin: 0 auto !important;

        justify-self: center !important;
    }


    .gu-captcha-controls .form-control {
        display: block !important;

        width: 100% !important;
        max-width: none !important;
        min-height: 46px !important;

        margin: 0 !important;

        text-align: center !important;

        font-size: 18px !important;
    }


    /*
     * Small visual refinement for the upload card.
     */
    .gu-upload-section {
        box-shadow:
            0 10px 30px rgba(24,44,82,.07);
    }


    .gu-file-picker {
        border-color: #c7d8ef;
    }


    /*
     * Footer: readable but compact.
     */
    .gu-footer {
        padding-bottom: 6px;
    }


    .gu-footer-copy {
        line-height: 2;
    }

}


/* ============================================================
   GULFUPP_FINAL_BRAND_LOGO
   Local SVG cloud/upload identity
   ============================================================ */


.gu-brand-mark-logo {
    overflow: visible;

    background: transparent;

    box-shadow: none;
}


.gu-brand-mark-logo img {
    display: block;

    width: 46px;
    height: 46px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 7px 12px rgba(23,105,224,.18)
        );
}


.gu-brand-copy strong {
    color: #0e1a31;

    font-size: 21px;
    font-weight: 850;

    letter-spacing: -.55px;
}


.gu-footer-logo-row {
    display: flex;
    align-items: center;

    gap: 8px;
}


.gu-footer-logo-row img {
    display: block;

    width: 32px;
    height: 32px;

    object-fit: contain;
}


.gu-footer-logo-row strong {
    color: #0e1a31;

    font-size: 18px;
    font-weight: 850;

    letter-spacing: -.4px;
}


@media (max-width: 575.98px) {

    .gu-brand-mark-logo {
        width: 40px;
        height: 40px;

        flex-basis: 40px;
    }


    .gu-brand-mark-logo img {
        width: 40px;
        height: 40px;
    }


    .gu-brand-copy strong {
        font-size: 19px;
    }


    .gu-footer-logo-row img {
        width: 29px;
        height: 29px;
    }


    .gu-footer-logo-row strong {
        font-size: 17px;
    }

}
