#player_box2 {
    display: flex;
    flex-direction: row;
    width: 500px;
    justify-content: space-between;
    margin-top: 20px;
    max-width: 96vw;
    z-index: 1;
}



#player_card {
    width: 100px;
    height: 45px;
    background-color: white;
    font-size: 17px;
    align-content: center;
    color: hsl(0, 0%, 80%);
    text-align: center;
    backdrop-filter: blur(var(--BLUR));

    border-radius: var(--BORDER_RADIUS);
}

@media only screen and (max-width: 425px) {
    #player_card {
        width: 80px;
        height: 36px;
        font-size: 15px;
    }
}

#matchmaking {
    width: 100vw;
    height: 100vh;
    margin: 0%;
    padding: 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}



#matchmaking_page_titel {
    width: 500px;
    max-width: 96vw;
    backdrop-filter: blur(var(--BLUR));
    height: 50px;
    font-size: 22px;
    text-align: center;
    color: var(--color-primary-default-text);
    font-weight: 700;
    background-color: var(--color-primary-surface-1);
    margin-top: 20px;
    border-radius: var(--BORDER_RADIUS);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#matchmaking_page_titel>.text:nth-child(1) {
    margin-left: 20px !important;
}

#matchmaking_page_titel>.text:nth-child(2) {
    margin-right: 20px !important;
}





#info {
    margin-top: 0px;
}




.loader {
    margin-left: 20px;
    border-radius: 50%;
    border-left: 10px solid var(--color-primary-surface-1);
    border-top: 10px solid var(--color-positive);
    border-right: 10px solid var(--color-primary-surface-1);
    box-shadow: var(--BOX_SHADOW);
    border-bottom: 10px solid var(--color-positive);
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    animation: spin 4000ms linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#matchmaking_counter {
    margin-top: 40px;
    font-size: 24px;
    color: white;
}

.matchmaking-button-box {
    margin-top: 40px;
    padding: none;
    width: 250px;
    max-width: 96vw;
    height: 50px;
    backdrop-filter: blur(var(--Blur));
}

.matchmaking-button-box .button {
    width: 100%;
    height: 100%;
    border: none;
    background-color: var(--S_color);
    color: var(--color-primary-default-text);
    outline: none;
    border-radius: var(--BORDER_RADIUS);
    font-size: 20px;
    transition: var(--TRANSITION);
    cursor: pointer;
    padding: none;

}

.matchmaking-button-box .button:hover {
    transition: var(--TRANSITION);
    box-shadow: 0.0vmax 0.0vmax 0.75vmax 0.0vmax var(--color-primary-surface-1);
    scale: 1.0625;
}