.pk-fixed-bottom-left, .pk-fixed-bottom-right {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    display: flex;
    flex-direction: column-reverse;
    gap:10px
}

.pk-fixed-bottom-left {
    left: 20px;
    right:auto
}

.pk-fixed-button {
    width: 60px;
    height: 60px;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 50%;
    background: #f1f1f1;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .22);
    transition:all .5s ease-in-out
}

.pk-fixed-button svg {
    width: 60%;
    height:60%
}

.pk-fixed-button:hover {
    background: #f1f1f1;
    transform:scale(1.04)
}