.shop-page-container {
  width: 100vW;
  /* width: 1400px;
  left: 287px !important; */
  }
  .BasketSlider {
    bottom:10px;
    z-index: 50;
    position: fixed;
    right: 10px;
    text-align: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    line-height: 40px;
    padding-top: 10px!important;
    padding-bottom: 10px!important;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:var(--ticket-color);
    font-size: var(--text-md-lg)!important; 
    color: var(--fullButtonColor);
    display: none;
    cursor: pointer;
    /* animation: moveToBottomRight 3s forwards; */
    perspective: 1000px; /* Perspektive für 3D-Effekt */
    animation: flip 1s forwards;
  }
  
  @keyframes flip {
    0% {
      transform: rotateY(0deg);
    }
    100% {
      transform: rotateY(180deg);
    }
  }