
/* CLASSES */

.questionContainer {
	position: fixed;
	width: 100%;
	height: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-top: 10%;
}

.joc {
	display: flex;
  	justify-content: center;
	flex-direction: row;
}

.jop {
	display: flex;
  	justify-content: center;
	flex-direction: row;
	margin-left: 10%;
}

.numbers {
  align-self: center;
  font-size: 40px;
  margin: 0 60px;
  display: flex;
  align-items: center;
}

.numbers div {
  display: inline;
  padding: 0px 10px;
  cursor: pointer;
}

.selection-border {
	border: rgb(54, 52, 52) 3px solid;
}

.selection-border:hover {
  border: aquamarine 3px solid;
}

.selection-border:active {
  border: white 3px solid;
}

.avatar-border{
	border: white 5px solid;
}

#no-event{
	position: absolute;
	z-index: 10;
	width: 100%;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: rgba(54, 52, 52, 0.5);
}

#no-event p{
	font-size: 20px;
	color: #fff;
	text-align: center;
}

/* Loading */
.loader {
	font-size: 10px;
	margin: 50px auto;
	text-indent: -9999em;
	width: 11em;
	height: 11em;
	border-radius: 50%;
	background: #ffffff;
	background: -moz-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	background: -webkit-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	background: -ms-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	position: relative;
	-webkit-animation: load3 1.4s infinite linear;
	animation: load3 1.4s infinite linear;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
  }
  .loader:before {
	width: 50%;
	height: 50%;
	background: #ffffff;
	border-radius: 100% 0 0 0;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
  }
  .loader:after {
	background: rgb(54, 52, 52);
	width: 75%;
	height: 75%;
	border-radius: 50%;
	content: '';
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
  }
  @-webkit-keyframes load3 {
	0% {
	  -webkit-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
	100% {
	  -webkit-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }
  @keyframes load3 {
	0% {
	  -webkit-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
	100% {
	  -webkit-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }