@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;800&family=Luckiest+Guy&family=Roboto+Condensed:wght@300;400;700&display=swap');

html{
	scroll-behavior: smooth;
}

body{
	margin: 0;
	padding: 0;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 16px;
	color: rgba(0, 0, 0, 0.60);
	background: #00A2C4;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #00A2C4, #C779D0, #FEAC5E);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #00A2C4,50%, #C779D0, #FEAC5E); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

a{
	text-decoration: none;
	color: white;
	cursor: pointer;
}

.flex{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

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

.flex-row{
	display: flex;	
	justify-content: space-around;
	align-items: flex-end;
	flex-wrap: nowrap;
}

.display {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	font-size: 36px;
	color: white;
}

h1{
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 24px;
	font-weight: 400;
}

h2{
	font-family: 'Inter', sans-serif;
	font-size: 1em;
	font-weight: 700;
}

p {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 14px;
}

li{
	list-style: none;
}

header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem;

}

.logo {
	display: flex;
	gap: 15px;
	align-items: center;
}

[data-tab-content]{
	display: none;
}
.active[data-tab-content]{
	display: block;
}

.tabs{
	display: flex;
	justify-content: center;
	list-style-type: none;
	margin: 0;
	padding: 0;
	border-bottom: solid 1px rgba(255, 255, 255, 0.424);
}
.tab{
	width: 90px;
	height: 30px;
	border: 1px solid rgba(255, 255, 255, 0.424);
	background-color: rgba(240, 248, 255, 0.205);
	border-radius: 12px 12px 0 0;
	text-align: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 2rem;
	color: rgb(255, 255, 255);
	transition: all .8s ease-in-out;
}
.tab.active, .tab:hover{
	background-color: #00A2C4;
}

.tab-content{
	margin: 1rem;
	padding: 1rem;
	max-width: 90vw;
	height: auto;
	background-color: rgba(211, 211, 211, 0.603);
	border-radius: 12px;
	transition: all 1s ease-in-out;
}

.mapa{
	height: 70vh;
	background-color: transparent;
	background-image: url(img/MapaDashboard.png);
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 12px;
	padding: 1rem;
}

.mapa p{
	background-color: #C779D0;
	color: #fff;
}

.action{
	width: 6rem;
}

.btn{
	width: 6rem;
	height: 2rem;
	font-weight: 700;
	background-color: #00A2C4;
	border-radius: 12px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	margin-bottom: 1rem;
}

.btn:hover{
	background-color: #FEAC5E;
}

.btnw{
	width: 6rem;
	height: 2rem;
	font-weight: 700;
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	margin-bottom: 1rem;
}

.btnw:hover{
	background-color: #FEAC5E;
}

.ciudad{
	width: 6rem;
	height: 8rem;
	list-style: none;
}

.ciudad a{
	color: #00A2C4;
}

.items{
	width: 100%;
	height: 2rem;
	padding: .3rem;
}



.cajas{
	display: flex;
    justify-content: space-evenly;
	align-items: center;	
    flex-wrap: wrap;
    gap: 1rem;
}

.caja{
	max-width: 300px;
	height: auto;
	border-radius: 12px;
	background-color: white;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	
}

.caja-hd{
	width: 100%;
	border-bottom: 1px solid lightgray;
	padding-bottom: .5rem;
	margin: .5rem 0rem;
	gap:.5rem;
}

.caja-content{
	width: 90%;
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-direction: row;
	gap: 1rem;
}

.caja-content p{
	text-align: center;
}

.cajita{
	max-width: 150px;
	height: 120px;
	border-radius: 12px;
	background-color: rgb(236, 236, 236);
	padding: .3rem;
	gap: 1rem;
}

.formula{
	width: 150px;
	border-bottom: 1px solid lightgray;
	padding-bottom: .5rem;
	color: #00A2C4;
    font-size: .8rem;
    font-family: 'Inter', sans-serif;
	font-weight: 700;
}

.inputfield{
	
	margin: 15px 0 15px;
}

.inputfield input{
	width: 100px;
	height: 30px;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: .9rem;
	text-align: center;
	color: #00A2C4;
	border: none;
	background-color: rgb(236, 236, 236);
	border-radius: 8px;
	outline: none;
}
.inputfield label{
	font-family: 'Roboto Condensed', sans-serif;
	font-size: .7rem;
	color: #00A2C4;
	pointer-events: none;
}

.btnbig{
	width: 12rem;
	height: 2rem;
	font-weight: 700;
	background-color: #00A2C4;
	color: #fff;
	border-radius: 12px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	margin-bottom: 1rem;
	transition: all ease-in-out .3s;
}

.btnbig:hover{
	background-color: #FEAC5E;
}

