.saved-pdf-download{
  display:inline-flex;
  align-items:center;
  gap:9px;
  width:max-content;
  max-width:100%;
  min-height:38px;
  margin-top:16px;
  padding:0 14px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  background:rgba(255,255,255,.035);
  color:rgba(244,241,236,.86);
  font:400 13px/1 Inter,sans-serif;
  letter-spacing:.01em;
  cursor:pointer;
  transition:background .22s ease,border-color .22s ease,color .22s ease,transform .22s ease;
}
.saved-pdf-download[hidden]{display:none!important}
.saved-pdf-download:hover{
  border-color:rgba(255,255,255,.38);
  background:rgba(255,255,255,.08);
  color:#fff;
  transform:translateY(-1px);
}
.saved-pdf-download i{
  font-size:14px;
}
body.light-theme .saved-pdf-download{
  border-color:rgba(17,18,20,.18);
  background:rgba(0,0,0,.025);
  color:rgba(17,18,20,.76);
}
body.light-theme .saved-pdf-download:hover{
  border-color:rgba(17,18,20,.36);
  background:rgba(0,0,0,.055);
  color:#111214;
}

@media(max-width:760px){
  .saved-pdf-download{
    margin-top:13px;
  }
}
