.homepageHeader {
    background-image: var(--default-bg-img);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* padding: 1rem 2rem; */
    width: 100%;
    min-height: 100vh;
/*    z-index: 100;*/
    color: var(--default-text-color);
    font-size: var(--default-font-size);
}

/* .homepageHeader.scrolled {
    background: unset;
    background: linear-gradient(180deg, rgba(255,167,0,1) 0%, rgba(255,112,0,1) 100%);
} */

.headerMenuItem {
    padding: 0px 2px;
    position: relative;
    color: #fff;
}

.menuBtn {
    padding: 0.2rem 1.2rem;
    font-weight: 500;
    font-size: 17px;
    color: #000000;
    text-transform: uppercase;
}

.menuBtn:hover{
    color: #FFF;
    background-image: var(--btn-primary-background-color);
    border-radius: var(--bidding-page-primary-border-radius);
}

.menuBtn.afterLogin {
    padding-bottom: 5px;
    margin-bottom: -5px;
    padding-left: 12px;
}

.menuBtn i.la.la-angle-right {
    display: none;
}

.menuBtn i.la.la-angle-down {
  font-size: 10px;
  margin-top: -3px;
}

.menuSettingBtn {
  padding: 5px 0px;
}

.menuSettingBtn i {
  font-size: 25px;
  color: #000;
  line-height: 25px;
}

.headerMenuDropdown.active ~ .headerMenuDropdownBox {
    display: block;
}
.headerMenuDropdown:hover .headerMenuDropdownBox1{
    display: block;

}
.headerMenuDropdownBox1{
    display: none;
}
.headerMenuDropdown.headerMenuDropdown1:hover .headerMenuDropdownBox1{
    display: block !important;
}

.headerMenuDropdownBox {
    display: none;
    position: absolute;
    background-color: #fff;
    top: 100%;
   right: 0;
    width: 170px;
    box-shadow: 0px 0px 1px rgb(82 82 82);
    border-radius: 5px;
    animation: headerDropdownBoxFadeIn ease 0.3s;
    z-index: 1;
    border-radius: 5px;
    box-shadow: 4px 5px 5px 1px #0000001c;
}

.bonusReport.headerMenuDropdownBox{
    top: 80%;
}

.headerMenuDropdownBox1 {
    position: absolute;
    background-color: #fff;
    top: 88%;
    left: 100%;
    width: 170px;
    box-shadow: 0px 0px 1px rgb(82 82 82);
    border-radius: 5px;
    animation: headerDropdownBoxFadeIn ease 0.3s;
    z-index: 1;
    padding:10px;
    cursor: pointer;
    color:#000;
    font-weight: 300;
    font-size: 15px;
    color: #6c6e86;
    padding: 0;
    width: 100%;
    text-align: left;
    padding: 0px;
}
.moreDropdown{
    color: #6c6e86 !important;;
    cursor: pointer;
}
.moreDropdown:hover{
    color: #fff !important;;
    cursor: pointer;
}

@keyframes headerDropdownBoxFadeIn {
    0% {
        opacity:0;
        top: 200%;
    }
    100% {
        opacity:1;
        top: 100%;
    }
}

.headerMenuDropdown2.active ~ .headerMenuDropdownBox2 {
    display: block;
}

.headerMenuDropdownBox2 {
    display: none;
    position: absolute;
    background-color: #fff;
    top: 0;
    left: -250px;
    width: 250px;
    animation: headerDropdownBoxFadeIn2 ease 0.3s;
    z-index: 1;
}

@keyframes headerDropdownBoxFadeIn2 {
    0% {
        opacity:0;
        left: 0;
    }
    100% {
        opacity:1;
        left: -250px;
    }
}

.headerMenuDropdownItem {
    width: 100%;
    position: relative;
}

.menuDropdownBtn {
    font-weight: 300;
    font-size: 14px;
    color: #000;
    background-color: rgba(255,255,255,1);
    padding: 0;
    width: 100%;
    text-align: left;
    padding: 5px 10px;
    border-radius: 0;
}

.menuDropdownBtn:hover {
    background-image: var(--btn-primary-background-color);
    color: var(--btn-primary-text-color) !important;
    border-radius: 0;
}
.headerMenuDropdownBox1.menuDropdownBtn:hover{
    background-color: #fff;
    color: #000000;

}
.headerMenuDropdownBox1 .tripCss:hover {
    background-color: #FE7115;
    color: #FFF;
    /* border-radius: 5px; */
}
.tripCss{
    padding: 10px;
    text-transform: none;
}

.formText{
    text-transform: none;
}

.headerMenuClose {
    display: none;
}

.headerBurgerBtn {
    display: none;
}

.homepageHeaderBlackBG {
    display: none;
}

.homepageHeaderMobile {
    display: none;
}

.headerLogo {
    font-size: 25px;
    text-decoration: none;
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
}

.headerLogo img {
    width: 50%;
}

.header-profile-pic {
    width: 100%;
    height: auto;
}

.headerUsernameText {
    font-size: 16px;
    font-weight: 500;
    color: #FFF;
}

.headerRankText {
    font-size: 13px;
    font-weight: 100;
}


.header-profile-pic-div {
    border-radius: 50%;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../images/project/default-profile.png');
    width: 35px;
    height: 35px;
}

.header-logout-btn {
    background-color: transparent;
    padding: 2px;
    font-size: 20px;
    color: #000;
    border: unset;
}

.selected-header {
    font-weight: 600;
    color: #3BF5FD !important;
    border-bottom: 2px solid #3BF5FD;
    padding-left: unset;
    padding-right: unset;
    margin-left: 5px;
    margin-right: 5px;
}

.headerMenuDropdownBox .selected-header {
    border-bottom: unset;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: unset;
    margin-right: unset;
}

.headerMenuSection{
    display: flex;
    justify-content: center;
    align-items: center;
}

#mobileLogoutLanguageWrap {
    display: none;
}

.signOutBtn {
    position: relative;
}

.hidden {
    display: none;
}

.headerMenuDropdown1:active ~ .headerMenuDropdownBox {
    display: block !important;
}

.mobileContainer {
    position: relative;
}

.sidebar-display-div {
    width: 20%;
}

.main-display-div {
    width: 80%;
    overflow: hidden;
    position: relative;
    background-image: var(--section-container-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header-search-input-group {
    display: flex;
    align-items: center;
    box-shadow: var(--default-box-shadow);
    -webkit-box-shadow: var(--default-box-shadow);
    -moz-box-shadow: var(--default-box-shadow);
    border-radius: var(--form-control-border-radius);
    background-color: #FFF;
}

.header-search-input-group .form-control {
    width: 100%;
    padding: 0.2rem 1rem 0.2rem 0.2rem;
    border: unset;
    background-color: transparent;
}

.header-icon-img {
    height: 18px;
    width: auto;
}

/* .language-btn, */
.header-btn {
    background-color: #FFF;
    padding: 0.7rem 0.9rem;
    border: unset;
    border-radius: 5px;
    font-size: 15px;
    box-shadow: var(--default-box-shadow);
    -webkit-box-shadow: var(--default-box-shadow);
    -moz-box-shadow: var(--default-box-shadow);
}

.language-btn {
    padding: 0.7rem 0.9rem 0.8rem 0.9rem;
    color: var(--default-text-color);
    cursor: pointer;
}

.language-btn img {
    width: 15px;
    height: auto;
}

.register-title-container .language-btn img {
    margin-bottom: unset;
}

.header-input-btn {
    border: unset;
    background-color: transparent;
    font-size: 15px;
    color: #000;
    padding: 0rem 1rem;
}

.header-page-title {
    font-size: var(--default-font-size);
    color: var(--default-text-color);
    font-weight: var(--default-font-weight-bold);
}

.header-dropdown-btn {
    position: relative;
    cursor: pointer;
}

.header-dropdown-list {
    position: absolute;
    background-color: var(--primary-background-color);
    border: 1px solid var(--bidding-page-card-border-color);
    border-top-left-radius: var(--bidding-page-primary-border-radius);
    border-bottom-right-radius: var(--bidding-page-primary-border-radius);
    padding: 1rem 2rem;
    color: var(--bidding-page-primary-text-color);
    right: 0%;
    z-index: 3;
    min-width: 200px;
}

.header-dropdown-list.collapse {
    display: none;
}

.header-dropdown-list.collapse.show {
    display: block;
}

.header-dropdown-list-btn {
    padding: 0.5rem 0rem;
    color: var(--bidding-page-primary-text-color);
    font-weight: var(--default-font-weight-thin);
    cursor: pointer;
    display: block;
}

.header-dropdown-list-btn:hover {
    font-weight: var(--default-font-weight-thick);
    color: var(--bidding-page-primary-text-color);
}

.header-notif {
    position: relative;
}

.notif-span {
    width: 20px;
    height: 20px;
    background-color: #FF0200;
    color: #FFF;
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -8px;
    right: -10px;
    border-radius: 50%;
    font-size: 12px;
}

.notif-span.got-msg {
    display: flex;
}
.header-welcome-divnavbar,
.header-welcome-div {
    padding: 0px 30px;
}

.header-page-image {
    background-image: var(--header-page-img);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 5rem;
    margin-top: 1rem;
}

.main-display-div:has(.inbox-chat-div) .header-page-image {
    background-image: var(--inbox-bg);
}

@media (min-width: 992px){
    .menuBtn.active{
        font-weight: 600;
        /*padding-left: unset;
        padding-right: unset;*/
        /*margin-left: 5px;
        margin-right: 5px;*/
    }
}

@media (max-width: 992px) {
    .main-display-div {
        width: 100%;
        padding: unset;
    }
}

@media (max-width: 767px) {
    .menuBtn {
        padding: 0.2rem 1.2rem;
        font-weight: 500;
        font-size: 17px;
        color: #fff;
        text-transform: uppercase;
    }

    .menuDropdownBtn:hover {
        background-color: unset;
        color: #000;
        border-radius: unset;
    }

    .languageDropdownBox .menuDropdownBtn:hover {
        color: #6c6e86;
    }

    .menuBtn {
        width: 100%;
        text-align: left;
        padding: 0 10px;
    }

    .menuBtn i {
        font-size: 10px!important;
        margin-left: 5px;
        vertical-align: middle;
        display: inline-flex;
        transition: all .5s ease;
    }

    .menuBtn.active {
        color: var(--btn-primary-text-color);
    }

    .menuBtn.active i {
        transform: rotate(90deg);
    }

    .headerMenuDropdown2 i {
        font-size: 10px!important;
        margin-left: 5px;
        vertical-align: middle;
        display: inline-flex;
        transition: all .5s ease;
    }

    .headerMenuDropdown2.active {
        color: #1b75bb;
    }

    .headerMenuDropdown2.active i {
        transform: rotate(90deg);
    }

    .headerMobileDisplayNone {
        margin-bottom: 20px;
    }
    .header-connect-wallet{
        color: #fff;
    }

    .homepageHeader {
        width: 100%;
        position: relative;
    }

    .mobileHeaderPadding {
        padding: 0 20px;
    }

    .headerMenuSection{
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .headerMenuSection .headerMenuItem .headerMenuDropdownBox {
        box-shadow: none;
    }

    .headerMenuItem {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
        margin-bottom: 10px;
    }



    .headerMenuDropdown ~ .headerMenuDropdownBox {
        animation: unset;
        display: block;
        position: relative;
        background-color: transparent;
        top: unset;
        right: unset;
        width: 100%;
        overflow: hidden;
        transition: all .5s ease;
        max-height: 0;
    }  

    .headerMenuDropdown.active ~ .headerMenuDropdownBox {
        transition: all .5s ease;
        max-height: 100vh;
    }

    .headerMenuDropdown2 ~ .headerMenuDropdownBox2 {
        animation: unset;
        display: block;
        position: relative;
        background-color: transparent;
        top: unset;
        left: unset;
        width: 100%;
        overflow: hidden;
        transition: all .5s ease;
        max-height: 0;
    }  

    .headerMenuDropdown2.active ~ .headerMenuDropdownBox2 {
        transition: all .5s ease;
        max-height: 100vh;
    }

    .headerLogo img {
        width: 65%;
    }

    .headerMenuClose {
        display: block;
        position: absolute;
        top: 10px;
        right: 0;
        color: #FFF;
        font-size: 15px;
    }

    .headerMenuClose i.la.la-close::before {
        font-weight: 900;
    }

    .mobile-button{
        position: absolute;
        right: 0;
        top: 0;
        z-index: 100;
    }
    .headerBurgerBtn,
    .headerBurgerBtn:hover,
    .headerBurgerBtn:focus {
        display: block;
        text-align: center;
        padding: 15px 0;
        -moz-box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.5)!important;
        font-size: 20px;
        line-height: 20px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);  
    }

    .headerBurgerBtn i {
        font-size: 20px!important;
        line-height: 20px;
        padding: 0;
        color: #FFF;
    }

    .headerBurgerBtn i::before {
        font-weight: 600!important;
        color: #000;
    }

    #homepageMenu.opened {
        left: 40%;
    }

    .homepageHeaderBlackBG {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(0,0,0,0.5);
        z-index: 99;
    }

    .headerBurgerBtn.active ~ .homepageHeaderBlackBG {
        display: block;
    }

    .homepageHeaderMobile {
        display: block;
        background-image: url('/images/project/header-menu.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        padding: 10px 0px;
        position: relative;
        color: #FFF;
        font-size: 15px;
    }

    .selected-header {
        border-bottom: unset;
        margin-left: unset;
        margin-right: unset;
    }
}
