/* RESET */

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,

big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* === FUENTES === */

@font-face {
    font-family: 'Mundo ExtraBold';
    /* font-style: normal;
    font-weight: 900; */
    src: url("https://e00.uecdn.es/fonts/Mundo/Mundo-ExtraBold.woff2") format("woff2"), url("https://e00.uecdn.es/fonts/Mundo/Mundo-ExtraBold.woff") format("woff");
  }

@font-face {
    font-family: 'Mundo Bold';
    font-style: normal;
    font-weight: 700;
    src: url("https://e00.uecdn.es/fonts/Mundo/Mundo-Bold.woff2") format("woff2"), url("https://e00.uecdn.es/fonts/Mundo/Mundo-Bold.woff") format("woff");
  }

@font-face {
    font-family: 'Mundo Bolditalic';
    font-style: normal;
    font-weight: 700;
    src: url("https://e00.uecdn.es/fonts/Mundo/Mundo-BoldItalic.woff2") format("woff2"), url("https://e00.uecdn.es/fonts/Mundo/Mundo-BoldItalic.woff") format("woff");
  }

@font-face {
    font-family: 'Mundo Medium';
    font-style: normal;
    font-weight: 400;
    src: url("https://e00.uecdn.es/fonts/Mundo/Mundo-Medium.woff2") format("woff2"), url("https://e00.uecdn.es/fonts/Mundo/Mundo-Medium.woff") format("woff");
  }

@font-face {
    font-family: 'Mundo Light';
    font-style: normal;
    font-weight: 100;
    src: url("https://e00.uecdn.es/fonts/Mundo/Mundo-Light.woff2") format("woff2"), url("https://e00.uecdn.es/fonts/Mundo/Mundo-Light.woff") format("woff");
  }

@font-face {
	font-family: 'Mundo LightItalic';
	font-style: normal;
	font-weight: 100;
	src: url("https://e00.uecdn.es/fonts/Mundo/Mundo-LightItalic.woff2") format("woff2"), url("https://e00.uecdn.es/fonts/Mundo/Mundo-LightItalic.woff") format("woff");
}


/* === GENERAL === */

section {
  display: block;
}

h2 {
  font-family: 'Mundo Bold';
  font-size: 18px;
  text-align: center;
  line-height: 17px;
}

h3 {
  font-family: 'Mundo Bold';
  font-size: 16px;
  text-align: center;
  line-height: 15px;
}

.cabecera, .cabecerapq {
  position:relative;
  text-align: center;
}

.entradilla2 {
  font-family: 'Mundo Medium';
  font-size: 14px;
  text-align: center;
  line-height: 16px;
}

.entradillapq {
  font-family: 'Mundo Light';
  font-size: 14px;
  text-align: center;
  line-height: 16px;
}

.fuente {
    font-family: 'Mundo LightItalic';
    font-size: 16px;
    text-align: center;
    line-height: 20px;
}

.destpq {
  font-family: 'Mundo Bold';
  font-size: 14px;
}

.nota {
	font-family: 'Mundo LightItalic';
  font-size: 14px;
	padding-top: 2px;
  color:rgb(130, 130, 130);
}

.circulo {
	border-radius: 50%;
	width: 30px;
	height: 30px;
	padding: 5px;
  background: black;
	/*background: #FEEB17;*/
	color: white;
	text-align: center;
	font-family: 'Mundo Bold';
	font-size: 20px;
	position: relative;
	left: 150px;
}

/* == SELECT MENU == */

.autocomplete-wrapper {
  position:relative;
  width:100%;
  max-width: 336px;
}

.select-style-input {
  width: 100%;
  margin-bottom: 1.3em;
  padding: .2em;
  border: 0;
  border-bottom: 2px solid #31ABFF;
  font-family: "Mundo Light", "Arial", sans-serif;
  font-size: 14px;
  text-align: center;
  border-radius: 0;
  background: transparent;
  box-sizing: border-box;
}

.select-style-input:focus {
  outline: 0;
  border-bottom-color: #31ABFF;
}

/*lista desplegable*/
.options-list {
  position:absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: -1.3em;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 100;
  display: none; /* se muestra con js*/
  /* Limitar altura */
  max-height: 160px;
  overflow-y: auto;
}

.option {
  padding: 7px;
  cursor: pointer;
  font-family: "Mundo Light", sans-serif;
  font-size: 14px;
  border-bottom: 1px solid #f9f8ff;
}

.option:hover{
  background-color: #f0f8ff;
  color: #31ABFF;
}


/* === BOTONERA === */

.botonera {
	width:336px;
	height:auto;
  padding:20px;
	background-color: #E5E5E5;
	font-family: 'Mundo Light';
  font-size: 13px;
  /* text-align: center; */
  line-height: 14px;
}

hr {
 border: 1px dashed black;
}


/**INPUT TEXT**/

.input-txt {
    display: inline-block; /* Asegura que fluya con el texto */
    width: 30px;
    border: none;
    border-bottom: 2px solid #31ABFF;
    font-family: 'Mundo Medium', sans-serif;
    font-size:14px;
    text-align: center;
    outline: none; /* Quita el borde azul al hacer clic */
    background: transparent;
    font-size: inherit; /* Mantiene el tamaño de la letra de la frase */
    position: relative;
    top: 0px;
  }

*, *:before, *:after {
  box-sizing: border-box;
}

/* === BOTÓN === */

.boton {        
    border: none;
    color: white;
    padding: 10px 32px;
    margin: auto;
    width: 330px;
    font-family: "Mundo Bold";
	  font-size: 15px;
    line-height:18px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
}
.boton {
    background-color: #26326c;
}
.boton:hover {
    /*background-color: rgb(130,198,245);*/
    opacity: 60%;
    color: white;
    cursor: pointer;
}


#am {
  width: 100%;
	height: 20px;
  background-color: #e0e0e0;
	position: relative;
}

#am00 {
  width: 100%;
	height: 20px;
  background-color: #e0e0e0;
	position: absolute;
}

#ami {
  width: 0%;
  height: 20px;
	background-color: #89b0dc;
	position: absolute;
}

#amv {
  width: 0%;
  height: 20px;
  background-color: #efbc38;
	position: absolute;
}


#at {
  width: 100%;
	height: 20px;
  background-color: #e0e0e0;
	position: relative;
}

#at00 {
  width: 100%;
	height: 20px;
  background-color: #e0e0e0;
	position: absolute;
}

#atv {
  width: 0%;
  height: 20px;
	background-color: #efbc38;
	position: absolute;
}

#ati {
  width: 0%;
  height: 20px;
  background-color: #89b0dc;
	position: absolute;
}

/*.subv {
  font-family: 'Mundo Light';
  background-color: rgba(239,188,55,0.7);
}*/

.subv {
  background-image: linear-gradient(120deg, #efbc38 0%, #efbc38 50%);
  background-repeat: no-repeat;
  background-size: 100% 10%; /* Controla la altura del resaltado */
  background-position: 0 90%; /* Controla qué tan arriba o abajo queda */
}

/*.subi {
  font-family: 'Mundo Light';
  background-color: rgba(229,117,60,0.7);
}*/

.subi {
  background-image: linear-gradient(120deg, #89b0dc 0%, #89b0dc 50%);
  background-repeat: no-repeat;
  background-size: 100% 10%; /* Controla la altura del resaltado */
  background-position: 0 90%; /* Controla qué tan arriba o abajo queda */
}


/* === RESPONSIVE === */
@media screen and (min-width:360px){

  h1 {
    font-family: 'Mundo ExtraBold';
    font-size: 26px;
    text-align: center;
    line-height: 28px;
  }

  .entradilla {
    font-family: 'Mundo Light';
    font-size: 19px;
    text-align: center;
    line-height: 22px;
  }

  .cabecera {
    width:335px;
    left:15px;
  }

  .cabecerapq {
    width:336px;
    left:13px;
  }

}


@media screen and (min-width:600px){

  h1 {
    font-family: 'Mundo ExtraBold';
    font-size: 29px;
    text-align: center;
    line-height: 30px;
  }

  .entradilla {
    font-family: 'Mundo Light';
    font-size: 21px;
    text-align: center;
    line-height: 26px;
  }

  .cabecera {
    width: 470px;
    left: 88px;
  }

  .cabecerapq {
    width: 336px;
    left: 155px;
  }

}
