﻿.bottompackofcards {
    width: -webkit-fill-available;
    position: absolute;
    bottom: 0px;
    height: 40vh;
    /* border: 5px solid black; */
}

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

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

.toppackofcards {
    width: -webkit-fill-available;
    position: absolute;
    height: 30%;
    /* 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%;
    margin-left: auto;
    margin-right: auto;
    /*border: 5px solid green;*/
}