/* Right sidebar styles */
header .sidebar {
/* overflow-y: scroll; */
width: 300px;
height: 100%;
padding:10px 0px 10px;
z-index:5!important;
position: fixed;
top: 0;
right: -300px;
background-color: #eff2f4;
transition: all 0.3s ease;
}
header .sidebar-open {
right: 0;
}
header .sidebar_icon_div{
padding-top:11px;
text-align: right;
}
header .sidebar_open_icon{
font-size: 24px;
}

header .open-btn {
padding: 10px 20px;
background-color: #333;
color: #fff;
border: none;
cursor: pointer;
}
header .close-btn {
text-align:right;
padding-bottom: 10px;
color: #fff;
border: none;
cursor: pointer;
}
header .close_icon{
background: #00597d;
padding: 2px;
border-radius: 4px;
}
header .accordion {
background-color: transparent;
cursor: pointer;
padding: 10px 10px;
width: 100%;
border: none;
text-align: left;
outline: none;
transition: 0.4s;
line-height: 21px;
color: #1f1f1f;
font-size: 17px;
font-weight: 600;
}
header .active, header .accordion:hover {
background-color: #d3e8f2 
}

header .panel {
padding: 0 20px;
font-size: 18px;
background-color: #d3e8f2;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
}
header .accordion-div{
width: 100%;
}

p.subMenu {
padding: 3px 0;
font-size: 15px;
line-height: 24px;
}
p.subMenu a{
color:#00597d;
}
p.subMenu a:hover{
opacity: .8;
}
button.accordion:after {
content: '\f107';
right: 20px;
position: absolute;
font-family: fontawesome;
}
button.accordion.active:after{
content: '\f106';
}

/*** More menu css start *****/
.more_plus{
display: none;
}
@media only screen and (max-width: 426px) {
.more_plus{
  display: block;
  padding: 0px 5px 0px 5px;
  margin: 5px 5px;
  font-size: 17px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #1f1f1f;
  text-transform: uppercase;
}
.sidebar_icon_div{
  display: none; 
}
 .close-btn{
  margin-right: 10px;
}
} 
/*** More menu css end *****/