.abdl-wrap{
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.abdl-wrap figure{
  margin: 0;
}

.abdl-wrap img{
  display: block;
  max-width: 100%;
  height: auto;
}

.abdl-overlay{
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  background: rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.abdl-wrap.abdl-show .abdl-overlay{
  opacity: 1;
  pointer-events: auto;
}

.abdl-btn{
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  background: #fff;
  color: #111;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.abdl-btn--primary{
  background: #ffeb3b;
}
