* {
    /*list-style: none;*/
    text-decoration: none !important;
    box-sizing: border-box;
}
html {
    font-size: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #141414;
}

a {
    color: #137f5e;
    font-weight: 500;
}
a:hover {
    color: #179f75;
}

.paginador {
    margin: 20px 0;
}
.paginador a {
    display: none;
}
.paginador a:nth-last-child(-n + 20) {
    text-align: center;
    width: 30px;
    display: inline-block;
}

.btn-paginador{
    background-color: #9b3d46  !important;
    border-color: #9b3d46;
    color: whitesmoke;
}

.btn-paginador:hover{
    opacity: 0.9;
    color: whitesmoke;
    border-color: #9b3d46;
}

.volver-leyes{
    width: 100%;
    position: relative;
    margin:3px;
}

.btn-seleccionado{
    background-color: #9b3d46   !important;
    border-radius: 30px;
    color: whitesmoke;
}

.btn-seleccionado:hover{
    opacity: 0.9;
    color: whitesmoke;
}

.buscador:focus{
    color: #212529;
    background-color: #fff;
    /* border-color: #778a84; */
    border-color: #9b3d46;
    outline: 0;
    box-shadow: 0 0 0 0.0rem #9b3d46 !important;
}

.tooltip-busqueda{
    color: rgb(122, 120, 120);
    width: 10%;
    position: absolute;
    right: 85px;
    top: 10px;
}

/* warning - INICIO */

.alert-warning{
    background-color: #e9e9e9;
    border-radius: 10px;
    width: 28%;
    margin-left: 36%;
    border: solid #797979e7 2px;
    margin-bottom: 20px;
}

.media{
    display: flex;
}

.icon-warning{
    margin: 10px;
    align-self: center;
    font-size: 20px;
    color: #797979e7;
}

.content-warning{
    padding-top: 10px;
    text-align: left;
    margin: 0;
    font-size: 15px;
    color: #000000e7;
}

/* warning - FINAL */

.buscador-leyes{
    width: 100%;
    position: relative;
    margin-bottom: 0;
}



/* TOOLTIP - INICIO */

#icono{
    padding-top: 18px;
    padding-right: 5px;
}

.tooltip {
	display: flex;
	position: absolute;
    right: unset !important;
    left: 0;
    top: 0;
	background: #fff;
	border-radius: 10px !important; 
	box-shadow: 5px 5px 50px rgba(0,0,0,.20);
	width: 382px;
	z-index: -5;
	opacity: 0;
	transition: .3s ease all;
	transform: translateY(10px);
}

.tooltip::after {
    content: "";
    display: inline-block;
    border-left: 4px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #ffffff;
    position: absolute;
    bottom: 202px;
    left: 10px;
}


.tooltip.activo {
	opacity: 1;
	transform: translateY(0px);
    z-index: 1000;
}

.tooltip .thumb {
	width: 40%;
}

.tooltip .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px 0 0 10px;
	vertical-align: top;
}

.tooltip .info {
	width: 100%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.titulo {
	color: #585858;
    font-size: 20px;
	margin-bottom: 10px;
}

.tooltip .info .direccion {
	color: #707070;
	font-size: 12px;
	margin-bottom: 20px;
}

.tooltip .info .resumen {
	margin-bottom: 20px;
}

.buscador-vacio {
    position: absolute;
    right: 10px;
    top: 30px;
    font-size: 13px;
    font-weight: bold;
    color: #9b3d46;    
}

/* TOOLTIP - FINAL */

@media screen and (min-width: 400px){

    .volver-leyes{
        position: absolute;
        right: 10px;
        top: 120px;
        width: 120px;
    }

}

@media screen and (min-width: 900px){
    .buscador-leyes{
        width: 240px;
        position: absolute;
        right: 10px;
        top:0;
        margin-bottom: 20px;
    }

    .tooltip{
        right: 34px !important;
        
        left: unset !important;
    }

    .tooltip::after{
        border-left: 15px solid transparent !important;
        bottom: 202px !important;
        left: 172px !important;
    }

    .volver-leyes{
        position: absolute;
        right: 10px;
        top: 80px;;
        width: 15%;
    }

}
.paginadorChico{
    display: block;
}
.paginadorGrande{
    display: none;
}
@media screen and (min-width: 700px){
    .paginadorChico{
        display: none;
    }
    .paginadorGrande{
        display: block;
    }
}