.sidebar-v1{
  position: sticky;
  top: 15rem;
  width: 40rem;
  margin-right: 3.2rem;
  background: var(--white);
  border-radius: 0.8rem;
  padding: 4rem;
}
.sidebar-v1-nav li{
  margin-bottom: 1rem;
}
.sidebar-v1-nav li:last-child{
  margin-bottom: 0;
}
.sidebar-v1-nav a{
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.sidebar-v1-nav li.active a,
.sidebar-v1-nav li:hover a{
  color: var(--pink);
}
.sidebar-v1 a::after{
  position: absolute;
  content: "";
  right: 0;
  width: 0.7rem;
  height: 1rem;
  background-image: url(../images/icon-chevron-right.png);
  background-size: cover;
  background-position: center;
}
.sidebar-v1 li.active a::after,
.sidebar-v1 li:hover a::after{
  background-image: url(../images/icon-pink-chevron-right.png);
}
@media(min-width:1360px) and (max-width:1459.98px){
  .sidebar-v1 {
    top: 14rem;
    width: 38rem;
    margin-right: 2.4rem;
    padding: 3.2rem;
  }
}
@media(min-width:1200px) and (max-width:1359.98px){
  .sidebar-v1 {
    top: 14rem;
    width: 38rem;
    margin-right: 2.4rem;
    padding: 3.2rem;
  }
}
@media(min-width:992px) and (max-width:1199.98px){
  .sidebar-v1 {
    top: 13rem;
    width: 35rem;
    margin-right: 2rem;
    padding: 2.4rem;
  }
}
@media(max-width:991.98px){
  .sidebar-v1 {
    position: relative;
    top: 0;
    width: 100%;
    margin-right: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    z-index: 2;
  }
  .sidebar-v1-head {
    position: relative;
    padding: 1rem 4rem 1rem 2rem;
    background: var(--white);
    border-radius: 0.8rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
  }
  .sidebar-v1-head::after{
    position: absolute;
    content: "";
    right: 2rem;
    width: 1.2rem;
    height: 0.8rem;
    background: url(../images/icon-arrow-down.png);
    background-size: cover;
    background-position: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .sidebar-v1.open .sidebar-v1-head::after{
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .sidebar-v1-nav{
    position: absolute;
    background: var(--white);
    border-radius: 0.4rem;
    padding: 0.6rem 0;
    width: 100%;
    box-shadow: 0px 4px 16px 0px #1D0D050F, 0px -4px 16px 0px #1D0D050F;
    margin-top: 0.8rem;
    display: block;
    z-index: 10;
    max-height: 20rem;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform-origin: 50% 0;
    transform: scaleY(0);
    transition-duration: 250ms;
  }
  .sidebar-v1.open .sidebar-v1-nav {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
  }
  .sidebar-v1-nav li {
    margin-bottom: 0;
  }
  .sidebar-v1-nav a {
    padding: 0.6rem 2rem;
  }
  .sidebar-v1 a::after {
    right: 2rem;
  }
}