
.al-avatar{
  position: fixed;
  inset: 0;
  z-index: 900;                 
  background: #070912;          
  opacity: 0;
  visibility: hidden;           
  transition: opacity .28s cubic-bezier(0.65,0,0.35,1), visibility 0s linear .28s;
}
.al-avatar.is-open{
  opacity: 1;
  visibility: visible;
  transition: opacity .28s cubic-bezier(0.65,0,0.35,1), visibility 0s;
}
.al-avatar-frame{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.al-avatar-close{
  position: absolute;
  top: 30px;
  left: 30px;
  width: 78px;
  height: 78px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #2b3a55;
  box-shadow: 0 4px 0 #b9c4d6, 0 8px 18px rgba(0,0,0,.28);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.al-avatar-close svg{
  width: 100%;
  height: 100%;
  display: block;
}
.al-avatar-close:active{
  transform: translateY(4px);
  box-shadow: 0 0 0 #b9c4d6, 0 3px 8px rgba(0,0,0,.28);
}
