/* CSS for the menu button */
.menu-btn {
  display: block;
  cursor: pointer;
}

.menu-icon {
  width: 30px;
  height: 3px;
  background-color: #0097e0;
  margin-top: 6px;
  margin-right: 0;
  margin-left: 10px;
  margin-bottom: 6px;
  transition: 0.4s;
}

.menu-btn.open .menu-icon:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-btn.open .menu-icon:nth-child(2) {
  opacity: 0;
}

.menu-btn.open .menu-icon:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.breadcrumb {
  background-color: #f9f9f9;
}
.breadcrumb a {
  color: #000000;
}
/* Change the color of links on hover */
.breadcrumb a:hover {
  color: #000000;
}

.close-btn {
  position: absolute;
  top: 100px; /* Adjust the top position as needed */
  right: 10px; /* Adjust the right position as needed */
  font-size: 30px;
  cursor: pointer;
  color: #fff;
  display: none; /* Initially hidden */
}

/* CSS for the top menu */

/* Add a black background color to the top navigation */
.topnav {
  height: 0px;
  width: 100%;
  background-color: #cddae2;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: #0097e0;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #0097e0;
  color: white;
}

.TABo_dropdown {
  float: left;
  overflow: hidden;
}

.TABo_dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  margin-top: 50px;
}

.TABo_dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.TABo_dropdown-content a:hover {
  background-color: #ddd;
}

.show {
  display: block;
}

.Tsub {
  padding: 3px 10px;
  text-align: left;
  text-decoration: none;
  font-size: 17px;
  display: block;
  font-style: normal;
}

.sub_TL2 {
  padding: 1px 18px;
  text-align: left;
  text-decoration: none;
  font-size: 15px;
  display: block;
  font-style: normal;
}

/* CSS for the sidebar menu */
.sidebar {
  max-width: 350px;
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #eceaea;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidebar a {
  padding: 3px 15px;
  text-align: left;
  text-decoration: none;
  font-size: 16px;
  color: #000;
  display: block;
  transition: 0.3s;
}

.sidebar span {
  padding: 3px 20px;
  text-align: left;
  text-decoration: none;
  font-size: 15px;
  color: #000;
  display: block;
  transition: 0.3s;
}

.sub {
  padding: 3px 10px;
  text-align: left;
  text-decoration: none;
  font-size: 15px;
  display: block;
  font-style: normal;
}

.sub_L2 {
  padding: 1px 18px;
  text-align: left;
  text-decoration: none;
  font-size: 13px;
  display: block;
  font-style: normal;
}

#hmenu {
  padding-top: 0px;
  padding-bottom: 0px;
}

.sidebar a:hover,
.dropdown:hover .dropbtn,
.dropbtn:focus {
  color: #0097e0;
}

@media screen and (max-width: 1550px) {
  .sidebar {
    max-width: 150px;
    height: 100%;
    width: 0px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #eceaea;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }

  .sidebar a {
    padding: 1px 15px;
    text-align: left;
    text-decoration: none;
    font-size: 14px;
    color: #000;
    display: block;
    transition: 0.3s;
  }

  .sidebar span {
    padding: 1px 20px;
    text-align: left;
    text-decoration: none;
    font-size: 13px;
    color: #000;
    display: block;
    transition: 0.3s;
  }

  .sub {
    padding: 1px 10px;
    text-align: left;
    text-decoration: none;
    font-size: 12px;
    display: block;
    font-style: normal;
  }

  .sub_L2 {
    padding: 1px 18px;
    text-align: left;
    text-decoration: none;
    font-size: 11px;
    display: block;
    font-style: normal;
  }
}

@media screen and (max-width: 1430px) {
  .topnav {
    height: 0px;
    width: 100%;
    background-color: #cddae2;
    overflow: hidden;
  }

  .sidebar {
    max-width: 150px;
    height: 100%;
    width: 0px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #eceaea;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    z-index: 1;
  }

  .menu-icon {
    width: 30px;
    height: 3px;
    background-color: #0097e0;
    margin-top: 6px;
    margin-right: 0;
    margin-left: 10px;
    margin-bottom: 6px;
    transition: 0.4s;
    z-index: 2;
  }

  .close-btn {
    position: absolute;
    top: 1px; /* Adjust the top position as needed */
    right: 0px; /* Adjust the right position as needed */
    left: 15px;
    font-size: 50px;
    cursor: pointer;
    color: #0097e0;
    display: none; /* Initially hidden */
    z-index: 3;
  }
  .bol-logo {
    margin-top: -20px;
  }
}
