/* Signs Tooltip */
@media only screen and (min-width: 992px) {
    [class*='signs-'] {
        position: relative;
    }

	/* To top */
    [class*='govco-gif-up-'] {
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        top: -95px;
        left: -30px;
        right: -30px;
        margin: 0 auto;
        z-index: 10000;
        width: 130px;
        height: 73px;
		box-shadow: 0 0 2px 0 #004884;
    }

    [class*='govco-gif-up-']::after {
        content: "";
        display: block;
        position: absolute;
        width: 0;
        height: 0;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-top: 8px solid #434343;
        bottom: -10px;
        left: 0;
        right: 0;
        margin: auto;
    }
	
	/* To Down */
	[class*='govco-gif-down-'] {
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        top: 30px;
        left: -30px;
        right: -30px;
        margin: 0 auto;
        z-index: 10000;
        width: 130px;
        height: 73px;
		box-shadow: 0 0 2px 0 #004884;
    }

    [class*='govco-gif-down-']::before {
        content: "";
        display: block;
        position: absolute;
        width: 0;
        height: 0;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-top: 8px solid #434343;
        left: 0;
        right: 0;
        margin: auto;
    }
}

/* Text Inputs */

.wpcf7-text, .wp-govco-searchbar, input[data-filtertype="textsearch"] {
	border-radius: 5px !important;
	height: 40px;
	padding: 5px 5px 5px 20px;
	background-color: #FFF !important;
	border: 1px solid #bababa !important;
}

.wpcf7-text:focus, .wp-govco-searchbar:focus, input[data-filtertype="textsearch"]:focus {
	border: 1px solid #004884 !important;
	box-shadow: 0 4px 0 #3366cc24 !important;
}

.wp-govco-select, select[data-filtertype="acfselect"] {
	background-color: #FFF;
	border-radius: 5px !important;
	height: 40px;
	padding: 5px 5px 5px 20px;
	border: 1px solid #bababa !important;
}

.wp-govco-select::after, select[data-filtertype="acfselect"]::after {
	border-top-color: #3366CC;
}

.wp-govco-select:hover, select[data-filtertype="acfselect"]:hover {
	border: 1px solid #004884 !important;
	box-shadow: 0 0 3px #004884 !important;
}

/* Paginacion */

.page-numbers li {
	border: none !important;
	margin: 0;
}

.page-numbers li > a {
	border-radius: 0.3rem;
	padding: .66rem .933rem !important;
}

.page-numbers li > a:hover {
	background-color: #e6effd;
}

.page-numbers li .current {
	background-color: #36c !important;
	color: #FFF !important;
	border-radius: 0.3rem;
	padding: .66rem .933rem !important;
}

/* Barra accesibilidad */

#barra-accesibilidad {
	display: flex;
	flex-direction: column;
	width: 2.2rem !important;
}

#barra-accesibilidad .a11y-item {
	cursor: pointer;
	display: flex;
	flex-wrap: nowrap;
	border-radius: 10px;
	min-height: 2.5rem;
	transition: all .5s ease-in-out;
}

#barra-accesibilidad .a11y-item:hover {
	background-color: #3772ff;
	transform: translateX(-8rem);
	width: 11rem !important;
}

#barra-accesibilidad .a11y-item .et-last-child {
	display: none;
}

#barra-accesibilidad .a11y-item .et-last-child h6 {
	font-size: 14px !important;
}

#barra-accesibilidad .a11y-item:hover .et-last-child {
	display: block;
}

/* Utils */

.mi-button {
    border-radius: 30px!important;
	cursor: pointer;
    margin: 0!important;
	background-color: #36c!important;
    color: #fff;
	min-width: 162px;
    padding: .535em 1rem;
    white-space: pre-line;
    border: 1.5px solid #36c;
    text-transform: uppercase;
    font-size: .9375rem;
    font-weight: 500;
    line-height: 1.5!important;
}

.active-contrast {
	-webkit-filter: invert(1);
    filter: invert(1);
	transition: all .5s ease-in-out;
}

/* lang-select */

.trp-ls-shortcode-current-language,
.trp-ls-shortcode-language {
	background-color: #004884!important;
}