.bottompackofcards {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    height: calc(100% - (var(--playground-table-circle-center-y) + (var(--playground-table-circle-size) / 2)));
    pointer-events: none;
    /* border: 5px solid black; */
}

.rightpackofcards {
    width: 50%;
    position: absolute;
    height: 80%;
    max-height: 100%;
    min-height: 0;
    /* border: 5px solid black; */
    right: 0px;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.leftpackofcards {
    width: 50%;
    position: absolute;
    height: 80%;
    max-height: 100%;
    min-height: 0;
    /* border: 5px solid black; */
    left: 0px;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.toppackofcards {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    height: 29vh;
    height: 29svh;
    /* border: 5px solid black; */
    top: 0px;
    pointer-events: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.mainpackofcards {
    width: var(--mainPack-Width-Percentage);
    max-width: 700px;
    position: relative;
    transition: var(--mainPack-Width-Transition);
    height: 100%;
    z-index: 3;
    pointer-events: none;
    margin-left: auto;
    margin-right: auto;
    /*border: 5px solid green;*/
}