/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  background-color: #f4f6f8;
}

a {
  text-decoration: none;
  color: #49b5e7;
}

a:hover {
  color: #76c7ed;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Dosis", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #49b5e7;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6dc4ec;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Toggle button styles */
.toggle-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 101; /* Ensure button stays above sidebar */
  color: #fff;
  background-color: #343a40;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}
.toggle-btn{
  opacity: 0;
}
.active{
  opacity: 1 !important;
}

/* Custom styles for sidebar */
.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100; /* Ensures sidebar stays above content */
  padding: 35px 20px; /* Adjust this to change the height of the sidebar */
/*   background-color: #343a40; */
  color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow-x: hidden;
  transition: all 0.3s;
  width: 20%;
}

.sidebar ul {
  list-style-type: none;
  padding: 0;
}

.sidebar li {
  padding: 10px;
}

.sidebar li a {
  color: #495057;
  text-decoration: none;
}


.menu-item{
  padding: 10px 20px;
  margin-bottom: 5px;
  position: relative;
  padding-left: 40px !important;
  margin-left: 10px;
}

.menu-item::before{
  font-size: 40px;
  margin-right: 10px;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.menu-item:nth-child(3)::before {
  content: "\2022";
  color: #717375;
}
.menu-item:nth-child(4)::before {
  content: "\2022";
  color: #438772;
}
.menu-item:nth-child(5)::before {
  content: "\2022";
  color: #3d6076;
}
.menu-item:nth-child(6)::before {
  content: "\2022";
  color: #1d1f20;
}
.menu-item:nth-child(7)::before {
  content: "\2022";
  color: #ab4645;
}
.menu-item:nth-child(8)::before {
  content: "\2022";
  color: #e1c07d;
}

.bottom-menu .menu-item:nth-child(2)::before {
  content: "\2022";
  color: #717375;
}
.bottom-menu .menu-item:nth-child(3)::before {
  content: "\2022";
  color: #717375;
}
.bottom-menu .menu-item::before {
  font-size: 30px !important;
  left: -16px !important;
  top: 50%;
  transform: translateY(-50%);
}
.unsubscribe-btn button {
  padding: 10px;
  display: block;
  width: 100%;
  border: 2px solid #026fa2;
  border-radius: 10px;
  text-align: left;
  background-color: transparent;
}
.unsubscribe-btn button i {
  color: #026fa2;
  margin-right: 10px;
} 
.search-box{
  position: relative;
}
.search-box input{
  padding: 10px;
  display: block;
  width: 100%;
  border-radius: 10px;
  background-color: #e3e3e5;
  border: none;
  outline: none;
  margin: 0;
} 
.search-box i{
  position: absolute;
  right: 20px;
  top: 24px;
  color: #495057;
}
 
.bottom-menu{
  margin: 50px 40px;
}

.bottom-menu ul li{
  display: inline-flex !important;
  padding: 0px !important;
  margin: 10px !important;
}
.bottom-menu ul li a{
  font-size: 14px !important;
}
.content {
  margin-top: 35px;
}
.content-title h1 {
  font-size: 20px;
  margin-bottom: 40px;
}
.content-itme {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 40px 30px;
  margin-bottom: 50px;
  background-color: #fff;
  border-radius: 5px;
  position: relative;
}
.content-itme button {
  background-color: #348775;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  border: none;
  margin-bottom: 10px;
}
.content-itme p {
  color: #495057;
}
.content-itme h2 {
  font-weight: 800;
  font-size: 22px;
}  
.content-icons {
  position: absolute;
  bottom: -30px;
  left: 50%;
  background-color: #026fa2;
  height: 29px;
  border-radius: 15px;
  padding: 3px 3px;
  transform: translate(-50%,-50%);
}

.content-icons i {
  color: #fff;
}

.content-itme a {
  color: #000;
  background-color: #e3e3e5;
  padding: 1px;
  font-weight: 800;
}

@media screen and (max-width: 1500px) {
  .bottom-menu{
    margin: 50px 10px;
  }
}

@media screen and (max-width: 1300px) {
  .bottom-menu{
    margin: 50px 10px;
  }
  .sidebar{
    width: 25%;
  }
}

@media screen and (max-width: 1050px) {
  .sidebar{
   padding: 60px 10px;
  }
}

@media screen and (max-width: 992px) {
  .container, .container-md, .container-sm {
    max-width: 90%;
    margin: auto;
    float: right;
  }
}

  @media screen and (max-width: 768px) {
    .container{
      max-width: 100% !important;
    }
  .sidebar {
    background-color: #343a40;
    transition: .5s all;
    opacity: 0;
  }
  .content {
    margin-top: 100px;
  }
  .toggle-btn{
    opacity: 1;
  }
  .toggle-btn i {
    font-size: 25px;
    color: #026fa2;
  }
  .unsubscribe-btn button{
    color: #fff;
  }
  .sidebar li a {
    color: #fff !important;
  }
  .sidebar {
    width: 40% !important;
  }
}

 @media screen and (max-width: 600px) {
  .sidebar {
    width: 50% !important;
  }
 }
 @media screen and (max-width: 500px) {
  .sidebar {
    width: 55% !important;
  }

}

 @media screen and (max-width: 500px) {
  .sidebar {
    width: 55% !important;
  }

}

@media screen and (max-width: 430px) {
  .sidebar li a, .unsubscribe-btn button {
    font-size: 12px;
  }
  .bottom-menu ul li a {
    font-size: 10px !important;
  }
  .sidebar {
    width: 60% !important;
  }
}