﻿@import "/UI/Styles/styles.scss";

PickingPhase {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-weight: bold;
    font-family: $font-primary;
    color: $text-primary-color;
    text-stroke: 10px black;
    cursor: none;

    .information {
        position: absolute;
        left: 40px;
        bottom: 40px;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        font-size: 64px;
        pointer-events: all;

        .objective {
            font-size: 40px;
        }
    }

    .num-to-pick {
        position: absolute;
        right: 40px;
        gap: 10px;
        bottom: 40px;
        font-size: 64px;
    }

    .timer {
        position: absolute;
        top: 40px;
        text-stroke: 4px black;
        font-size: 22px;
        font-weight: lighter;
    }

    .top-left {
        position: absolute;
        top: 40px;
        left: 60px;
        flex-direction: column;
    }

    .waiting-players {
        gap: 8px;
        align-items: center;
        justify-content: center;

        > label {
            margin-right: 8px;
            font-size: 35px;
            text-stroke: 6px black;
        }

        .waiting-avi {
            width: 45px;
            height: 45px;
            filter: border-wrap(2px, black);
            border-radius: 4px;
        }
    }
}
