/*********MOBILE PUSH BAR START*************/
#side-bar-01{
  width: 300px;
}

#side-bar-01 .title {
  display: block;
  position: relative;
  height:30px;
  margin-top:50px;
  /* margin-bottom:50px; */
  border-bottom: 1px solid #e7e7e7;
}
[data-pushbar-direction="left"][data-pushbar-id], [data-pushbar-direction="right"][data-pushbar-id] {
    width: 300px !important;
}
[data-pushbar-id] {
    transition: transform 0.3s ease;
}
.close {
    width: 20px;
    height: 21px;
    position: relative;
    display: inline-block;
    vertical-align: text-bottom;
    text-align: center;
    cursor: pointer;
    /* Added */
    right: 16px;
    top: -20px;
}

.close:before, .close:after {
    position: absolute;
    left: 10px;
    content: ' ';
    height: 21px;
    width: 2px;
    background-color: #000;
    transition: all 0.3s;
}

.close:before {
    transform: rotate(45deg);
}

.close:after {
    transform: rotate(-45deg);
}

.close:hover:before {
    transform: rotate(225deg);
}

.close:hover:after {
    transform: rotate(135deg);
}

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

.vertical-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 300px; /* Example fixed width for a vertical menu */
  background-color: #fff;
}

.vertical-menu ul>li {
  padding-left: 1rem;
}

.vertical-menu ul li.link {
  position: relative;
  display: block;
  width:100%;
  height:100%;
  cursor: pointer;
}

.vertical-menu li a {
  position: relative;
  display: block;
  padding: 10px 0px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  margin-left: 10px;
  width:84%;
  line-height: 3rem;
  font-size: 18px;
  font-weight: 600;
}

.vertical-menu li > ul > li a {
  font-size: 14px;
  margin-left: 4px;
  line-height: 16px;
  font-weight: normal;
  /* margin-top: 4px; */
}
.vertical-menu li > ul > li a:hover, .vertical-menu li > ul > li a:visited, .vertical-menu li > ul > li a:target{
  color: #172a88;
}

.vertical-menu ul.submenu > :first-child {
  margin-top: 16px;
}

.vertical-menu ul.submenu > :last-child {
  margin-bottom: 16px;
}

.vertical-menu li > ul > li{
  background-color: #f8f8f8;
}

.vertical-menu li > ul > li a{
  background-color: #f8f8f8;
}

.vertical-menu li > ul > li > ul {
  background-color: #f8f8f8;
}
.vertical-menu li a.active-mobile {
  color: #172a88;
}

/* .vertical-menu li a:hover {
  background-color: #e9e9e9;
} */

li.link .submenu {
  /* Hide the submenu initially */
  max-height: 0;
  overflow: hidden;
  /* Add a smooth transition for the height */
  transition: all 0.3s ease-in-out;
  background-color: #f8f8f8;
  width:284px;
  margin:0 auto;
  margin-left:-8px;
  border-radius: 6px;
}

li.link .submenu>li {
  /* margin-left:10px; */
}

li.link .submenu>li>ul>li {
  margin-left:10px;
}

/* Style for when the menu is active/open */
.accordion li.link.open .submenu {
  /* Set a max-height sufficient to display all content */
  max-height: 1000px; /* Adjust as needed */
  transition: all 0.3s ease-in-out;
}

.accordion li.open::after {
  transform: rotate(-180deg);
}

li.link::after {
  content: " ";
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  top:calc(2rem - 4px);
  right:20px;
  background: url('../img/select.svg') no-repeat center / contain;
  transform: rotate(-360deg);
  transition: all 0.3s ease-in-out;
}
/*********MOBILE PUSH BAR END*************/

/*********MOBILE SEARCH START*************/
#popup-div {
    /* Hide by default */
    /* display: none;  */
    position: absolute; /* Position relative to the nearest positioned ancestor */
    background-color: #fff;
    width:100%;
    height:50px;
    z-index: 1000; /* Ensure it appears on top */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
    /* Add other styling like width, box-shadow, etc. */
}
div#mobile-search-wrapper {
  position: relative;
  display: inline-block;
  width:calc(100% - 20px);
  margin:0 auto;
}
input#mobile-search-bar {
  display: inline-block;
  width:100%;
  height: 39px;
  border: 1px solid #172a88;
  border-radius: 100px;
}
input#mobile-search-bar[type="text"]{
  /* display: block; */
  background-color: transparent;
  padding: 0 4.361371%;
}
div#mobile-search-btn {
  position: absolute;
  display: block;
  width: 21px;
  height:21px;
  border: 0;
  top: 10px;
  right: 3.5%;
  background: url('../../images/sear.svg') no-repeat;
  cursor: pointer;
}
/*********MOBILE SEARCH END*************/