.player_name {
    visibility: hidden;
    position: absolute;
    width: 100px;
    text-align: center;
    font-size: 16pt;
    text-shadow: 2pt 2pt rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
}

.player_score {
    visibility: hidden;
    position: absolute;
    width: 100px;
    text-align: center;
    font-size: 28pt;
    text-shadow: 2pt 2pt rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
}

#select_passing_cards_message {
    visibility: hidden;
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 16pt;
    text-shadow: 2pt 2pt rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
}

.select_passing_card_region {
    position: absolute;
    opacity: 0;
    border-radius: 8px;
    background: #00000022;
    border: 2px solid white;
    width: 110px;
    height: 157px;
}

#confirm_passing_cards_region {
    position: absolute;
    transform: translate(-50%, 0%);
    width: 140px;
    height: 60px;
    visibility: hidden;
    opacity: 0;
}

#confirm_passing_cards_button {
    position: absolute;
    cursor: pointer;
    border:#FFFFFF 2px solid;
    border-radius:8px;
    background:#141414;
    color:white;
    width: 130px;
    height: 50px;
    font-size:14pt;
}

#confirm_passing_cards_button:hover {
    background:#222222;
}

#confirm_passing_cards_shadow {
    position: absolute;
    background: rgba(0,0,0,0.5);
    border-radius: 8px;
    width: 130px;
    height: 50px;
    left: 15px;
    top: 10px;
}

#player_play_prompt {
    position: absolute;
    width: 200px;
    transform: translate(-50%,-50%);
    text-align: center;
    font-size: 16pt;
    text-shadow: 2pt 2pt rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
}

#moon_shoot_text {
    position: absolute;
    width: 100%;
    top: 15%;
    text-align: center;
    font-size: 24pt;
    text-shadow: 3pt 3pt rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
}

#BubbleScoreHeartTemplate {
    visibility: hidden;
    opacity: 0;
}

.BubbleScoreHeart {
    position: absolute;
    width: 112px;
    height: 100px;
    background-image: url('images/score_heart.png');
    text-align: center;
    pointer-events: none;
}

.BubbleScoreHeartsPoints {
    font-size: 22pt;
    line-height: 50px;
    font-weight: bold;
}

#BubbleScoreSpadeTemplate {
    visibility: hidden;
    opacity: 0;
}

.BubbleScoreSpade {
    position: absolute;
    width: 85px;
    height: 100px;
    background-image: url('images/score_spade.png');
    text-align: center;
    pointer-events: none;
}

.BubbleScoreSpadesPoints {
    font-size: 20pt;
    line-height: 50px;
    font-weight: bold;
}

#hint_button {
    position: absolute;
    cursor: pointer;
    width: 70px;
    height: 30px;
    background: rgba(0, 0, 0, 0);
    border:#FFFFFF 2px solid;
    border-width: 1px;
    border-radius: 7px;
    color:white;
    font-size: 13pt;
    visibility: hidden;
    opacity: 0;
}

#hint_button:hover {
    background: rgba(255, 255, 255, 0.3);
}

#GameOverView {
    z-index: 999;
    width: 340px;
    height:100px;
    background:#000000;
	border:#FFFFFF 2px solid;
	border-radius:10px;
	box-shadow: 30px 30px 0px rgba(0,0,0,0.5);
	position: absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%, -50%);
    margin: auto;
    text-align: center;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
}

#GameOverResultText {
    margin-top: 10px;
    font-size: 24pt;
}

#GameOverResultText2 {
    margin-top: 10px;
    font-size: 20pt;
}