.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 {
    margin: 0.5rem;
    position: relative;
    color: var(--default-text-color);
}

.menuBtn {
    padding: 0.5rem;
    font-weight: var(--default-font-weight-thin);
    font-size: var(--default-font-size);
    color: var(--default-text-color);
    text-transform: capitalize;
}

.menuBtn:hover{
    /* font-weight: var(--default-font-weight-thick); */
    color: var(--default-text-color);
}

.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;
}

#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%;
    padding: 0rem 2rem;
}

@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;
    }
}
