@import 'main.css';

.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: var(--black);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 81px;
}

.sidebar a {
  padding: 0px 0px 19.5px 52px;
  text-decoration: none;
  font-size: var(--font18);
  font-weight: 600;
  color: var(--white);
  display: block;
  transition: 0.3s;
}

.sidebar a:hover {
  color: var(--secondary);
}

.sidebar a:active {
  color: var(--secondary-hover);
}

.sidebar .closebtn {
  position: absolute;
  padding: 0;
  top: 27px;
  right: 49px;
  color: var(--shapya-base);
  font-size: 36px;
  padding-left: 50px;
}
.sidebar .closebtn:hover {
  color: var(--shapya-base-hover);
}
.sidebar .closebtn:active {
  color: var(--shapya-base);
}

#body-overlay {
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
}
