:root {	
	--white: #ffffff;
	--blue: #6ec1e4;
	--black: #333333;
}
html, body{
	height: 100%;
}
body {
	background: #fff;
	font-family: 'Karla', sans-serif;
	font-size: 15px;
	color: var(--black);
	font-weight: normal;
}
.container, .container-fluid {
	width: 1200px;
	max-width: 100%;
	margin: 0 auto;
}
.clear, .clearfix {
	display: block;
	clear: both;
}
.height10 {
	height: 10px;
}
.height20 {
	height: 20px;
}
.height30 {
	height: 30px;
}
.height50 {
	height: 50px;
}
img {
	max-width: 100%;
	height: auto;
}
.black {
	color: var(--black);
}
.white {
	color: var(--white);
}
.blue {
	color: var(--blue);
}
.bg-black {
	background: var(--black);
}
.bg-white {
	background: var(--white);
}
.bg-blue {
	background: var(--blue);
}
a, button {
	transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}
a, a:hover, a:focus, a:active {
	text-decoration: none;
	color: var(--blue);
}
.readmore, .boton {
	text-transform: uppercase;
	display: inline-block;
	color: var(--white);
	background: var(--blue);
	border: 1px solid var(--blue);
	padding: 11px 40px;
	font-weight: normal;
	font-family: 'Karla', sans-serif;
}
.boton:hover, .boton:focus {
	color: var(--white);
	background: #58abce;
}
header {
	padding: 15px;
	background: var(--blue);
}
header .logo img {
	width: 300px;
	max-width: 100%;
}
.botontipos {
	-webkit-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	outline: none;
	width: 200px;
	text-align: center;
	font-weight: 600;
	text-transform: uppercase;
	color: #888;
}
.botontipos div {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 6px solid #e9e9e9;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	filter: grayscale(1);
	opacity: 0.9;
	transition: all .2s;
}
.botontipos.active {
	color: var(--black);
}
.botontipos.active div, .botontipos:hover div {
	filter: grayscale(0);
	opacity: 1;
	border: 6px solid #92d5f1;
}
h4 {
	font-size: 16px;
	font-weight: 900;
}
.botonmarca {
	-webkit-appearance: none;
	appearance: none;
	background: transparent;
	outline: none;
	width: 100%;
	font-weight: normal;
	text-transform: none;
	text-align: left;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 1px solid #e0e0e0;
	padding: 10px;
	transition: none;
}
.botonmarca.active {
	font-weight: 600;
	color: var(--blue);
}
.listamarcas {
    height: 300px;
    overflow-y: scroll;   /* forzar scroll vertical */
    overflow-x: hidden;
    padding-right: 20px;

    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #6ec1e4 #f2f2f2;

    /* Forzar espacio para el scrollbar en todos los navegadores */
    scrollbar-gutter: stable;
    -webkit-overflow-scrolling: auto; /* evita el scroll “oculto” */
}

/* Scrollbar para Chrome, Edge, Safari (WebKit) */
.listamarcas::-webkit-scrollbar {
    width: 14px;   /* anchura total del scrollbar */
}

.listamarcas::-webkit-scrollbar-track {
    background: #f2f2f2;
    border-radius: 14px;  /* track redondeado */
}

.listamarcas::-webkit-scrollbar-thumb {
    background-color: #6ec1e4;
    border-radius: 14px;  /* thumb redondeado */
    border: 3px solid #f2f2f2; 
    /* este borde evita que el thumb parezca cuadrado y mantiene 14px visibles */
}

/* Hover opcional (lo puedes quitar si no lo quieres) */
.listamarcas::-webkit-scrollbar-thumb:hover {
    background-color: #5ab3d3;
}
.verpdf {
	-webkit-appearance: none;
	appearance: none;
	background: transparent;
	outline: none;
	border:none;
	background: #fff;
	width: 38px;
	height: 38px;
	border-radius: 50%;
}
.verpdf:hover {
	background: #f0f0f0;
}
td.padding {
	padding-top: 18px !important;
	padding-bottom: 18px !important;
}
.pdf {
	width: 100%;
	height: 600px;
	position: absolute;
	top: 0;
	left: 0;
}
.pdf iframe {
	width: 100%;
	height: 100%;
}
.cerrar {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 32px;
  font-weight: 300;
  background: var(--blue);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
  color: #fff !important;
  line-height: 30px;
  z-index: 999;
  border: 2px solid #fff;
}
.formulario {
	width: 450px;
	max-width: 100%;
	position: relative;
}
.formulario input {
	width: 100%;
	height: 46px;
	padding: 11px;
	margin-bottom: 20px;
	border: 1px solid #ccc;
	background: #f5f5f5;
}
.formulario button {
	position: absolute;
	right: 1px;
	top: 1px;
	height: 44px;
	background: var(--blue);
	color: #fff;
	border: none;
	outline: none;
	width: 46px;
}

@media(max-width:767px) {
	.botontipos {
  		width: 140px;
  		margin-bottom: 20px;
  	}
  	.botontipos div {
  		width: 112px;
  		height: 112px;
  	}
}