/*-- THEME COLORS --*/
:root {
	/* Colors */
	--blue: #1590d3;
	--yellow: #faba14;
	--red: #e63136;
	--green: #32ba46;
	--gray-1: #b7b7b7;

	/* Shadows */
	--shadow-1: 0 1px 3px 1px rgb(66 66 66 / 20%),
		0 2px 8px 4px rgb(66 66 66 / 10%);
}

@font-face {
	font-family: "Ubuntu-regular";
	src: url("/fonts/ubuntu/Ubuntu-Regular.woff2") format("woff2"),
		url("/fonts/ubuntu/Ubuntu-Regular.woff") format("woff");
	font-weight: bold;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Ubuntu-italic";
	src: url("/fonts/ubuntu/Ubuntu-Italic.woff2") format("woff2"),
		url("/fonts/ubuntu/Ubuntu-Italic.woff") format("woff");
	font-weight: bold;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Ubuntu-bold";
	src: url("/fonts/ubuntu/Ubuntu-Bold.woff2") format("woff2"),
		url("/fonts/ubuntu/Ubuntu-Bold.woff") format("woff");
	font-weight: bold;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Ubuntu-BoldItalic";
	src: url("/fonts/ubuntu/Ubuntu-BoldItalic.woff2") format("woff2"),
		url("/fonts/ubuntu/Ubuntu-BoldItalic.woff") format("woff");
	font-weight: bold;
	font-style: italic;
	font-display: swap;
}

/*-- END THEME COLORS --*/

/*-- BASE --*/
* {
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	background-color: #ffffff;
	margin: 0px;
	font-family: "Ubuntu-regular";
}

::-webkit-scrollbar {
	width: 6px;
	height: 5px;
}

::-webkit-scrollbar-thumb {
	background-color: #d3d3d3;
}

a {
	text-decoration: none !important;
}

/* a:hover {
	color: #fff !important;
} */

button {
	cursor: pointer;
}

input,
textarea,
select {
	outline: none;
}

.bg-blue {
	background-color: var(--blue);
}

.bg-yellow {
	background-color: var(--yellow);
}

.bg-green {
	background-color: var(--green);
}

.bg-red {
	background-color: var(--red);
}

.login-page {
	background-color: #ffffff !important;
}

.login-box {
	width: 100% !important;
	padding: 0px 30px 30px;
}

.login-box > div {
	box-shadow: unset !important;
}

.input-group-text {
	border: 1px solid #ced4da !important;
}

.login-card-body {
	border-radius: 20px;
	background-color: transparent !important;
}

.login-card-body > p {
	text-align: center;
	margin-top: 40px !important;
}

.login-card-body > p > a {
	color: #000000 !important;
	font-size: 14px;
}

.content-input-login {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	background-color: #fff;
	margin-bottom: 20px;
	border-radius: 50px !important;
	border: 1px solid #a8a8a8;
}

.content-input-login > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 10px;
}

.content-input-login input {
	border: none !important;
	border-radius: 50px !important;
	text-align: start;
	font-weight: bold;
	color: #a8a8a8 !important;
}

.content-input-login input::placeholder {
	color: #a8a8a8 !important;
}

.btn-primary {
	background-color: #009640 !important;
	border: none !important;
}

#content-logo-login {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}

#content-logo-login > img {
	width: 100%;
}

#principal-content-container {
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-image: url("/img/app/fondo.png");
	background-size: cover;
	background-repeat: no-repeat;
}

#content-container {
	width: 100%;
	height: 100vh;
	box-shadow: 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%),
		0 2px 4px -1px rgb(0 0 0 / 30%);
	overflow: hidden;
	position: relative;
}

#principal-content-container {
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.login-page,
.register-page {
	background-color: #fff !important;
}

.input-group-text {
	background-color: unset !important;
	border: none !important;
	padding-right: 0px !important;
	color: #a8a8a8;
}

#principal-content-data {
	width: 100%;
	height: calc(100vh - 180px);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	overflow: auto;
}

#title-login {
	text-align: start;
	color: #11b711;
	font-size: 22px;
	font-family: "Ubuntu-bold";
	margin-bottom: 20px;
}

.terms {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.terms > div:last-child {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.terms > div:last-child button {
	width: 45%;
	margin-top: 30px;
}

.register-logo {
	width: 90%;
}

#content-agreeTerms label {
	font-size: 14px;
	font-family: "Ubuntu-bold";
	color: #11b711;
}

.principal-title-pages {
	width: 100%;
	display: flex;
	padding: 20px;
	font-size: 14px;
	color: #009640;
}

.main-sidebar {
	background-color: #009640 !important;
}

[class*="sidebar-dark-"] .sidebar a {
	color: #ffffff !important;
}

.brand-link .brand-image {
	border-radius: 0px !important;
	float: unset !important;
	line-height: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
	margin-top: 0px !important;
	max-height: unset !important;
	width: 100% !important;
}

.main-header {
	background-color: #009640;
}

.navbar-light .navbar-nav .nav-link {
	color: #ffffff;
}

.navbar-nav > .user-menu .user-image {
	background: #ffffff;
}

.main-footer {
	display: none !important;
}

#content-inp-search {
	width: 60%;
	padding: 5px 15px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%),
		0 1px 5px 0 rgb(0 0 0 / 20%);
	background-color: #ffffff;
	border-radius: 30px;
	margin-top: 30px;
}

#content-inp-search > input {
	border: none;
}

#content-inp-search > a {
	width: 60%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#content-filter-class-att {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin: 20px 0px 30px;
}

#content-filter-class-att > span {
	color: #1590d3;
	font-size: 14px;
	margin-right: 10px;
}

#content-filter-class-att > select {
	border: none;
	box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%),
		0 1px 5px 0 rgb(0 0 0 / 20%);
	border-radius: 20px;
	font-size: 12px;
	padding: 4px 10px;
	color: #1590d3;
	font-weight: bold;
}

.popup {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	border-radius: 10px;
	display: none;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0px;
	left: 0;
	z-index: 1059;
}

.popup.active {
	display: flex;
}

.popupInscripciones {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	border-radius: 10px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	position: absolute;
	top: 0px;
	left: 0;
	z-index: 101;
}

.cortina-popup {
	width: 100%;
	height: 140%;
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.popup-content {
	width: 90%;
	min-height: 400px;
	max-height: 600px;
	background-color: #ffff;
	color: #4d4d4d;
	border-radius: 20px;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12),
		0 2px 4px -1px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	z-index: 2;
}

.content-btn-cerrar-popup {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.btn-cerrar-popup {
	width: 50px;
	height: 50px;
	position: absolute;
	top: -20px;
	right: -20px;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%),
		0 1px 5px 0 rgb(0 0 0 / 20%);
	display: flex;
	justify-content: center;
	align-items: center;
}

.icon-informativo {
	width: 120px;
	height: 120px;
	position: absolute;
	top: -50px;
	background-color: #ffb303;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.icon-informativo img {
	width: 80px;
}

.content-container-p {
	width: 100%;
	height: calc(100% - 140px);
	margin-top: 5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	overflow: auto;
	position: relative;
}

.content-p {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0px;
}

.popup-informativo .content-popup {
	width: 90%;
	margin-top: 90px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.popup-informativo .content-popup h2 {
	font-size: 28px;
	color: #11b711;
	font-family: "Ubuntu-bold";
	text-align: center;
	margin-bottom: 15px;
}

.popup-informativo .content-popup p {
	font-size: 20px;
	color: #8a8a8a;
	margin-bottom: 20px;
	text-align: center;
}

.popup-informativo .content-popup a {
	padding: 4px 20px;
	border-radius: 20px;
	background-color: #0c6e31;
	color: #ffffff;
	font-family: "Ubuntu-bold";
	margin: 20px 0px;
}

.popup-informativo .content-popup span {
	font-size: 18px;
	font-family: "Ubuntu-regular";
	color: #8a8a8a;
}

.s-fecha-sorteo {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: center;
	align-items: center;
	background-image: url("/img/patineta/2.png");
	background-repeat: round;
	background-size: cover;
	margin: 30px 0px 0px;
	padding: 10px;
}

.s-fecha-sorteo > span {
	color: #ffffff;
	font-size: 20px;
	font-family: "Ubuntu-regular";
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.s-fecha-sorteo > span > span {
	color: #ffffff;
	font-size: 22px;
	font-family: "Ubuntu-bold";
	text-align: center;
}

#cortina-header.active {
	width: 500px;
	height: 800px;
	border-radius: 20px;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.32);
	z-index: 1;
	display: block;
}

#cortina-header {
	display: none;
}

.sin-info-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 60px 0px;
}

.sin-info-container > div {
	width: 200px;
	height: 170px;
	border-radius: 50%;
	background-color: #c6c6c6;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.sin-info-container > div > img {
	width: 80%;
}

.sin-info-container span {
	width: 70%;
	margin-top: 20px;
	text-align: center;
	font-size: 30px;
	color: #c6c6c6;
}

.login-box,
.register-box {
	width: 100%;
	margin: 0px !important;
}

#btn-ver-pass svg:first-child {
	display: none;
}

#btn-ver-pass svg:last-child {
	display: block;
}

#btn-ver-pass.showing svg:first-child {
	display: block;
}

#btn-ver-pass.showing svg:last-child {
	display: none;
}
#btn-ver-nueva-c svg:first-child {
	display: none;
}

#btn-ver-nueva-c svg:last-child {
	display: block;
}

#btn-ver-nueva-c.showing svg:first-child {
	display: block;
}

#btn-ver-nueva-c.showing svg:last-child {
	display: none;
}

/*Preload inicio*/
.preloaderComplete {
	background: #0c6e31;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 102;
}

.loaderComplete {
	display: block;
	position: fixed;
	left: 50%;
	top: 50%;
	width: 150px;
	height: 150px;
	margin: -75px 0 0 -75px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #ffffff;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}

.loaderComplete:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #ffffff;
	-webkit-animation: spin 3s linear infinite;
	animation: spin 3s linear infinite;
}

.loaderComplete:after {
	content: "";
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #ffffff;
	-webkit-animation: spin 1.5s linear infinite;
	animation: spin 1.5s linear infinite;
}

.lgn-submit-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.lgn-submit-container a {
	width: 100%;
}

.s-conteo {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
}
.s-conteo h3 {
	color: #0c6e31;
	font-family: "ubuntu-bold";
	font-size: 30px;
	margin-bottom: 15px;
}

.content-conteo {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.content-conteo div {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	border-radius: 20px;
	background-color: #fff;
	padding-top: 10px;
	overflow: hidden;
}

.content-conteo div h2 {
	font-size: 30px;
	color: #0c6e31;
	font-family: "ubuntu-bold";
}

.content-conteo div span {
	width: 100%;
	text-align: center;
	font-size: 20px;
	padding: 5px 0px;
	background-color: #0c6e31;
	color: #fff;
	font-family: "ubuntu-bold";
}

@media screen and (min-width: 992px) {
	#content-container {
		width: 500px;
		height: 95vh;
		border-radius: 20px;
	}

	#principal-content-data {
		height: calc(95vh - 180px);
	}
}
