#buttonInHeader {
    margin: 11px 0 0 12px !important; 
    position: relative;
    z-index: 9;
}
  div#buttonInHeader#buttonInHeader#buttonInHeader a{
   color: var(--cmty-white) !important;
}
  
.dc-button {
      font-size: var(--cmty-font-size-sm);
      line-height: normal !important;
      width: 158px;
      display: flex !important;
      align-items: center; 
      justify-content: center;
      background: var(--dc-button-background-color) !important;
      border-radius: 2px;
      border-color: var(--dc-button-background-color) !important;
      color: var(--cmty-white) !important;
}

section:first-of-type {
    overflow: visible;
}

.CoveoSearchbox .CoveoSearchButton {
    background-color: var(--cmty-white)!important;
}


.dc-popover-content-user-profile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;
    width: 273px;
    background: var(--cmty-white);
    border-radius: 4px;
    filter: drop-shadow(0px 0.6px 1.8px rgba(0, 0, 0, 0.1)) drop-shadow(0px 3.2px 7.2px rgba(0, 0, 0, 0.13));
    gap: 16px;
    border-radius: 4px !important;
}

.dc-popover-user-profile-header {
    background: var(--cmty-white) !important;
    border-radius: 4px !important;
}

.dc-user-detail-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 10px;
    height: 50px;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-img-persona,
.user-img-persona img {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    max-width: unset !important;
}

.dc-user-profile-clickable-link {
    font-family: var(--cmty-font-family) !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: var(--cmty-font-size-sm) !important;
    line-height: 20px !important;
    color: var(--dc-button-background-color) !important;
    padding: 0px !important;
    cursor: pointer;
}

.user-profile-extralinks {
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: 100%;
}

.dc-logged-user-name {
    font-family: var(--cmty-font-family);
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    color: var(--cmty-neutrals-web-gray190);
    font-size: var(--cmty-font-size-sm) !important;
}

.dc-logged-user-pic, .dc-logged-user-pic img {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    width: 32px;
    height: 32px;
    border-radius: 16px;
}

.user-info > .name {
    font-family: var(--cmty-font-family);
    font-style: normal;
    font-weight: 600;
    font-size: var(--cmty-font-size-sm);
    line-height: 20px;
    color: var(--cmty-black);
    word-break: break-all;
}

.user-info > .email {
    font-family: var(--cmty-font-family);
    font-style: normal;
    font-weight: 400;
    font-size: var(--cmty-font-size-sm);
    line-height: 20px;
    color: var(--cmty-black);
}

.dc-hr-seprator {
    border: 0.75px solid #C8C6C4;
}

.dc-profile-header-container {
    gap: 12px;
}
img#usernoprofilepic {
    content: var(--cmty--profileImage-url);
    background: var(--cmty--profileImage-background);
    background: var(--cmty--profileImage-gradient); 
    padding: var(--cmty--profileImage-padding);
}
@media (max-width:640px){ 
    #bapi-header .bapi-top-bar__separator{
        display: none !important;
    }
    #bapi-header .bapi-top-bar__brand{
        position: absolute !important;
        top: 52px;
        z-index: 99;
        height: 47px !important;
        left: 47px;
    }
    #bapi-header #site-searchbox-mini{
        z-index: 99;
        background: var(--cmty-white);
    }
}

@media (max-width:1147px){ 
    #top-nav .nav-items-right-container #site-search-link span:first-child{
        display:none;
    }
}

/* Home Page Section first banner */

/**
- Hero banner css
**/
:root {
    --hero-background-image-default: url(/hero-background.png);
    --hero-background-image-left: url(/hero-background-left.png);
}

.banner-top {
    background-color: var(--theme-primary-invert);
    padding: 14px 23px;
    margin: 0;
}

    .banner-top h2 {
        font-family: var(--cmty-font-family);
        font-weight: 600;
        font-size: 18px;
        line-height: 28px;
        letter-spacing: 0px;
        vertical-align: middle;
        color: var(--theme-text);
        margin: 0;
    }

.hero-banner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    background: #eef0f2;
    padding-inline: 40px; /* Adds padding on both sides */
    overflow: hidden; /* Keeps images neatly inside */
}

/* Right image */
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 40px; /* Matches the hero-banner padding */
    width: 16%;
    height: 100%;
    background-image: var(--hero-background-image-default);
    background-repeat: no-repeat;
    background-size: 80% auto;
    background-position: center right;
    z-index: 0;
}

/* Left image (just beside the right image) */
.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: calc(16% + 40px); /* Places this image to the left of ::before */
    width: 16%;
    height: 100%;
    background-image: var(--hero-background-image-left);
    background-repeat: no-repeat;
    background-size: 80% auto;
    background-position: center left;
    z-index: 0;
}

/* Text content stays above */
.hero-content {
    position: relative;
    z-index: 1;
    padding-block: 3rem;
    width: 64%;
}

    .hero-content span {
        font-family: var(--cmty-font-family);
        font-weight: 400;
        font-size: 10px;
        line-height: 21px;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    .hero-content .title, .hero-content p, .hero-content span {
        color: var(--theme-text-invert);
    }

    .hero-content .title {
        font-size: 32px;
        /*    font-size: (0.5rem, 22.1053px + 1.64474vw, 32px);*/
        margin: 0 0 8px;
        line-height: 40px;
        font-style: normal;
        font-weight: 700;
    }

    .hero-content p {
        line-height: 22px;
	font-size: 16px;
        font-weight: 400;
    }

@media screen and (max-width: 1024px) {
    .hero-banner:before {
        /* width: calc(100% - 58%); */
    }

    .hero-content {
        width: 52%;
    }
}

@media screen and (max-width: 700px) {
    .hero-banner:before {
        /* width: calc(91% - 31%); */
    }

    .hero-content {
        width: 60%;
    }
}

@media screen and (max-width: 400px) {
    .hero-content {
        width: 100%;
    }
}

@media screen and (min-width: 1439.9px) {
    .hero-banner, .banner-top {
        padding-inline: 61px;
    }
}

@media screen and (min-width: 1088px) {
    .hero-banner, .banner-top {
        padding-inline: max(44px, 50% - 876px);
    }

        .hero-banner::before {
            display: block;
        }

    .hero-content {
        width: 56%;
        min-height: 243px;
        padding-block: 4rem;
        padding-inline-end: 4rem;
    }
}



/* End */
/* hide register and redeem tab */
.nav.nav-tabs.nav-account li:nth-child(2), .nav.nav-tabs.nav-account li:nth-child(3)
{
	display:none;
}