.sidebar{
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width:260px;
  background: var(--white);
  z-index: 99999;
  transition: all 0.1s; 
  /*padding: 30px;
  overflow-y: auto;*/
}
.sidebar::before {
    position: absolute;
    content: "";
    z-index: -1;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: url(../images/MenuBar-bg.png) repeat center top;
    opacity: 0.8;
}
.sidebar.close{
  width: 0px;
  padding: 0px
}
.sidebar.close-menu{
  width: 0px;
  padding: 0px
}
.sidebar.arrow-sidebar{
  width: 80px;
  padding: 15px
}
.wrapper{
  position: relative;
  height: 100vh;
  right: 0px;
  width: calc(100% - 260px);
  transition: all 0.1s;
}
/*.wrapper .header.fixed-header{
  width: calc(100% - 260px);
}*/
.sidebar.close ~ .wrapper .header.fixed-header, .sidebar.close ~ .wrapper .header.fixed-header, .sidebar.close ~ .wrapper .facts-header.fixed-header{
  width: 100%;
  /*box-shadow: 0px 2px 7px rgba(0,0,0,0.01);*/
}


.facts-header.fixed-header {
    box-shadow: -15px 2px 24px rgb(0 0 0 / 23%);
    transition:  all 0.4s ease;
    
}
.wrapper .header.fixed-header{
  box-shadow: -15px 2px 24px rgb(0 0 0 / 23%);
  transition:  all 0.4s ease;
  width: calc(100% - 260px);
}
.sidebar.close ~ .wrapper{
  right: 0px;
  width: 100% ;
}
.sidebar.close-menu ~ .wrapper{
  right: 0px;
  width: 100%;
}
.sidebar.arrow-sidebar ~ .wrapper{
  right: 0px;
  width: calc(100% - 80px);
}
.sidebar-section {
    overflow-y: auto;
    height: 100%;
    padding:25px 20px
}
.home-content .icon{
  cursor: pointer;
}
.header .icon {
    font-size: 20px;
    width: 60px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header .burger-open {
    display: inline-flex;
    /*width: 60px;
    height: 50px;*/
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    color: var(--gray);
    z-index: 999;
    position: relative;
    cursor: pointer;
}
.header .burger-open:hover{
  background: rgba(0, 108, 181, 0.5);
  color: var(--white);
}
.sidebar.close .home-content {
    display: none;
}
.sidebar .home-content {
    display: block;
}
.header.fixed-header .icon {
    color: var(--primary-color);
}
.sidebar ul li a {
    font-size: 1.4rem;
    font-weight: 600;
    margin:6px  0px;
    display: inline-flex;
    width: 100%;
    /* font-family: var(--font-title); */
    line-height: 36px;
        color: var(--gray);
}
.sidebar ul li a:hover, .sidebar ul li.current_page_item a{
  color:var(--primary-color);
}
.home-content.arrow-sidebar {
    position: absolute;
    top: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
    left: -20px;
    z-index: 9;
}
.home-content.arrow-sidebar span {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 8px;
    justify-content: center;
    display: flex;
    align-items: center;
    font-size: 30px;
}
.sidebar ul li ul.sub-menu {
    padding:0px;
    display: none;
}
.sidebar ul li ul.sub-menu li a {
    font-size: 0.9rem;
    line-height: 28px;
    font-weight: 400;
    position: relative;
    display: inline-flex;
    padding-left: 20px;
    margin:4px 0px;
}
.sidebar ul li {
    position: relative;
    width:100%;    
}
.sidebar ul li:hover ul.sub-menu{
    display: block;
} 
.sidebar-scrollbar button.sub-menu-toggle {
    position: absolute;
    right: 0px;
    top: 7px;
    border: none !important;
    background-color:transparent;  
}
/*.sidebar-scrollbar button.sub-menu-toggle span.icon-minus {
    display: none;
}*/
.sidebar-scrollbar button.sub-menu-toggle .icon-plus {
    font-size: 26px;
}


.sitemap--links li button.sub-menu-toggle {
    display: none;
}
.sitemap--links li a {
    font-size: 1.5rem;
    font-weight: 600;
    margin:13px  0px;
    display: inline-flex;
    width: 100%;
    line-height: 36px;
    color: var(--primary-color);
}
.sitemap--links li:hover{
  color:var(--primary-color);
}
.sitemap--links li ul.sub-menu{
  padding: 0px 0px 0px 30px
}
.sitemap--links li ul.sub-menu li a {
    font-size: 1rem;
    line-height: 28px;
    font-weight: 400;
    position: relative;
    
    display: inline-flex;
    padding-left: 0px;
    margin: 8px 0px;
    color: var(--gray);
    align-items: center;

}
.sitemap--links li ul.sub-menu li a:hover{
  color: var(--primary-color)
}
.sitemap--links li ul.sub-menu li a:before {
    position: relative;
    width: 7px;
    height: 7px;
    margin-right: 8px;
    content: "";
    background: var(--gray);
    border-radius: 100%
}