/*======================================

[  Header Nav Style  ]

  01. Header Section 
  02. Top Header Bar
  03. Header Bg-Image
  04. Header Main Nav
  05. Dropdown Menu
  06. Notification & Reminder
  07. Mega Menu
  08. Custom Search 01
  09. Custom Search 02

[ End  Header Nav Style ]
======================================*/

/*------------------
  01. Header Section 
--------------------*/

.header-container {
    position: fixed;
    width: 100%;
    z-index: 999;
}

/*------------------
  02. Top Header Bar
--------------------*/

.header-bar {
    position: relative;
    height: 30px;
    text-align: right;
}

.bar-item {
    position: relative;
    display: inline-block;
    font-size: 14px;
    height: 30px;
    line-height: 26px;
    text-align: left;
    white-space: nowrap;
    cursor: pointer;
    padding: 0 10px;
}

.navbar-light-separator {
    border-right: 1px solid #fff;
    height: 0.8125rem;
}

.language-container {
    z-index: 100;
    position: absolute;
    right: 0%;
}

.language-opt {
    margin: 5px 0px;
    /* float: right; */
    background: white;
    width: 120px;
    position: relative;
    border-radius: 3px;
    padding: 10px 0px;
    display: none;
}

.language-opt-item {
    padding: 5px;
}

.language-opt-item:hover {
    background-color: var(--lightGold) !important;
}

/*------------------
  03. Header Bg-Image
--------------------*/
.bg-header-nav {
    background: url(https://cdn-metarewards.securevws.com/medias/MR_DEV/GB1/IMAGE/bg-header-nav.png)
        no-repeat center center;
}

/*------------------
  04. Header Main Nav
--------------------*/

.nav-main {
    width: 100%;
    padding: 15px 0;
    transition: all 0.4s;
}

.nav-logo img {
    max-width: 250px;
    width: 100%;
    transition: all 0.4s;
}

.navbar-nav .dropdown-menu {
    border-color: transparent;
}

.dropdown-toggle::after {
    display: none !important;
}

/*------------------
  05. Dropdown Menu
--------------------*/

li.dropdown:hover > .dropdown-menu {
    display: block;
}

/*------------------
  06. Notification & Reminder
--------------------*/

.dropdown-item:hover {
    background-color: #fff;
}

.dropdown-list {
    width: 25rem !important;
    font-size: 0.85rem;
    padding: 0;
    overflow: hidden;
}

.dropdown-notification {
    left: -345px !important;
    padding: 1rem 0 0.5rem;
}

.dropdown-list .dropdown-item {
    white-space: normal;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    line-height: 1.3rem;
}

.dropdown-list .unread {
    background: #fdf1e0;
}

.dropdown-list .read {
    background: var(--whiteColor);
}

.notif-item-box {
    height: 4rem;
    width: 4rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.columns-ul{
    -moz-columns: 16em;
    -webkit-columns: 16em;
    /* columns: 16em; */
    -moz-column-gap: 1em;
    -webkit-column-gap: 1em;
    column-gap: 1em;
    max-height: 28em;
}

.columns-ul li{
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    /*font-size: 1.3rem;*/
}

ul.grid-style{
    display: grid;
    grid-template-columns: repeat(3,auto);
    grid-template-rows: repeat(14,auto);
    grid-auto-flow: column;
}

/*------------------
  07. Mega Menu
--------------------*/

.mega-dropdown {
    position: static !important;
}

.navbar-nav .dropdown-menu.mega-dropdown-menu {
    top: 109% !important;
    border-color: transparent;
    box-shadow: 0 0 20px 0 rgb(180, 149, 107, 0.5);
}

.mega-dropdown-menu > ul > li > ul > li > a {
    display: block;
    padding: 3px 0px;
    clear: both;
    font-size: 0.95rem;
    font-weight: normal;
    line-height: 1.428571429;
    color: #4c4e53 !important;
    white-space: normal;
}

.mega-dropdown-menu > ul > li > ul > li > a:hover,
.mega-dropdown-menu > ul > li > ul > li > a:focus {
    text-decoration: none;
    background-color: var(--lightGold);
}

.mega-dropdown-menu .dropdown-header {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0.8rem 0;
}

/*------------------
  08. Custom Search 01
--------------------*/

.search-box-wrapper {
    position: relative;
    width: 530px;
}

.search-box-wrapper input {
    border: 2px solid #fff;
    border-radius: 5px;
    height: 45px;
    width: 500px;
    padding: 10px;
    padding-left: 20px;
    padding-right: 40px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.search-box-wrapper input::placeholder {
    color: #fff;
}

.search-icon {
    position: absolute;
    top: 14px;
    right: 40px;
    size: 40px;
    background: transparent;
    border: none;
    color: #fff;
}

.mega-dropdown-menu .childDropDownMenu{
    max-height: 67vh;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 2rem 0;
}

.mega-dropdown-menu .childDropDownMenu::-webkit-scrollbar {
    display: none;
}

.mega-dropdown-menu .childDropDownMenu .floating-arrow-down{
    position: absolute;
    width: calc(25% - 32px - 25px);
    height: 20px;
    bottom: 5%;
    left: 4rem;
    text-align: center;
    font-size: 14px;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    cursor: pointer;
    max-width: 25%;
}

.mega-dropdown-menu .childDropDownMenu .floating-arrow-up{
    position: absolute;
    width: calc(25% - 32px - 25px);
    height: 20px;
    top: 6%;
    left: 4rem;
    text-align: center;
    font-size: 14px;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    cursor: pointer;
    max-width: 25%;
}

.mega-dropdown-menu .childDropDownMenu:hover .floating-arrow-down, .mega-dropdown-menu .childDropDownMenu:hover .floating-arrow-up{
    opacity: 1;
}
/*------------------
  08. Custom Search 02
--------------------*/

.search__area {
    background: #cfcfcd none repeat scroll 0 0;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.08);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateY(-200%);
    transition: all 300ms ease 0s;
    z-index: 2147483647;
}

.search__area .search__inner form button::before {
    content: url(https://cdn-metarewards.securevws.com/medias/MR_DEV/ICONS/orange-serach.svg);
    transition: color 300ms ease 0s;
    top: 10px;
    right: 20px;
    position: absolute;
}

.search__area .search__inner {
    position: relative;
}

.search__area .search__inner form {
    margin: 4em 0;
    padding: 0 40px 0 0;
    position: relative;
    text-align: center;
}

.search__area .search__inner form input[type="text"] {
    background: #fff none repeat scroll 0 0;
    border: medium none;
    color: #333;
    font-size: 25px;
    font-weight: 300;
    height: 60px;
    line-height: 60px;
    padding: 0 70px 0 20px;
    text-align: left;
    width: 100%;
}

.search__area
    .search__inner
    form
    input[type="text"]::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: var(--lighGreyBColor) !important;
    font-size: 25px;
    font-weight: 300;
}

.search__area .search__inner form input[type="text"]::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--lighGreyBColor) !important;
    font-size: 25px;
    font-weight: 300;
}

.search__area .search__inner form input[type="text"]:-ms-input-placeholder {
    /* IE 10+ */
    color: var(--lighGreyBColor) !important;
    font-size: 25px;
    font-weight: 300;
}

.search__area .search__inner form input[type="text"]:-moz-placeholder {
    /* Firefox 18- */
    color: var(--lighGreyBColor) !important;
    font-size: 25px;
    font-weight: 300;
}

.search__area .search__inner form button {
    background: transparent none repeat scroll 0 0;
    border: 0 none;
    border-radius: 0;
    cursor: pointer;
    height: 60px;
    line-height: 60px;
    position: absolute;
    right: 40px;
    top: 0px;
    width: 70px;
    transition: 0.3s;
}

.search__area .search__inner form button:hover {
    background: #ff4136 none repeat scroll 0 0;
}

.search__area .search__inner form button:hover::before {
    content: url(https://cdn-metarewards.securevws.com/medias/MR_DEV/ICONS/search-icon.svg);
}

.search__area .search__inner .search__close__btn {
    display: block;
    line-height: 58px;
    position: absolute;
    right: 0;
    top: 0;
}

.search__area .search__inner .search__close__btn {
    color: #fff;
    cursor: pointer;
    font-size: 21px;
    line-height: 58px;
}

.search__close__btn .search__close__btn_icon i {
    transition: all 0.5s ease 0s;
    transform: scale(1) rotate(0deg);
}

.search__close__btn .search__close__btn_icon:hover i {
    transform: scale(2) rotate(180deg);
    color: #ff4136;
}

.search__box__show__hide .search__area {
    transform: translateY(0px);
    transition: all 300ms ease 0s;
}

/* ---- Responsive Media ---- */

@media (max-width: 992px) {
}
