/*? Bars design start */
.bars {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bars .wrapper {
  width: 90%;
  max-width: 1200px;
}

.bars .wrapper .barsButton {
  width: 30px;
  height: 30px;
  background-color: rgb(255, 208, 88);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.bars .wrapper .barsButton:hover {
  background-color: rgb(255, 194, 39);
}

.bars .wrapper .barsButton svg {
  width: 22px;
  height: 22px;
}


/*! Bars design stop  */



/*? Sidebar design start  */

.sidebar {
  position: absolute;
  left: 0px;
  top: 60px;
  width: 400px;
  height: calc(100vh - 60px);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(-100%);
  overflow-y: auto;
  z-index: 1000;
}

.sidebar .wrapper {
  display: flex;
  flex-direction: column;
  padding: 15px;
}

.sidebar .wrapper .close_button_area {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  border-radius: 20px 0px 20px 0px;
}

.sidebar .wrapper .close_button_area a {
  font-size: 1rem;
  font-family: 'Playwrite';
  display: flex;
  align-items: stretch;
  transition: all 0.3s;
}

.sidebar .wrapper .close_button_area a .border {
  font-family: 'Playwrite';
  display: flex;
  width: 5px;
  background-color: rgb(255, 184, 3);
  margin: 0px 6px 0px 10px;
  border-radius: 0px 10px 0px 10px;
}

.sidebar .wrapper .close_button_area .close_button {
  width: 23px;
  height: 23px;
  border-radius: 5px;
  background-color: orange;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}


.sidebar .wrapper .close_button_area .close_button svg {
  width: 21px;
  height: 21px;
}

.sidebar .wrapper .categories {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 10px;
  margin-top: 10px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  transition: all 0.3s;
}

.sidebar .wrapper .categories a {
  width: 100%;
  font-size: 1.1rem;
  font-family: 'Rubik';
  padding: 5px 4px 5px 10px;
  transition: all 0.3s;
  border-radius: 5px;
}

.sidebar .wrapper .categories a:hover {
  transform: translateX(5px) translateY(-3px);
}



.sidebar .socialMedia {
  width: 100%;
  min-height: 100px;
  max-height: 100px;
  background-color: rgba(207, 207, 207, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 30px 30px 0px 0px;
}


.sidebar .socialMedia a svg {
  width: 30px;
  height: 30px;
  transition: all 0.1s;
}


/*! Sidebar design stop  */



/*? Respnosive design start */

@media (max-width:768px) {
  .sidebar {
    width: 100%;
  }
}


@media(max-width:500px) {
  .sidebar .wrapper .close_button_area a {
    font-size: 0.9rem;
  }

  .sidebar .wrapper .categories a {
    font-size: 1.03rem;
  }

  .bars .wrapper .barsButton {
    width: 28px;
    height: 28px;
  }


  .bars .wrapper .barsButton svg {
    width: 21px;
    height: 21px;
  }

}