
  .wrapper{
    position: fixed;
    right: calc(2.65em + 25px);
    top: calc(45px + var(--headerheight));
    height: 0;
    width: 0;
    background: var(--background);
    clip-path: circle(25px at calc(100% - 45px) 45px);
    transition: all 0.3s ease-in-out;
    z-index: 9999;
    overflow: hidden;
  }
  body:has(#active:checked){
    overflow: hidden;
  }
  #active:checked ~ .wrapper{
    clip-path: circle(75%);
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
  }
  .menu-btn{
    position: fixed;
    z-index: 2;
    right: 2.65em;
    top: calc(20px + var(--headerheight));
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    background: var(--secondary);
    transition: all 0.3s ease-in-out;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: brightness(2);
  }
  .menu-btn .opend{
    display: none;
    width: 40px;
    height: 40px;
  }
  .menu-btn .closed{
    width: 40px;
    height: 40px;
  }
  #active:checked ~ .menu-btn .opend{
    display: block;
  }
  #active:checked ~ .menu-btn .closed{
    display: none;
  }


  #active:checked ~ .menu-btn{
    color: #fff;
    filter: brightness(1);
  }
  #active:checked ~ .menu-btn i:before{
    content: "\f00d";
  }
  .wrapper ul{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    list-style: none;
    text-align: center;
    padding: 0;
  }
  .wrapper ul li{
    margin: 15px 0;
  }
  .wrapper ul li a{
    color: none;
    text-decoration: none;
    font-size: 30px;
    font-weight: 500;
    padding: 5px 30px;
    border-radius: var(--borderRadius);
    background: var(--secondary);
    position: relative;
    line-height: 50px;
    transition: all 0.3s ease;
    width: 8em;
    display: block;
  }
  .wrapper ul li a:hover{
    transform: translateY(-5px);
  }
  #active[type="checkbox"]{
    display: none;
  }
  
  @keyframes rotate {
    0%{
      filter: hue-rotate(0deg);
    }
    100%{
      filter: hue-rotate(360deg);
    }
  }
  @media(max-width: 600px){
    .menu-btn{
        right: 1.3em;
    }
    .wrapper{
      right: calc(1.3em + 25px);
    }
  }
  