div.fabuleusemanager-pop-up-background{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right:0;
    bottom:0;
    background: rgba( 0, 0, 0, .25 );
    z-index: 1001;
}

.hidden{
  display: none !important;
}

div.fabuleusemanager-pop-up{
  position: absolute;
  padding: 25px;
  background: #f6f6f6;
  border-radius: 20px;
  transform: translate(0%,-50%);
  z-index : 1002;
}
span.fabuleusemanager-pop-up-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    z-index : 1003;
    cursor: pointer;
}


/* Special for gift pop-up */

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(-15deg); }
  30% { transform: rotate(10deg); }
  45% { transform: rotate(-10deg); }
  60% { transform: rotate(6deg); }
  75% { transform: rotate(-4deg); }
  90% { transform: rotate(2deg); }
}

.wiggle {
  animation: wiggle 0.8s ease-in-out;
}

.fabuleusemanager-gift-popup-button {
    position: sticky;
    align-self: end;
    align-self: flex-end;
    bottom: 20px;
    right: 20px;
    margin: 20px;
    font-size: 32px;
    background: var(--background-brown);
    opacity: 0.8;
    color: white;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 900;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: 0.2s;
}
.fabuleusemanager-gift-popup-button:hover {
    transform: scale(1.1);
}

@media (max-width: 900px){
  div.fabuleusemanager-pop-up{
    padding:0px;
  }
}