.score {
    position: fixed;
    width: 50vh;
    height: 100vh;
    padding-top: 10vh;
    left: calc(50vw - 50vh);
    background-color: #035B8A;
    cursor: default;
	top: 0;
}

.score > div {
    height: 7vh;
    line-height: 7vh;
    font-size: 2.5vh;
    width: 30vh;
    margin: 0 10vh 2vh 10vh;
}

.score > div > div {
    float: left;
}

.score > div > div:nth-child(1) {
    height: 7vh;
    width: 10vh;
    line-height: 7vh;
    background-color: white;
    border-radius: 0.5vh 0 0 0.5vh;
    border-style: solid solid solid none;
    color: #035B8A;
    font-weight: bold;
    text-align: center;
	box-sizing: content-box;
	border-width: 0.5vh;
	border-color: white;
}

.score > div > div:nth-child(2) {
    height: 7vh;
    width: 18.5vh;
    line-height: 7vh;
    border-color: white;
    border-width: 0.5vh;
    border-radius: 0 0.5vh 0.5vh 0;
    border-style: solid solid solid none;
    color: white;
    /* padding-right: 1vh; */
    text-align: center;
	box-sizing: content-box;
}

.current-player > div:nth-child(2) {
    background-color: #D6DD50;
}

.score-animation {
    animation-name: score-animation;
    animation-duration: 3s;
}

.score-animation > div {
    transition: 1s;
    transform: translateY(calc(9vh * var(--offset)));
}


.btn {
	width: 50vh;
	height: 10vh;
	position: fixed;
	left: calc(50vw + 5vh);
	background-color: #035B8A;
	border-radius: 2vh;
	transition: 0.3s background-color;
	text-align: center;
	line-height: 10vh;
	font-size: 3vh;
	font-weight: bold;
	color: white;
	cursor: pointer;
	box-sizing: content-box;
	padding: 0;
}

.btn:hover {
    background-color: #07496d;
	color: white;
}

.btn:active {
    background-color: #08354e;
	color: white;
}

.btn-return {
    top: 10vh;
}

.btn-end-game {
    top: 23vh;
    display: none;
}

.btn-hide {
    cursor: default;
    transform: translateX(20vh);
    transition: 0.5s;
    opacity: 0;
}






.winner {
    color: white;
    text-align: center;
    width: 60vh;
    position: fixed;
    left: calc(50vw + 5vh);
    opacity: 0;
    transform: translateY(100vh);
    cursor: default;
}

.winner > *:nth-child(1) {
    font-size: 10vh;
    font-weight: bold;
    line-height: 15vh;
    margin-top: 10vh;
}

.winner > *:nth-child(2) {
    width: 25vh;
    height: 25vh;
    border-radius: 100%;
    border-width: 2vh;
    border-style: solid;
    border-color: white;
    background-color: #FF3AF7;
    font-size: 15vh;
    color: #FCEE21;
    line-height: 25vh;
    margin-bottom: 2vh;
	box-sizing: content-box;
}

.winner > *:nth-child(3) {
    width: 56vh;
    height: 25vh;
    border-radius: 4vh;
    border-width: 2vh;
    border-style: solid;
    border-color: white;
    background-color: #53AE32;
    color: white;
}

.winner > *:nth-child(3) > *:nth-child(1) {
    font-size: 7.5vh;
    line-height: 7.5vh;
}

.winner > *:nth-child(3) > *:nth-child(2) {
    font-size: 8vh;
    line-height: 8vh;
}

.winner > *:nth-child(3) > *:nth-child(3) {
    font-size: 5vh;
    line-height: 5vh;
}

.winner-show {
    opacity: 1;
    transition: 1s;
    transform: none;
}




@keyframes score-animation {
    0% {}
    40% {}
    100% {left: ;}
}
.score_box {
    padding: 2%;
    /* width: 125vh; */
    margin: auto;
    height: 100vh;
    cursor: default;
    background: #17a2b8;
    position: relative;
    opacity: 0.93;
    border-radius: 5px;
    display: none;
    position: relative;
    background: #117a8b;
    display: none;
    opacity: 0.93;
}