.header-container {
    display: flex;
    background-color: #0c5460;
    z-index: 999;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    height: var(--header_height);
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*padding: 5px 15px;*/
    height: 100%;
}

.logoMenu-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /*width: 20%;*/
    height: 100%;
}

.toggleButton {
    width: 33px;
    height: 33px;
    cursor: pointer;
    margin-left: 15px;
}

.toggleButton > i {
    font-size: 33px;
    color: var(--sidemenu_icon_color);
    transition: all .5s ease-in-out;
}
/*.toggleButton.change > i {*/
/*    transform: rotate(45deg);*/
/*}*/

.bar1,
.bar2,
.bar3 {
    width: 30px;
    height: 3px;
    /*background-color: #fff;*/
    background-color: var(--sidemenu_icon_color);
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
}

/*******************************************************************/
/* The primary navigation menu */
.primarynav a:hover {
    color: #f1f1f1;
}

.header__brand {
    width: 150px;
    height: 55px;
}

#header-menu {
    width: 70%;
}
#header-menu-list {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
}
#header-menu-list li {
    list-style-type: none;
    padding: 5px 10px;
    transition: all 0.5s ease-in-out;
    border-bottom: 1px solid transparent;
    position: relative;
}
#header-menu-list li:hover {
    border-bottom: 1px solid #fff;
}
#header-menu-list li a {
    text-decoration: none;
    color: inherit;
    white-space: nowrap;
    font-size: 22px;
}
#header-menu-list li a:hover {
    color: #d6d6d6;
}

#header-menu-list li a i {
    color: #ffce00;
}

#header-menu-list li ul.sub-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    background-color: #1b1e21;
    margin: 0;
    padding: 5px 10px;
    display: none;
}

#header-menu-list li:hover ul.sub-menu {
    display: block;
}

@media screen and (max-width: 767px) {
    #header-menu {
        position: fixed;
        top: var(--header_height);
        left: 0;
        width: 100%;
        background-color: var(--mobMenuBg);

        display: none;
    }
    .logoMenu-container {
        width: 100%;
    }
}

/**********************************************************************/

/* The side navigation menu */
.sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 11; /* Stay on top */
    top: var(--header_height); /* Stay at the top */
    right: 0;
    background-color: var(--side_menu_bg_color); /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
    padding: 8px 16px 8px 30px;
    text-decoration: none;
    font-size: 1rem;
    color: var(--side_menu_text_color);
    display: block;
    transition: 0.3s;
    white-space: nowrap;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
    opacity: .5;
}

.isOpenMenu {
    width: 300px;
}

@media screen and (max-width: 500px) {
    .isOpenMenu {
        width: 100%;
    }
}

#side-menu-list {
    margin: 0;
    padding: 0;
}
#side-menu-list li {
    list-style-type: none;
    position: relative;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }
    .sidenav a {
        font-size: 18px;
    }
}

#side-menu-list > li.menu-item .openMenu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    transition: -webkit-transform 0.8s;
    -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
    top: 4px;
    right: 10px;
    opacity: .5;
    /*cursor: pointer;*/
}

#side-menu-list > li.menu-item .openMenu:hover {
    opacity: 1;
}

#side-menu-list > li.menu-item > .sub-menu.open + .openMenu {
    transform: rotate(90deg);
}

#side-menu-list > li.menu-item > .sub-menu {
    max-height: 0px;
    transition: max-height 0.25s ease-out;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

#side-menu-list > li.menu-item > .sub-menu.open {
    max-height: 500px;
    transition: max-height 0.25s ease-in;
}

#side-menu-list > li {
    border-bottom: 1px solid var(--side_menu_line_color);
}

#side-menu-list > li.menu-item > .sub-menu > li a {
    font-size: 1rem;
    padding-left: 40px;
    white-space: unset;
}

#side-menu-list > li.menu-item > .sub-menu > li {
    border-bottom: 1px solid transparent;
}
#side-menu-list > li.menu-item > .sub-menu > li:hover {
    border-bottom: 1px solid #f6f6f6;
}

#side-menu-list .openMenu i {
    color: var(--side_menu_icon_color);
    cursor: pointer;
}
/**********************************************************************/

.sidenav-container {
    height: 100%;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 75px;
    z-index: 11;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all .3s ease-in-out;
}

.blur-bg {
    visibility: visible;
    opacity: 1;
}