.header_div_main {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 2;
}

.header_div_main.smallheader {
    box-shadow: rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px, rgba(0, 0, 0, 0.2) 0px 2px 4px -1px;
}

nav-bar.nav-bar,
nav-bar.nav-bar .left_sec,
.home-logo-link,
nav-bar.nav-bar .menu ul {
    display: flex;
    flex-wrap: wrap;
}

nav-bar.nav-bar .home-logo-link,
nav-bar.nav-bar .menu ul li a,
nav-bar.nav-bar .right_sec {
    display: flex;
    height: 84px;
    align-items: center;
}

nav-bar.nav-bar .home-logo-link {
    width: 200px;
}

nav-bar.nav-bar .msft-logo {
    width: 120px;
    height: 36px;
}
nav-bar.nav-bar .store-logo {
    width: 54px;
    height: 36px;
}

nav-bar.nav-bar .menu ul li {
    list-style-type: none;
}

nav-bar.nav-bar .menu ul li a {
    padding: 0 1.25rem;
    text-decoration: none;
    color: #52525b;
    font-weight: 600;
}

nav-bar.nav-bar .right_sec {
   margin-left: auto;
   margin-right: 0;
   flex: 1;
   justify-content: flex-end;
   position: relative;
}

nav-bar.nav-bar .right_sec .search_div {
    height: 32px;
    overflow: hidden;
    border: 1px solid #d4d4d8;
    background-color: #fff;
    border-radius: 0.25rem;
    width: 100%;
    display: flex;
    align-items: center;
    margin: 0 1.75rem;
    max-width: 600px;
}

nav-bar.nav-bar .right_sec .search_div .search_icon {
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;   
}

nav-bar.nav-bar .right_sec .search_div .search_icon .bi-search {
    color : #71717a;
    width: 14px;
    height: 14px;
}

nav-bar.nav-bar .right_sec .search_div input {
    padding: 0 0.75rem;
    height: 30px;
    width: 100%;
}

nav-bar.nav-bar .right_sec .app_store_btn {
    height: 30px;
    padding: 0 0.75rem;
    display: flex;
    align-items: center;
    background-color: #005fb8;
    font-weight: 500;
    color: #fff;
    border-radius: 0.25rem;
    min-width: fit-content;
}
nav-bar.nav-bar .right_sec .app_store_btn img {
    margin-right: 0.25rem;
}

nav-bar.nav-bar .right_sec .search_icon_btn {
    display: none;
    margin: 0 20px;
}
.close_search_bar {
    display: none;
    align-items: center;
    margin-right: 5px;
}
.close_search_bar > svg {
    width: 24px;
    height: auto;
}

.header_div_main.sticky_header {
    box-shadow: rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px, rgba(0, 0, 0, 0.2) 0px 2px 4px -1px;
}

.sticky-header {
    position: fixed;
    background-image: linear-gradient(#f0f0f0, #f0f0f0);;
    backdrop-filter: blur(100px);
    border: 1px solid #e4e4e7;
    border-radius: 0.5rem;
    transition: top 250ms ease-in-out, opacity 250ms ease-in-out;
    top: 0px;
    height: 81px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    left: 136px;
    width: calc(100% - 690px);
    opacity: 0;
    visibility: hidden; 
    z-index: -1;
}
.sticky-header .left_side {
    color: #131316;
    display: flex;
    align-items: center;
}

.sticky-header .left_side img {
    width: 55px;
    height: 55px;
    border-radius: 8px;
}

.sticky-header .left_side .content {
    margin-left: 11px;
}

.sticky-header .left_side .content h3 {
    font-size: 1.17em;
    line-height: 25px;
    font-weight: 600;
}

.sticky-header.show {
    opacity: 0.95;
    visibility: visible;
    top: 90px;
    z-index: 1;
}

.sticky-header,
.sticky-header.show {
    transition: 0.3s ease-in-out all;
}

@media only screen and (max-width: 1199px) {
    nav-bar.nav-bar .right_sec .app_store_btn {
        display: none;
    }
    .sticky-header {
        left: 98px;
        width: calc(100% - 196px);
    }
}
/*-------- End (max-width: 1199px) --------*/

@media only screen and (max-width: 991px) {
    .sticky-header {
        left: 48px;
        width: calc(100% - 98px);
    }
    nav-bar.nav-bar .right_sec .search_icon_btn {
        display: flex;
    }
    nav-bar.nav-bar .right_sec {
        justify-content: flex-start;
    }
    nav-bar.nav-bar .right_sec .search_div {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        left: auto;
        top: 26px;
        margin: 0;
        margin-left: 0;
        background-color: #fff;
        min-width: 58dvw;
        right: 0;
    }
    .close_search_bar {
        display: flex;
    }
    body.header_search_open nav-bar.nav-bar .right_sec .search_div {
        visibility: visible;
        opacity: 1;
    }    
}
/*-------- End (max-width: 991px) --------*/

@media only screen and (max-width: 767px) {
    body.header_search_open nav-bar.nav-bar .right_sec .search_div {
        right: 15px;
        top: 21px;
        width: calc(100% - 30px);
    }
    body.header_search_open .home-logo-link {
        visibility: hidden;
    }
    nav-bar.nav-bar .home-logo-link {
        width: 100%;
    }
    nav-bar.nav-bar .home-logo-link, nav-bar.nav-bar .menu ul li a, nav-bar.nav-bar .right_sec {
        height: auto;
    } 
    .header_div_main {
        padding: 0.25rem 0;
    }  
    .home-logo-link {
        padding: 1rem 0 0;
    } 
    nav-bar.nav-bar .right_sec {
        position: initial;
    }
    nav-bar.nav-bar .right_sec .search_icon_btn {
        position: absolute;
        right: 30px;
        top: 28px;
        margin: 0;
    }
    nav-bar.nav-bar .menu ul li a {
        padding: 15px 1.25rem;
    }
}
/*-------- End (max-width: 767px) --------*/