header.header_big .logo a img {
    max-height: 80px;
}

header.header_big .header__top .form-inline {
    padding: 23px 0;
}

header.header_big .header__top .logo {
    padding-top: 5px;
    padding-bottom: 5px;
}

header.header_big .bg-dark {
    background: #fff !important;
}

header.header_big .logo--default {
    margin-top: 20px;
}

header.header_big .logo.logo--default a img {
    max-height: 45px;
    height: 45px;
}

/* Custom top header scrolled animation */
.custom-top-header::after {
    border-bottom: 2px solid var(--primary-color);
    width: 0%;
    left: 0;
    right: 0;
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    margin: 0 auto;
    -moz-transform-style: preserve-3d;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -ms-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-timing-function: linear;
    -moz-transition-timing-function: linear;
    -ms-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-duration: 1s;
    -moz-transition-duration: 1s;
    -ms-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.scrolled .custom-top-header::after {
    width: 100%;
}

/* for mobile top bar */
.navigation__content .navbar .navbar-header.bg-dark {
    background: #fff !important;
}

.default-logo-height {
    padding: 12px 0 !important;
    margin-top: 12px !important;
}

@media (max-width: 767px) {
    .section_section-top-header .btn-text-wrap {
        white-space: normal !important;
        line-height: 1.3 !important;
        display: block !important;
        height: 60px !important;
        padding: 9px 5px !important;
        font-size: 18px !important;
    }
}

/* Custom Header Login Button (BEM Style) */
.topbar-login {
    display: inline-flex !important;
    align-items: center !important;
    vertical-align: middle !important;
    gap: 6px !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer !important;
    outline: none !important;
    text-decoration: none !important;
    margin-right: 30px !important;
    margin-top: -3px !important;
}

.topbar-login__icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 20px !important;
    height: 20px !important;
    color: #000 !important;
}

.topbar-login__icon svg {
    width: 100% !important;
    height: 100% !important;
}

.topbar-login__text {
    color: #000 !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

/* White/light header (bg-dark) — icons and text stay black (default above) */

/* Dark/black header (bg-light) — icons and text become white */
.bg-light .topbar-login__icon {
    color: #fff !important;
}

.bg-light .topbar-login__text {
    color: #fff !important;
}

.topbar-login:hover .topbar-login__text,
.topbar-login:hover .topbar-login__icon {
    opacity: 0.8;
}

/* Mobile topbar login/support icon styles */
.mobile-topbar-login {
    float: right;
    background: transparent;
    border: none;
    padding: 4px 6px;
    margin-top: 17px;
    margin-right: 5px;
    cursor: pointer;
    outline: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #000 !important;
    text-decoration: none !important;
    transition: color 0.15s ease-in-out, transform 0.15s ease-in-out;
}

.mobile-topbar-login svg {
    width: 20px !important;
    height: 20px !important;
}

.mobile-topbar-login__text {
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
}

/* White/light mobile header (bg-dark) — icons stay black (default above) */

/* Dark/black mobile header (bg-light) — icons and text become white */
.navbar-header.bg-light .mobile-topbar-login {
    color: #fff !important;
}

.navbar-header.bg-light .mobile-topbar-login__text {
    color: #fff !important;
}

.mobile-topbar-login:hover, .mobile-topbar-login:focus {
    opacity: 0.8;
    outline: none;
}

.mobile-topbar-login:active {
    transform: scale(0.92);
}