#invitations {
    position: absolute;
    background-color: lightgreen;
    right: 0px;
    top: 0px;
}

/* The alert message box */
.invitation {
    padding: 20px;
    background-color: #d3ffba; /* Red */
    color: black;
    margin-bottom: 15px;
}

/* The close button */
.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
    color: black;
}

.start-button {
    height: 44px;
    background-color: aquamarine;
    align-content: center;
    padding: 8px;
    border-radius: 12px;
    min-width: 200px;
}

#start-buttons {
    display: flex;
    gap: 12px;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.start-button > a {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
}

@media (max-width: 480px) {
    .start-button {
        height: 44px;
        background-color: aquamarine;
        align-content: center;
        padding-left: 4px;
    }

    #start-buttons {
        display: flex;
        gap: 4px;
        flex-direction: column;
    }
}

#games > div {
    margin: 5px;
    border: 1px solid;
    padding: 5px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
}

.copyarea {
    position: absolute;
    width: 1px;
    height: 1px;
    top: 0px;
    right: 0px;
}

.collatz-robot-container,
.collatz-container {
    font-size: 2em;
    max-width: 344px;
    float: left;
    text-align: center;
    display: flex;
    background-color: lightblue;
}

.collatz-robot-container div.match-id,
.collatz-container div.match-id
{
    display:inline-block;
    width: 90%;
    overflow: hidden
}

.collatz-robot-container > div > input,
.collatz-container div input
{
    font-size: 1em;
}

.collatz-robot-container div.state div,
.collatz-container div.state div {
    text-align: center;
}

.collatz-robot-container.won,
.collatz-robot-container.won {
    background-color: seagreen;
}

.collatz-robot-container.lost,
.collatz-robot-container.lost {
    background-color: lightpink;
}

.copy-sign {
    cursor: pointer;
    margin-right: 20px;
    animation-duration: 3s;
}

.find-a-pair-container,
.find-a-pair-one-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.find-a-pair-card {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    border: 1px solid;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: beige;
    // background-image: url("/images/smesh.png");
    background-image: url("/images/fnaf2.png");
}

.find-a-pair-cards {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    font-size: 600%;
    text-align: center;
    justify-content: space-around;
    gap: 10px;
}

.find-a-pair-score, .find-a-pair-one-score {
    display: flex;
}

.find-a-pair-score span {
    margin: 20px;
    display: flex;
}

.find-a-pair-card {
}

.find-a-pair-card-1 {
    background-position-y: 0px;
}

.find-a-pair-card-2 {
    background-position-y: -200px;
}

.find-a-pair-card-3 {
    background-position-y: -400px;
}

.find-a-pair-card-4 {
    background-position-y: -600px;
}

.find-a-pair-card-5 {
    background-position-y: -800px;
}

.find-a-pair-card-6 {
    background-position-y: -1000px;
}

.find-a-pair-card-7 {
    background-position-y: -1200px;
}

.find-a-pair-card-8 {
    background-position-y: -1400px;
}

.find-a-pair-card-9 {
    background-position-y: -1600px;
}

.find-a-pair-card-10 {
    background-position-y: -1800px;
}

.find-a-pair-card-11 {
    background-position-y: -2000px;
}

.find-a-pair-card-x {
    /*background-position-x: 200px;*/
    /*background-color: #e5e5f7;*/
    /*opacity: 1;*/
    background-image:  url("/images/find-a-pair-shirt.svg");
    background-size: cover;
    /*background-image:  linear-gradient(135deg, #444cf7 25%, transparent 25%), linear-gradient(225deg, #444cf7 25%, transparent 25%), linear-gradient(45deg, #444cf7 25%, transparent 25%), linear-gradient(315deg, #444cf7 25%, #e5e5f7 25%);*/
    /*background-position:  37px 0, 37px 0, 0 0, 0 0;*/
    /*background-size: 37px 37px;*/
    /*background-repeat: repeat;*/
}

.find-a-pair-card-O {
    background-position-x: 200px;
    border: 1px dashed;
    background-color: whitesmoke;
}

.planning-poker-container {
    width: 100%;
    height: 100%;
    display: flex;
}
.planning-poker-container > .actions {
    // width: 64px;
    height: 100%;
    background-color: gray;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.player-area {
    background-color: lightblue;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: min-content;
}
.actions > div {
    // height: 64px;
    background-color: bisque;
    cursor: pointer;
    padding: 5px;
}
.topic {
    /*! padding: 10px; */
    background-color: aquamarine;
    display: flex;
    justify-content: center;
    min-height: 64px;
    align-items: center;
    font-size: 50px;
}

.allowed-stakes, .stakes {
    background-color: darkgrey;
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 15px;
    flex: 1 1 auto;
    min-height: 100px;
}

.stakes {
    flex-wrap: wrap;
    gap: 50px;
}

.results {
    /*! flex: 1 1 auto; */
    background-color: aliceblue;
    height: 200px;
}

.allowed-stake, .stake {
    width: 100px;
    justify-content: center;
    display: flex;
    height: 150px;
    align-items:  center;
    border-radius: 5px;
    background-color: antiquewhite;
    flex-direction: column;
    overflow: hidden;
}

.stake.stake-set, .allowed-stake.stake-set {
    background-color: lightgreen;
    translate: 0 -10px;
}

.stake > .stake-value {
    font-size: 40px;
    font-weight: bold;
}

.stake > .player {
    color: darkblue;
}

.allowed-stake > .stake-value {
    font-size: 50px;
}
