@import 'normalize.css';
@import 'fonts.css';

@media only screen and (max-width: 768px){
	.show-for-large{
		display: none;
	}
	.hide-for-large{
		display: block;
	}
}
@media only screen and (min-width: 769px){
	.show-for-large{
		display: block;
	}
	.hide-for-large{
		display: none;
	}
}

body{
	background-color: white;
  font: 14px 'Roboto';
	margin: 0 auto;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

input{
	box-sizing: border-box;
}
input:focus-visible{
	outline: none;
}

#loading{
	background-color: rgba(0,0,0,0.4);
	display: none;
	height: 100%;
	overflow: auto;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9;
}
#loading .loading-container{
	left: 0;
	position: fixed;
	right: 0;
	text-align: center;
	top: 50%;
}
#loading i{
	color: white;
	font-size: 3rem;
}

a{
	color: #62c4ea;
	cursor: pointer;
}

.btn{
	color:white;
	cursor: pointer;
	font-weight: bold;
	max-width: max-content;
	padding: 10px 20px;
	text-align: center;
	text-transform: uppercase;
}
.btn:hover{
	opacity: .8;
}

.btn-blue{
	background-color: #00bcd4;
	border-radius: 50px;
}

.btn-excel{
	background-color: #009688;
}

/* Módulo de cookies - Popups */
.py-popup-wrapper{
	height: 80%!important;
}
.py-popup-wrapper .py-popup-body-wrapper{
	height: 75%!important;
}

/* Módulo de cookies - Footer */
.py-footer-wrapper{
	background: #062459!important;
	bottom: 0;
	top: auto!important;
}
.py-footer-wrapper .py-footer-msg{
	color: white;
	text-align: left;
}
.py-footer-wrapper .py-footer-msg a,
a.py-link, a.py-link:visited, a.py-link:link, a.py-link:hover{
	color: #6fa3ff!important;
}
.py-footer-wrapper .py-footer-btn,
.py-footer-wrapper .py-footer-btn:hover{
	background: #ff7200;
	border-radius: 20px;
	color: white;
	font-weight: bold;
	padding: 5px 30px;
}

@media (max-width: 768px){
	.py-footer-wrapper .py-footer-msg{
		width: auto;
    padding-right: 7%;
	}
	.py-footer-wrapper .py-footer-btn,
	.py-footer-wrapper .py-footer-btn:hover{
		border-radius: 0;
		border: none;
		display: block;
		padding: 0;
		position: relative;
		right: 0;
		width: 100%;
	}
}
