@font-face {
	font-family: digital-7;
	src: url("digital-font/digital-7.ttf");
} 

*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family:'digital-7';
}

body{
	background-color: black;
}

.mps{
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.question{
	width: 70%;
	height: 70%;
	font-size: 1.5em;
	color: white;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/*border: 1px dashed white;*/
}
.question .qs-up{
	margin-top: 5%;
}
.question .qs-up, .question .qs-down{
	width: 100%;
	height: 35%;
	display: flex;
}
.question .q-item{
	width: 50%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.question .q-item p{
	width: 70px;
	padding: 20px 0;
	border: 1px dashed white;
}

.points-container{
	width: 100%;
	height: 65vh;
	margin-top: 1vh;
	display: flex;
	justify-content: space-around;
}
.pc-item{
	height: 100%;
	color: white;
	display: flex;
	position: relative; /*para utilizar el absolute en su hijo*/
}
.pc-item-1, .pc-item-3{ /*current points*/
	width: 40%;
	font-size: 7em;
	border: 1px dashed yellow;
	justify-content: center;
	align-items: center;
}
.pc-item-2{ /*current set*/
	width: 15%;
	font-size: 2em;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
#new-set{
	font-size: .6em;
	margin-top: 30%;
	color: red;
	visibility: hidden;
}
.number{
	line-height: 1.2em;
}
.new-set{
	line-height: 1.5em;
}
.equipo{
	width: 100%;
	position: absolute;
	font-size: .3em;
	left: 0;
	top: 10%;
	text-align: center;
	color: rgba(255, 255, 255, .3);
}
.restar{
	width: 20%;
	height: 20%;
	position: absolute;
	font-size: .5em;
	line-height: .5em;
	right: 0;
	bottom: 0;
	color: red;
	text-align: center;
}
@media (orientation: portrait){
	.restar{
		right: 5%;
		bottom: -8%;
	}
}


/*TABLA DE PUNTOS*/
.sets-container{
	width: 98%;
	height: 30vh;
	margin: 2vh auto 0 auto;
	border: 1px dashed red;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	overflow-x: auto; /*scroll horizontal*/
}
.sc-item{
	width: 100%;
	height: 50%;
	color: white;
	font-size: 1.5em;
	display: flex;
}

.teamname{
	width: 10%;
	display: flex;
	justify-content: center;
	align-items: center;
	border-right: 1px dashed red;
}
.tn-a{
	border-bottom: 1px dashed red;
}

.setpoints{
	width: 90%;
	height: 100%;
	display: flex;
	justify-content: flex-start;
}
.setpoints-a, .setpoints-b{
	min-width: 12%; /*evita ajustar el tamaño indicado*/
	height: 100%;
	border-right: 1px dashed red;
	display: flex;
	justify-content: center;
	align-items: center;
}