:root {
	box-sizing: border-box;
  
	--primary: #404040;
	--hover-color: #fdd052;
	--dark: #1c2022;
	--light: #fff;
  
	--header-bg: var(--primary);
}

  *, *::after, *::before {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}

body {
	font-family: Roboto, sans-serif;
	font-size: 1rem;
}
  

header {
	background: var(--header-bg);
	padding-left: 1em;
	position: sticky;
	top: 0;
}

th {
	font-size: 11px;
}

td {
	font-size: 11px;
}

h6 {
	color: #EF5400;
	font-size: 0.4em;
}

label {
	font-size: 0.8em;
}

p {
	font-size: 11px;
}

.modal-body{
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.roundImg {
    width:38px;
    height:38px;
    border-radius:20px;
    border:1px solid #666;
	margin-top: 6px;
	margin-right: 8px;
}

#divAlert{
	margin-left: 5px;
	margin-right: 5px;
	z-index: -1;
}

.space5{
	width: 5px;
	height: auto;
	display: inline-block;
}

.space10{
	width: 10px;
	height: auto;
	display: inline-block;
}

.space30{
	width: 30px;
	height: auto;
	display: inline-block;
}

.space50{
	width: 50px;
	height: auto;
	display: inline-block;
}

.space70{
	width: 70px;
	height: auto;
	display: inline-block;
}

.flex-item {
	justify-content: flex-start;
}

input[type=checkbox]
{
  /* Doble-tamaño Checkboxes */
  -ms-transform: scale(1.5); /* IE */
  -moz-transform: scale(1.5); /* FF */
  -webkit-transform: scale(1.5); /* Safari y Chrome */
  -o-transform: scale(1.5); /* Opera */
  padding: 0px;
}

.centered-element {
	margin: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.content{
	padding: 10px;
}

table thead{
	background-color: #0a4f70;
	color:white;
}

.overlay {
	position: absolute;
	display: none;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 2;
}

.popupWarning {
	position: absolute;
	width: 90%;
	height: 50%;
	top: 25%;
	left: 5%;
	text-align: center;
	background: white;
	overflow-y: scroll
}

.popupAdvertisement {
	position: absolute;
	width: 90%;
	height: 50%;
	top: 25%;
	left: 5%;
	text-align: center;
	background: white;
}

.popupSeeMore {
	position: absolute;
	width: 90%;
	height: 50%;
	top: 25%;
	left: 5%;
	text-align: left;
	background: white;
	overflow-y: scroll;
}

.closeIcon{
	cursor:	pointer;
	color: #fff;
	background-color: #333333;
	border-radius: 50%;
}

.branding {
	display: flex;
}

.branding-logo {
	color: var(--light);
	font-size: calc(0.8rem + 1vw);
	text-decoration: none;
	margin-top: 0px;
}

.branding-logo:hover{
	color: #0F65E5;
	font-size: calc(1rem + 1vw);
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-right: 145px;
	padding-top: 0;
	padding-bottom: 0;
}

.menu {
	display: flex;
	flex-direction: row;
}

ul {
	margin-top: 12px;
	margin-bottom: 0;
}

.menu a{
	padding-top: 5px;
	padding-bottom: 5px;
}

.menu li {
	list-style: none;
}

.menu li a {

	display: block;
	text-decoration: none;
	color: var(--light);
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 1.5em;
	padding-right: 1.5em;
	font-size: 1rem;
}
  
/* Styling submenu */
.has-dropdown {
	position: relative;
}

.submenu {
	position: absolute;
	left: 0;
	background-color: var(--dark);
	white-space: nowrap;
	padding: 1.5em 0;
	min-width: 16em;
	z-index: 1;
  
	/* hide submenus */
	opacity: 0;
	transform: scaleY(0);
	transform-origin: top center;
}

ul.submenu {
	margin-top: 0;
	padding-top: 0;
	padding-bottom: 0;
}

.submenu > li > a {
	padding: 0.8em 1.5em;
}

.submenu .submenu {
	left: -100%;
	top: 0;
}
  
.menu > li:hover > a, .submenu > li:hover > a {
	background-color: hsla(0, 0%, 100%, 0.05);
	color: var(--hover-color);
}

.menu > li:hover > a {
	background-color: hsla(0, 0%, 0%, 0.95);
}
  

/* Arrows */
  
.arrow {
	width: 0.5em;
	height: 0.5em;
	display: inline-block;
	vertical-align: middle;
	border-left: 0.15em solid currentColor;
	border-bottom: 0.15em solid currentColor;
	transform: rotate(-45deg);
	margin-top: -0.25em;
	transition: transform 100ms ease-in-out;
}
  
/* Reveal  */
.menu > li:hover > a + .submenu, .submenu > li:hover > a + .submenu {
	opacity: 1;
	transform: scaleY(1);
}
  
/* Animate arrows */
.menu > li:hover > a > .arrow, .submenu > li:hover > a > .arrow {
	transform: rotate(225deg);
}
  
@media only screen and (max-width: 78.75em) {
	.submenu .submenu .submenu {
	  left: -100%;
	  top: 0.5em;
	}
	.submenu {
	  min-width: 16em;
	}
}

@media only screen and (max-width: 58.75em) {
	.menu li a {
	  font-size: 1rem;
	}
}
  
@media only screen and (max-width: 50em) {
	header {
	  	padding: 1.5em 2em;
	}

	.menu {
		flex-flow: column;
		position: absolute;
		background: var(--light);
		top: 4.55em;
		left: 0;
		right: 0;
		height: 100vh;
		margin-top: 0px;
		opacity: 0;
		transform: scaleY(0);
		transform-origin: top center;
		transition: 200ms transform cubic-bezier(0.36, 0.4, 0.42, 1.48) 100ms,
			100ms opacity ease-in-out;
		
		overflow-y: auto
	}

	.menu > li > a {
		font-size: 1rem;
		color: var(--dark);
	}

	.submenu > ul {
		padding-top: 5px;
		padding-bottom: 5px;
	}

	.submenu > li > a {
	  	font-size: 0.8rem;
	}
  
	.submenu {
		top: 0;
		padding-left: 1.5em;
		z-index: 3;
		border-left: 0.12em dotted hsla(342, 99%, 45%, 0.95);
	}

	.submenu .submenu {
		left: 0px;
		top: 0;
		z-index: 5;
	}
  
	.menu > li:hover > a + .submenu {
	  	position: relative;
	}

	.submenu > li:hover > a + .submenu {
		position: absolute;
  	}
  
	.hamburger {
		width: 2em;
		height: 0.25em;
		/* display: block; */
		background: var(--light);
		position: relative;
		cursor: pointer;
		transition: 0.2s transform ease-in-out;
	}

	.hamburger::after, .hamburger::before {
		content: "";
		position: absolute;
		left: 0;
		background: inherit;
		width: inherit;
		height: inherit;
	
		transition: 0.2s transform ease-in-out;
	}
  
	.hamburger::after {
	  	top: 0.65em;
	}

	.hamburger::before {
	  	bottom: 0.65em;
	}
  
	.close::after,
	.close::before {
		top: 0;
		transition: 0.2s transform ease-in-out;
	}

	.close::before {
	  	display: none;
	}
	
	.close {
		transform: rotate(45deg);
		transition: 0.2s transform ease-in-out;
	}

	.close::after {
	  	transform: rotate(-90deg);
	}
  
	.navbar {
		padding-right: 0px;
	}

	/* reveal menu */
	input[type="checkbox"]:checked + .menu {
		position: absolute;
		opacity: 1;
		transform: scaleY(1);
	}
}

/* Card */

.processCard {
	padding: 10px 0;
}

.processCard h6 {
	color: #000000;
	font-size: 14px;
	font-weight: bold;
}

.containerCard {
	padding: 15px;
	display: flex;
	flex-wrap: wrap;
  }

.card {
	padding: 15px 15px 10px;
	display: flex;
	flex-direction: column;
	background: linear-gradient(to right, #80c1f2 0%, #7c9ef2 100%);
	border-radius: 20px;
	color: #fff;
	position: relative;
	overflow: hidden;
	margin-bottom: 16px;
	margin-right: 16px;
	flex: auto;
	z-index: 1;
}

.card img {
	width: 100%;
	height: 70px;
	width: 70px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 10px;
	margin-right: 0px;
}

.auxPoints {
	font-size: 14px;
	align-self: flex-end;
	z-index: 5;
	padding: -10px 0 0 0;
}

.medium-text {
	width: 100%;
	margin-left: 5px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	z-index: 0;
}

.card-body {
	padding: 0;
	display: flex;
	justify-content: space-between;
	z-index: 3;
}

.card-body h5, .card-body p, .card-body a {
	margin: 0;
}

.card-body-item {
	display: flex;
	width: 250px;	/* Ancho de las Card */
	z-index: 0;
}

.card-body .name {
	font-size: 14px;
	font-weight: bold;
}

.card-body .nationality {
	font-size: 12px;
}

.card-body .placeBirth {
	font-size: 12px;
}

.card-body .greeting {
	font-size: 10px;
}

.card-body .seeMore {
	margin-bottom: 12px;
	text-decoration: none;
	font-size: 12px;
	color: rgb(255, 94, 0);
}

.seeMore {
	padding: 0 5px;
}

.btn-vote {
	font-size: 13px;
	font-weight: bold;
	padding: 0 5px;
	margin-top: 20px;
	border-top-left-radius: 25px 25px;
	border-bottom-left-radius: 25px 25px;
	border-top-right-radius: 25px 25px;
	border-bottom-right-radius: 25px 25px;
	width: 80%;
}

.btn-center {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
}

.join-up {
	font-size: 14px;
	font-weight: bold;
	padding: 5px 20px;
	border-top-left-radius: 15px 15px;
	border-bottom-left-radius: 15px 15px;
	border-top-right-radius: 15px 15px;
	border-bottom-right-radius: 15px 15px;
	width: 180px;
}

.top {
	width: 100%;
	z-index: 3;
}

.data {
	display: flex;
	font-size: 12px;
}

.data div {
	margin-right: 10px;
	text-align: center;
}

.ranking {
	justify-content: center;
	align-items: center;
	display: flex;
	flex-direction: column;
}

.ranking h1 {
	margin: 0;
	font-size: 60px;
	font-weight: bold;
}

.ranking p {
	font-size: 14px;
}

.circle {
	position: absolute;
	height: 350px;
	width: 350px;
	border-radius: 50%;
	right: -250px;
	bottom: -120px;
	z-index: 2;
	background: linear-gradient(to right, #80c1f2 0%, #7c9ef2 100%);
}

.medio {
	background: linear-gradient(45deg, #66f 10%, #f76902 30%, #ffc 60%);
}

.contenedor {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Altura de la pantalla */
  width: 100vw; /* Ancho de la pantalla */
}