/* Typography */

/*
@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto/Roboto-Regular.eot');
	src: url('../fonts/Roboto/Roboto-Regular.eot?#iefix')
		format('embedded-opentype'),
		url('../fonts/Roboto/Roboto-Regular.woff') format('woff'),
		url('../fonts/Roboto/Roboto-Regular.ttf') format('truetype'),
		url('../fonts/Roboto/Roboto-Regular.svg#RobotoRegular') format('svg');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Roboto Bold';
	src: url('../fonts/Roboto/Roboto-Bold.eot');
	src: url('../fonts/Roboto/Roboto-Bold.eot?#iefix')
		format('embedded-opentype'), url('../fonts/Roboto/Roboto-Bold.woff')
		format('woff'), url('../fonts/Roboto/Roboto-Bold.ttf')
		format('truetype'), url('../fonts/Roboto/Roboto-Bold.svg#RobotoBold')
		format('svg');
	font-weight: 700;
	font-style: normal;
}
*/


@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/*
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.noto-sans-<uniquifier> {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/

html{
	scroll-behavior: smooth;
}

/********************** Variables **********************/
/*
:root {
	--fontFamily1: "Noto Sans", sans-serif;
	--fontFamily2: "Montserrat", sans-serif;
	--textColor: #333;
	--mainColor: #306898;
	--mainColorDark: #1b4c77;
	--mainColorLight: #a9c9e6;
	--colorLines: #D8D8D8;
	--colorBg: #F5F5F5;



	--mainColor: COLOR PRINCIPAL;
	--mainColorDark: COLOR SELECCIÓN;
	--mainColorLight: COLOR ENLACES;
	--colorArea: COLOR AREAS
}
  */
/********************** Encabezados **********************/

h1{
	font-family: var(--fontFamily2);
	font-weight: 500; /* bold -> medium */
	font-size: 28px;
	margin-bottom: 3rem;
}

h2{
	font-family: var(--fontFamily1);
	font-weight: 700; /* bold */
	font-size: 22px;
	border-bottom: 1px solid var(--colorLines);
}

.index-page h2{
	font-family: var(--fontFamily2);
	font-weight: 500; /* bold -> medium */
	font-size: 28px;
	border-bottom: none;
}

h3{
	font-family: var(--fontFamily1);
	font-weight: 700; /* bold */
	font-size: 20px;
}

h4{
	font-family: var(--fontFamily1);
	font-weight: 500; /* medium */
	font-size: 18px;
}

h5{
	font-family: var(--fontFamily1);
	font-weight: 500; /* medium */
	font-size: 16px;
}

body, p, li{
	font-family: var(--fontFamily1);
	font-weight: 400; /* regular */
	font-size: 14px;
	color: var(--fontFamily2);
}

/********************** Componentes **********************/

/* Enlaces */

a:link, a:active, a:visited {
	color: var(--mainColorLight);
	text-decoration: none;
}

a:hover {
	color: var(--mainColorDark);
	text-decoration: underline;
}

/* Listas */


/********************** Container Oficina **********************/
/*
body>div.container-fluid {
	flex: 1;
	width: 90%;
}
*/

.firstbar .container-fluid, .navbar .container-fluid, body>div.container-fluid {
	width: 100%;
	padding-right: 30px;
	padding-left: 30px;
}
@media (max-width: 767px) { body .container-fluid{ width: 100% !important; } }


/********************** Cabecera y menu **********************/

/* FIRSTBAR */
.firstbar{
	background: var(--textColor);
	color: white;
}
.firstbar.rep{
	background: #5b5b5b;
}
.firstbar a:link, .firstbar a:visited, .firstbar button{
	color: white;
	padding: 5px 20px;
}
.firstbar a:hover, .firstbar button:hover{
	background-color: #525252;
	color: white !important;
	text-decoration: none !important;
}
.firstbar .container, .firstbar .container-fluid{
	display: flex;
	align-items: center;
}
.firstbar.rep .container, .firstbar.rep .container-fluid{
	justify-content: flex-end;
}
.firstbar .margin{
	flex-grow: 1;
}
.firstbar .accesibility{
	flex-grow: 1;
}
@media (max-width: 767px) { .firstbar .accesibility{ display: none; } .firstbar .margin{ display: none; } }
/*
@media (max-width: 767px) { .firstbar .lang{ display: none; } }
*/
.firstbar button{
	background: transparent;
	border: none;
}
.firstbar .hour{
	padding: 5px 20px;
	background: var(--mainColor);
}
@media (max-width: 767px) { .firstbar .hour{ margin-left: -15px; } }

.firstbar .hour span{
	font-weight: bold;
	margin-right: 8px;
}

.firstbar .user-logout {
	margin-bottom: 0;
	font-weight: bold;
	display: flex;
}

.firstbar .user-logout span{
	padding: 5px 20px;
}

.firstbar .dropdown-menu a, .firstbar .dropdown-menu a:hover{
	color: black  !important;
}

#clock_id{
	display: none !important;
}

.firstbar .user{ 
    display: flex;
	justify-content: flex-end;
}

@media (max-width: 767px) { .firstbar .user{ flex-grow: 1;  text-align: right;  margin-right: -15px; } }

/* NAVBAR */

.navbar {
	background: white;
	margin-bottom: 0;
}

@media (max-width: 991px) { .navbar > .container { width: auto; } }

.navbar-header{
	align-items: center;
}
@media (min-width: 768px) { .navbar-header { display: flex; height: 108px; } }

.navbar-brand {
	height: auto;
	padding: 10px 10px;
	display: flex;
}
.navbar-brand img {
	max-height: 89px;
	max-width: 200px;
	height: 48px;
}
@media (min-width: 768px) { .navbar-brand img { max-width: 250px; height: 58px; } }
@media (min-width: 992px) { .navbar-brand img { max-width: 300px; height: 75px; } }
@media (min-width: 1200px) { .navbar-brand img { max-width: 345px; } }

.navbar-toggle {
    margin-top: 12px;
    border: none;
    transition: all 0.2s;
    color: var(--mainColor);
    font-size: 3rem;
}

.navbar-nav{ }

.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
	border-color: var(--mainColor);
}

@media (min-width: 768px) { .navbar-nav { height: 108px; } }

.navbar-item{
	position: initial !important;
}

.navbar-item > a{
	box-sizing: border-box;    
    display: flex;
	transition: all 0.2s;
}
@media (min-width: 768px) { .navbar-item > a{ height: 108px; } }

.navbar-item.open > a {
		background: white !important;
		box-shadow: none !important;

}
@media (min-width: 768px) { 
	.navbar-item.open > a {
		border-bottom: 5px solid var(--mainColorDark);
	}
}

@media (min-width: 768px) { 
	.navbar-top{
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		height: 100%;
	}
}

.navbar-top i{
	font-size: 2.2rem;
	margin-bottom: 6px;
	color: var(--mainColor);
}
@media (max-width: 767px) { .navbar-top i{ margin: 0 5px 0 8px; } }

.navbar-item a:hover .navbar-top i {
	color: var(--mainColorDark);
}

.navbar-top span{
	font-weight: 700;
	color: var(--textColor);
}

.navbar-item a:hover .navbar-top span {
	color: var(--textColor);
	text-decoration: underline;
}

@media (min-width: 768px) {
	.main-menu .dropdown-menu{
		padding-bottom: 2rem;
		border: none;
		border-top: 1px solid var(--colorLines);
		border-bottom: 5px solid var(--mainColor); 
		border-radius: 0;
		columns: 3;

		margin-top: 0;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		padding-top: 62px;
	}
}

@media (min-width: 768px) { .main-menu .dropdown-menu { width: 100%; padding-left: calc((100% - 750px)/2);	padding-right: calc((100% - 750px)/2); } }
@media (min-width: 992px) { .main-menu .dropdown-menu { width: 100%; padding-left: calc((100% - 970px)/2);	padding-right: calc((100% - 970px)/2); columns: 4; } }
@media (min-width: 1200px) { .main-menu .dropdown-menu { width: 100%; padding-left: calc((100% - 1170px)/2);	padding-right: calc((100% - 1170px)/2); } }

.submenu-title{
	width: 100%;
	position: absolute;
	top: 14px;
	border-bottom: 1px solid var(--colorLines);
	padding-bottom: 13px;
	font-size: 1.8rem;
	color: var(--mainColor) !important;
	margin: 0 15px;
	font-weight: bold;
	display: none;
}

@media (min-width: 768px) { .submenu-title { width: 750px; display: block; } }
@media (min-width: 992px) { .submenu-title { width: 970px; } }
@media (min-width: 1200px) { .submenu-title { width: 1170px; } }

.submenu-element{
    overflow: hidden;
    text-overflow: ellipsis;
}


.main-menu .dropdown-menu a:hover{
	color: var(--textColor) !important;
	background-color: transparent;
	background-image: none;
	text-decoration: underline;
}

@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: var(--textColor);
    border-bottom: 1px solid var(--colorLines);
    padding: 10px 15px 10px 25px;
  }
}

/********************** Banner de búsqueda **********************/
	
.banner-bg{
	/*background-image: url(/opencms/opencms/system/modules/sede/resources/images/banner.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;*/
	height: 353px;
}

.banner-search-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

#custom-search-form{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 90%;
}

@media (max-width: 991px) {	#custom-search-form{ width: 100%;}}

.banner-bg > .container {
	height: inherit;
}

.banner-bg > .container, .banner-bg > .container > .row {
    height: inherit;
}
/*
.banner-search > .row{
    margin-top: auto;
	display: flex;
}
*/
.search-container{
	background: rgba(255,255,255,0.65);
	padding: 3rem 4rem;
	border-radius: 7px;
	width: 100%;
}

.search-container h2{
	font-size: 1.5rem;
  	font-weight: bold;
	margin-top: 0;
	border-bottom: none;
}

.search-input {
	width: 100%;
	border-radius: 7px;
	padding: 1.5rem 2rem !important;
	border: 0;
	border: 1px solid var(--mainColor);
}

.search-icon {
	background-color: var(--mainColor);
	font-size: 2rem;
	width: 75px;
	border: 0px;
	position: absolute;
	top: 0;
	right: 0;
	color: white;
	height: 100%;
	border-top-right-radius: 7px;
	border-bottom-right-radius: 7px;
}

@media (max-width: 991px) {	.search-icon { width: 55px;}}

.search-icon:hover {
	background-color: var(--mainColorDark);
}

.search-icon::before{
	color: white;
	font-family: "Font Awesome 6 Free";
	content: "\f002";
}

.search-all-link {
	display: flex;
	justify-content: flex-end;
	margin: 1rem 0 0 0;
}

#advanced-search{
	text-align: right;
	font-weight: bold;
	font-size: 1.5rem;
	color: var(--mainColorDark);
	margin-top: 5px;

	display: none;
}

#advanced-search a{
	color: var(--mainColorDark);
}

#advanced-search a:hover{
	text-decoration: underline;
}

.banner-links-bg h2 > span:first-child {
    font-size: 4rem;
    margin-right: 5px;
}

.banner-links-bg > h2 {
    color: white;
    padding-left: 1rem;
    font-weight: bold;
    font-style: italic;
    font-size: 1.8rem;
    display: flex;
    align-items: center;

}

.banner-links-bg > ul {
    width: 95%;
}

.banner-links-bg > ul > li > a {
    color: white;
}

.banner-links-bg > ul > li {
    margin: 2rem 0;
    font-style: italic;
	color: white !important;
}
.banner-links-bg ul > li > a:hover {
    text-decoration: underline;
}

/* Sugerencias */

#suggesstion-box .suggestions {
	float: left;
	padding: 20px 0 10px 0;
	width: 100%;
	position: absolute;
	z-index: 2;
	margin-top: 8px;
	border-radius: 7px;
	background: white;
	box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

#suggesstion-box .suggestions h3 {
	font-size: 1.5rem;
	font-weight: bold;
	margin-left: 3.5rem;
	color: var(--mainColor);
	margin-top: 1rem;
}

#suggesstion-box .suggestions > ul {
	list-style: none;
}

#suggesstion-box .suggestions > ul > li {
	padding: 10px 20px;
  	background: transparent;
	 display: flex;
}

#suggesstion-box .suggestions > ul > li:hover {
	cursor: pointer;
	cursor: pointer;
	color: white;
	font-weight: bold;
}

#suggesstion-box .suggestions > ul > li .icon {
	font-size: 1.5rem;
	color: var(--mainColor);
	margin-right: 10px;
	margin-top: 4px;
  	text-align: right;
}

#suggesstion-box .suggestions > ul > li a, #suggesstion-box .suggestions > ul > li .text {
  	color: var(--textColor) !important;
	font-weight: bold;
	font-size: 1.4rem;
	text-decoration: none;
}

#suggesstion-box .suggestions > ul > li a:hover .text, #suggesstion-box .suggestions > ul > li:hover .text{
	text-decoration: underline;
}

/********************** Calendario **********************/

.banner-calendar > div {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0,0,0,0.3);
	display: flex;
  	flex-direction: column;
}

.banner-calendar h2 {
	color: white;
	text-align: left;
	font-size: 2.6rem;
	text-transform: uppercase;
	font-weight: bold;
	border-bottom: none;
	width: 100%;
	padding: 0 2rem;
	font-family: var(--fontFamily2);
}

.zabuto_calendar > table {
	border-radius: 6px;
	border-collapse: unset;
	border: none !important;
	border-collapse: unset !important;
	width: 316px;
	border-radius: 6px;
  	background: white;
}

.zabuto_calendar > table th {
	border: none !important;
	/*! border-collapse: unset; */
}

.zabuto_calendar > table th > div, .zabuto_calendar > table th > span {
	display: flex;
	width: 100%;
	height: 24px;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.zabuto_calendar > table td {
	border: none !important;
	padding: 4px !important;
}

.zabuto_calendar > table td div {
	border-radius: 20px;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.zabuto_calendar > table td div {
	text-align: center;
}

.zabuto_calendar > table td:nth-child(6), .zabuto_calendar > table td:nth-child(7) {
	color: #5e5e5e;
	background: var(--colorBg);
	border-bottom-right-radius: 6px;
}

.zabuto_calendar .calendar-month-header{
	/*display: flex;
	width: 100%;*/
}

.zabuto_calendar .calendar-month-header th{
	background-color: var(--colorBg);
	/*display: flex;
	align-items: center;*/
	justify-content: center;
}

.zabuto_calendar .calendar-month-header th:first-child{
	border-top-left-radius: 6px;
}

.zabuto_calendar .calendar-month-header th:last-child{
	border-top-right-radius: 6px;
}

.zabuto_calendar .calendar-dow-header th{
	background: white;
	border-bottom: 1px solid var(--colorLines) !important;
	text-align: center;
}

.zabuto_calendar .badge-today {
	color: var(--mainColor);
  	background-color: white;
	border-radius: 20px;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 16px;
	border: 1px solid var(--mainColor);
}

.zabuto_calendar .badge-event {
	color: #fff;
	background-color: var(--mainColorDark);
	border-radius: 20px;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 16px;
}

@media (max-width: 767px) {

	.banner-bg, .banner-search-menu, .banner-calendar > div {
		height: auto;
	}

	#custom-search-form{
		margin: 3rem;
	}

	.banner-calendar > div {
		background-color: white;
		margin: 0 -15px;
	}

	.banner-calendar h2{
		color: var(--textColor);
		text-align: center;
		padding: 2rem 2rem 1rem 2rem;
	}

	.zabuto_calendar > table {
		border: 1px solid #ddd !important;
	}
}

/********************** Destacados **********************/

.index-page h2 {
        font-size: 2.6rem;
        text-transform: uppercase;
        margin-top: 4rem;
        margin-bottom: 1.5rem;
        font-weight: bold;
}

.suggested-links .row {
        display: flex;
		flex-wrap: wrap;
}

.suggested-links .col {
        height: 100%;
}

.suggested-links .row > div { 
	margin-bottom: 1.5rem; 
}

.suggested-links .row > div > a {
        display: flex;
        flex-direction: column;
        border: 1px solid #D8D8D8;
        height: 100%;
        padding: 1.5rem;
        align-items: flex-start;
        margin: 0;
}

.suggested-links .row > div > a > .banner-icon {
        color: var(--mainColor) !important;
        font-size: 4rem !important;
}

.suggested-links .row > div > a:hover > .banner-icon {
        color: var(--mainColorDark) !important;
}

.suggested-links-txt {
	color: var(--textColor);
        font-weight: bold;
        padding-top: 1rem;
        text-align: left;
        font-size: 1.6rem;
		word-break: break-word;
}

.suggested-links .row > div > a:hover {
        text-decoration: none;
}

.suggested-links .row > div > a:hover .suggested-links-txt {
        text-decoration: underline;
}

.suggested-links.side .row {
	flex-wrap: wrap;
	gap: 12px;
}

.suggested-links.side .row > div { 
	margin-bottom: 0; 
}

.suggested-links.side .row > div > a{
	flex-direction: row;
	justify-content: flex-start;
	gap: 10px;
}

.suggested-links.side .row > div > a > .banner-icon {
	font-size: 3rem !important;
	width: 40px;
	text-align: center;
}

.suggested-links-txt {
	padding-top: 4px;
}

/********************** Areas **********************/

/* Content blocks: services block */
.services-grid, .interest-links-grid, .lines-grid {
	display: flex;
	flex-flow: wrap;
}

.service-block {
	text-align: center;
}

.service-block > a {
	display: flex;
	flex-direction: column;
	margin-bottom: 1rem;
	height: 100%;
}

.service-block  .service-box {
	border-radius: 0;
	padding: 1rem 2rem;
	margin-bottom: 2rem;
	display: flex;
	background: var(--colorBg);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	cursor: pointer;
}

.service-block .service-box > .icon-5x{
	background: white;
	border: 2px solid var(--colorArea) !important;
	border-radius: 50px;
	width: 70px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 3.5rem;
}

.service-block .service-box i{
	color:  var(--colorArea) !important;
}

.service-block .service-box > span {
    cursor: pointer;
    color: var(--textColor);
    font-weight: bold;
    margin-left: 1rem;
    margin-bottom: 0;
	text-align: center;
	margin-top: 10px;
}

.service-block > a:hover, .service-block > a:focus {
	text-decoration: none;
}

.service-block > a:hover span {
	text-decoration: underline;
}

.service-block > a:hover .service-box+span, .service-block > a:focus .service-box+span {
	text-decoration: underline;
}

/********************** Avisos **********************/

/* Content blocks: gen message block & proc message block */
.message-row {
	display: flex;
	border-bottom: 1px solid var(--colorLines);
	padding: 14px 0 14px 0;
}

.message-row:last-child {
	border-bottom: none;
}

#procHidden .message-row:first-child {
	border-top: 1px solid var(--colorLines);
}

.message-row span {
	margin-right: 1rem;
	margin-top: 6px;
  	font-size: 1.8rem;
	color: var(--colorLines);
}

.message-row p {
	    margin: 0 0 0px;
}

.separator-gen-messages, .separator-proc-messages {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.message-row .message-content{
	word-break: break-word;
}

.message-row .message-title{
	color: var(--mainColor);
	font-weight: bold;
	font-size: 1.5rem;
}

.message-row .message-description{
	color: var(--textColor);
}

/********************** Trámites destacados **********************/

.procedure-top{
	border: 1px solid var(--colorLines);
	padding: 1.5rem;
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.procedure-top .proc-icon{
	color: var(--mainColor);
	margin-right: 10px;
}

.procedure-top .proc-text{
	color: var(--textColor);
	font-weight: bold;
}

.procedure-top a{
	cursor: pointer;
}

.procedure-top a:hover{
	text-decoration: none;
}

.procedure-top a:hover .proc-icon{
	color: var(--mainColorDark);
}

.procedure-top a:hover .proc-text{
	text-decoration: underline;
}

/********************** Trámites más solicitados **********************/

.procedures-most{
	border: 1px solid var(--colorLines);
	border-left: 8px solid var(--mainColor);
	padding: 1.5rem;
}

.procedure-most{
	padding: 1.5rem;
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.procedure-most a{
	display: flex;
  	align-items: center;
}

.procedure-most .proc-icon{
	color: var(--mainColor);
	margin-right: 10px;
	font-size: 1.8rem;
}

.procedure-most .proc-text{
	color: var(--textColor);
	font-weight: bold;
}

.procedure-most a:hover{
	text-decoration: none;
}

.procedure-most a:hover .proc-text{
	text-decoration: underline;
}

/********************** FAQ **********************/

.faq-front{
	border-bottom: 1px solid var(--colorLines);
	padding: 2rem;
	display: flex;
	align-items: center;
}

.faq-front .proc-text{
	font-weight: bold;
}

.faq-front a{
	text-decoration: none;
	color: var(--mainColor);
	font-weight: bold;
}

.faq-front a:hover{
	text-decoration: underline;
	color: var(--mainColorDark);
}

/* Páginas */

#accordion.faq h2{
	border-bottom: none;
}

#accordion.faq .panel-body {
	padding: 15px 15px 7px 15px;
}

#accordion.faq ul{
	margin-bottom: 0;
}

#accordion.faq li{
	list-style: none;
}

.fa-angle-right{
	color: var(--mainColor);
}

/********************** Enlaces de interés y footer **********************/

.footer-links{
    margin-top: 3rem;
    padding: 2rem 0 3rem 0;
    background-color: var(--textColor);
    color: white;
}

.footer-links .interest-links-grid {
	columns: 3;
	display: block !important;
	margin-bottom: 1rem;
}

@media (max-width: 991px) { .footer-links .interest-links-grid { columns: 2;} }
@media (max-width: 767px) { .footer-links .interest-links-grid { columns: 1;} }

.footer-links a:link, .footer-links a:visited{
    color: white;
	text-decoration: none;
}

.footer-links a:hover{
    color: white !important;
	text-decoration: underline;
}

.footer-links > section > .container > .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
	justify-content: center;
}

.f-title-li {
    font-weight: 800;
	margin-top: 2rem;
	margin-bottom: 1rem;
	color: white;
	font-size: 1.9rem;
	float: none;
}

.f-title-li.titleh2 {
	font-size: 2.6rem;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	font-weight: bold;
	font-family: var(--fontFamily2);
}

.footer-links .interest-links-grid a {
	padding-bottom: 6px;
	display: inline-block;
}

.footer-ul {
    padding-left: 0;
    margin-bottom: 2rem;
}

.footer-ul > li {
    list-style-type: none; 
    margin: 1rem 0;
}

.footer-ul > li span img {
  max-width: 20px;
  max-height: 20px;
  margin: 0 6px;
}

footer {
	padding: 3rem 0;
	background-color: #E7E7E7;
	margin: 0;
}

footer a{
    color: var(--textColor) !important;
	text-decoration: none;
}

footer a:hover{
    color: var(--textColor) !important;
	text-decoration: underline;
}

footer > .logo-img {
    max-width: 155px;
    width: 100%;
}

footer > .responsive {
    height: auto;
    max-width: 100%;
}

footer > .container > .row > div:last-child {
	display: flex;
	justify-content: center;
	flex-flow: column wrap;
	align-items: flex-end;
	height: 100%;
}
@media (max-width: 991px) { footer > .container > .row > div:first-child { text-align: center; } }
@media (max-width: 991px) { footer > .container > .row > div:last-child { height: auto; align-items: center; margin-top: 2rem; } }

footer > .container > .row > div:last-child > ul {
    padding-left: 0;
    display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

footer > .container > .row > div:last-child > ul > li {
    list-style-type: none;
    margin: 0 1.5rem;
}

/********************** Contenido **********************/

.lateral-menu {
	/*margin-top: 112px;*/
	margin-top: 0;
}

.lateral-menu h2 {
	padding-bottom: 14px;
	margin-bottom: 10px;
	font-size: 2rem;
}

.lateral-menu ul {
	list-style: none;
	padding-left: 0;
}

.lateral-menu ul li {
	border-bottom: 1px solid var(--colorLines);
  	padding: 14px 12px 14px 12px;
}

.lateral-menu ul li:last-child {
	border-bottom: none;
}

.lateral-menu ul li a {
	color: var(--mainColor);
}

.lateral-menu ul li a:hover {
	color: var(--darkColor);
	text-decoration: underline;
}

/********************** Otro **********************/

.icon-2x {
	font-size: 2rem;
}

.icon-3x {
	font-size: 3rem;
}

.icon-4x {
	font-size: 4rem;
}

.icon-5x {
	font-size: 5rem;
}

.icon-10x {
	font-size: 10rem;
}

/* General */
body {
	padding: 0;
	margin: 0;
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

body>div.container {
	flex: 1;
}

body>div.container-fluid {
	flex: 1;
}

::placeholder {
	font-style: italic;
}

.p-relative {
	position: relative;
}

.d-flex {
	display: flex;
}

.text-center {
	text-align: center;
}

.align-center, .align-end, .justify-end {
	display: flex;
}

.align-end {
	align-items: end;
}

.align-center {
	align-items: center;
}

.justify-end {
	justify-content: flex-end;
}

.p-0 {
	padding: 0 !important;
}

.my-0 {
	margin-top: 0px !important;
	margin-bottom: 0px !important;
}

.chk-col label {
	margin-bottom: 0;
}

/* Layout: header */
header {
	width: 100%;
	height: 114px;
	background-image: url(/opencms/opencms/sede/resources/images/fondo.jpg);
	background-repeat: no-repeat, no-repeat;
	background-position: left, right, top center;
	display: flex;
	justify-content: center;
	border-bottom: 0px solid #cfd8dc;
}

.header-left {
	display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.logo-ayto {
	position: absolute;
	top: 10px;
	z-index: 10;
	width: 370px;
	height: 75px;
	text-align: right;
}
/*
.col-6{
	font-weight: bold;
    font-size: 2.5rem;
	margin: 2.5rem auto;
}
*/
.legal-menu {
	/*margin: 2rem 0rem 0rem 10rem;*/
	margin: auto;
	
}

.legal-menu > .footer-centered > a {
	text-decoration: underline;
}

.legal-menu > .footer-centered > a:hover {
	color: #980046;
}

.header-title {
	margin-left: 0rem;
	color: #767676;
}

.header-title > span {
    font-weight: bold;
    font-size: 2.5rem;
    margin: 0 3rem;
}

.loggin {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	flex-direction: column;
	margin-right: 30px;
}

.loggin > a {
	cursor: pointer;
	font-weight: bold;
}

.loggin .btn-rounded, .loggin .btn-rounded:hover {
	border-radius: 12px;
	border: 0px;
	color: #fff !important;
	padding: 1px 20px;
	font-size: 1.5rem;
}

.btn-default {
	padding: 0.5rem 3rem;
	color: #fff;
	margin-left: 1rem;
	border-radius: 4px;
	background-color: #005b90;
	border: 1px solid #005b90;
	margin-bottom: 1rem;
}

.btn-default:hover {
	border: 1px solid #000000;
	color: #000000 !important;
	background-color: #fff !important;
}

.loggin .btn-rounded:hover {
	border: 1px solid #000000;
	color: #000000 !important;
	background-color: #fff !important;
}

.timedate>span {
	font-size: 2rem;
}

/* Layout: breadcrumb */
.breadcrumb {
	background-color: transparent;
	padding-left: 0.5rem;
}

.breadcrumb>span {
	margin: 0 0.5rem;
}

.breadcrumb label {
	font-weight: normal;
}

/* Layout: nav links */
.bg-nav  {
	background-color: #eee;
}

ul.header-menu {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding-left: 0;
}

ul.header-menu li {
	list-style-type: none;
}

.header-menu a {
	color: #000;
	font-size: 2.5rem;
	font-weight: 500;
}



/* Layout: content */
.content-margin {
 	margin: 1rem 31rem 0rem 31rem;
}

.content-margin>aside, .content-margin>section {
	padding: 1.5rem 3.5rem;
}

/* Content blocks: search block */
.search-block{
	margin-bottom: 3rem;
}

.block-links li {
    margin: 2rem 0;
    font-family: 'FontAwesome';
	list-style-type: none;
    color: #9d0247 !important;
	display: inline-flex

}
.block-links > li > span {
	margin-right: 1rem !important;
	font-size: 3rem !important;
}

.block-links > li > a {
	color: #555;
	font-family: var(--fontFamily1);
	font-size: 1.4rem;
}

.block-links > li > a:hover{
	color: #555;
	text-decoration: underline;
}


/* Content blocks: procedures slide */
.procedures-slide, .procedures-slide-title, .simple-slide {
	display: flex;
	align-items: center;
}

.procedures-slide-title>span, .simple-slide-title {
	margin-right: 2rem;
}

.procedures-slide, .simple-slide {
	align-items: baseline;
	padding: 0 2rem 1rem 2rem;
	border-bottom: 1px solid #cfd8dc;
}

.simple-slide {
	padding: 0;
}

.procedures-slide-title, .procedure-name, .simple-slide-title {
	flex: 1;
}

.icon-arrow-down.turned {
	transform: rotate(180deg);
}

.icon-arrow-down {
	transform: rotate(0deg);
}

.slide-arrow:hover, .slide-arrow:focus {
	text-decoration: none;
}

/* Content blocks: procedures table */
.procedure-table {
	margin-top: 3rem;
	border-collapse: separate;
	width: 100%;
}

.procedure-table th {
	padding-bottom: 1.5rem;
}

.procedure-table td, .procedure-table th {
	text-align: center;
}

.procedure-table td:first-child, .procedure-table th:first-child {
	text-align: left;
	/*width: 85%;*/
}

.procedure-table td>div {
	border: 1px solid #cfd8dc;
	margin-bottom: 1rem;
	border-radius: 4px 4px 0px 0px;
	padding: 1rem 0rem 1rem 2rem;
	display: flex;
	align-items: center;
}

.bg-orange, .state-orange{
	background-color: #f0ad4e;
}

.bg-green, .state-green{
	background-color: #235730;
}

.bg-red, .state-red{
	background-color: #6c2425;
}

.procedure-table td > div.state-green{
	border: 1px solid #235730;
}

.procedure-table td > div.state-orange{
	border: 1px solid #f0ad4e;
}

.procedure-table td > div.state-red{
	border: 1px solid #6c2425;
}

.procedure-name {
	flex: 1;
}

.proc-table-icon {
	text-align: center;
}

.proc-table-icon span {
    margin: 10px;
}

.proc-table-icon>a:hover, .proc-table-icon>a:focus {
	text-decoration: none;
}

.notify-table {
	padding: 0px !important;
	margin: 0px !important;
}

.notify-title {
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 5px;
	margin-left: 10px;
}

.notify-state {
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 5px;
}

.notify-header, .notify-row .proc-table-icon span {
	color: #fff;
}

.notify-row, .notify-content-red {
	margin-bottom: 0 !important;
}

.notify-row-content {
	border-top: 0 !important;
	border-top-left-radius: 0 !important;
	border-top-right-radius: 0 !important;
	display: flex;
	flex-direction: column;
	align-items: flex-start !important;
}

.notify-row-content>.row, .notify-row-footer>.row {
	width: 100%;
}

.notify-label {
	font-size: 1.4rem;
	margin-top: 15px;
	margin-bottom: 5px;
    font-weight: 700;
}

.state-pending .state-green, .state-red {
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

.notify-row-footer {
	border-top-left-radius: 0 !important;
	border-top-right-radius: 0 !important;
}

.notify-content-red {
	border-radius: 0px !important;
	border-bottom: 0px !important;
}

/* Content blocks: forms */
.slide-wrapper {
	padding: 2rem 0;
}

.form {
	padding: 0.9rem 2rem;
}

.form-row, .row-end {
	padding: 0.5rem 2rem;
	display: flex;
	/*justify-content: space-around;*/
}

.row-end {
	margin: 2rem 0;
	padding: 0;
	justify-content: flex-end;
}

.col {
	display: flex;
	flex-direction: column;
}

.form-input, .form-select {
	padding: 0.5rem;
	border: 1px solid #cfd8dc;
	border-radius: 4px;
	padding-left: 1rem;
}

.form-select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none; /* Remove default arrow */
	background-image: url(../img/down-arrow.svg); /* Add custom arrow */
	background-repeat: no-repeat;
	background-size: 1rem;
	background-position: right 10px center;
	width: 100%;
}

.form-input[disabled], .form-select[disabled] {
	background-color: #ECEFF1;
}

.btn-i {
	background-color: transparent;
	border: 0;
}

.btn-icon {
	background-color: transparent;
	border: 0;
	margin-left: 1rem;
    margin-right: 1rem;
}

.btn-primary {
	padding: 0.5rem 3rem;
	color: #fff;
	margin-left: 1rem;
	border-radius: 4px;
}

.btn-primary:hover {
	background-color: #fff;
}

/* Content blocks: tabs */
.tab-row {
	margin-top: 3rem;
}

.tab-content {
	margin-bottom: 3rem;
}

.tab-row li.active a {
	color: #fff;
}

.nav-tabs>li>a {
	font-size: 1.5rem;
	cursor: pointer;
}

.tab-content {
	padding: 2rem 0;
}

/* Content blocks: theme table */
.theme-table th {
	border-bottom: 0 !important;
	color: #fff;
}

.theme-table td {
	border-top: 0;
	border-bottom: 1px solid #cfd8dc;
}

.theme-table tr:nth-child(2) {
	background-color: #ECEFF1;
}

.theme-table tr:hover {
	background-color: #FFE082;
	cursor: pointer;
}


/* Content blocks: validate block */
.danger-block {
	border-radius: 4px;
	padding: 1rem 2rem;
	margin: 0.5rem 1rem;
	background-color: #f2dede;
	border: 1px solid #f2dede;
}

/* Content blocks: validate block */
.validate-block {
	border-radius: 4px;
	padding: 1rem 2rem;
	margin: 1.5rem 0;
	background-color: #ECEFF1;
	border: 1px solid #cfd8dc;
}



.more-line {
	height: 1px;
	flex: 1;
	margin-right: 1rem;
	background-color: #cfd8dc;
}

.more-link :first-child {
	margin-right: 0.5rem;
}

.hidden-gen-messages, .hidden-proc-messages {
	display: none;
	border-block-start: 1px solid var(--colorLines);
}

.opened .gen-messages-arrow, .opened .proc-messages-arrow {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	display: inline-flex;
}

.separator-gen-messages:hover, .separator-proc-messages:hover,
	.separator-gen-messages:focus, .separator-proc-messages:focus {
	text-decoration: none;
}

/* Content blocks: banners block */
.banners-block {
	display: flex;
	flex-direction: column;
	padding: 1.5rem;
	padding-top: 2.5rem;
	padding-bottom: 0;
}

.banner-icon {
	color: #856404 !important;
}

.banner-notes, .banner-portal {
	margin: 0.5rem 0;
	padding: 1rem 2rem;
	display: flex;
	border: 0;
	border-radius: 4px;
	align-items: center;
	justify-content: space-between;
	color: #856404 !important;
	background-color: #fff3cd !important;
}

.banner-portal {
	padding: 1.5rem 2rem;
}

.banner-notes .text, .banner-portal .text {
	border-left: 3px solid #856404;
	padding-left: 10px;
	font-weight: 600;
	text-align: left;
}

.icon-link {
	font-size: 2rem;
	transform: rotate(270deg);
	display: inline-flex;
}

/* Layout: Footer */
.footer-centered {
	padding: 1.5rem 3.5rem;
	padding-top: 0;
	text-align: center;
}

.footer-centered>span {
	margin: 0 1rem;
}

.footer-line {
	border-top: 1px solid #cfd8dc;
	padding-top: 1rem;
}

/* CUSTOMIZE INPUT CHECKBOX */

/* Customize the label (the container) */
.label-chk {
	display: block;
	position: relative;
	padding-left: 2.5rem;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.label-chk input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 18px;
	width: 18px;
	background-color: #fff;
	border: 1px solid #cfd8dc;
	border-radius: 2px;
}

/* On mouse-over, add a grey background color */
.label-chk:hover input ~ .checkmark {
	background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.label-chk input:checked ~ .checkmark {
	background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.label-chk input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.label-chk .checkmark:after {
	left: 5px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid black;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}















/* Responsive */
@media ( max-width : 1366px) {
	.content-margin {
		margin: 1rem 1rem 0rem 1rem;
	}
}
@media ( max-width : 768px) {

	.loggin {
		display: flex;
		align-items: flex-start;
		justify-content: center;
		flex-direction: column;
		margin-left: 0;
		margin-top: 80px;
		/*width: 100%;*/
		margin-right: 0;
		border-top: 0px solid #cfd8dc;
		padding: 0 15px;
	}
	.content-margin {
		margin: 1rem 1rem 0rem 1rem;
	}
	.form-row, .row-end {
		display: block;
	}
	.col {
		margin-bottom: 1rem;
	}
	.footer-centered a {
		width: 100%;
		display: block;
	}
	.footer-centered span {
		display: none;
	}
	
/* test responsive */
.logo-ayto {
	width: 100%;
	text-align:center;
}

header > .col-6 {
	margin-top: 1.5rem;
}

.legal-menu {
 	margin: 0;
}

.loggin {
	margin-top: 0;
	padding-top: 2rem;
	margin-bottom: 2rem;
}

#google_translate_element, #clock, .loggin > a {
	align-self: center;
}

ul.header-menu {
	flex-direction: column;
}
/* end test */
	
}

@media ( max-width : 500px) {
	.header-menu a, h1 {
		font-size: 2rem;
	}
	
	.footer-centered {
		display: none;
	}
}

/* Theme Colors: */
.color-1 {
	color: #005b90 !important;
}

.color-3 {
	color: #235730 !important;
}

.color-bg-3 {
	background-color: #235730 !important;
}

.color-4 {
	color: #856404 !important;
}

.color-bg-4 {
	background-color: #fff3cd !important;
}

.icono-servicio {
	font-size: 50px;
}

.icon-user { 
color: #980046;
}

.alert {
	top: 90px;
	right: 50%;
	padding: 5px;
	font-weight: 800;
	font-style: italic;
}

.content{
	text-align: justify;
}

/*********** Google Translator Bar *************/

.goog-te-banner-frame.skiptranslate {
	display: none !important;
}
.goog-te-gadget-simple img {
	visibility: hidden;
	width: 0px;
}

a.goog-te-menu-value, a.goog-te-menu-value:link, a.goog-te-menu-value:active, a.goog-te-menu-value:visited, a.goog-te-menu-value:hover{
	color: #000 !important; 	
}

.goog-te-menu-value img, img.goog-te-gadget-icon, img.goog-te-gadget-simple{
	width: 0px !important;
	height: auto !important;
}

.fondo {
	background-color:gray;
    color:#CC0000;
    position: fixed;
    text-align:center;
    top:0px;
    left:0px;
    font-size:25px;
    font-weight:bold;
    min-height: 100%;
	height: auto !important;
	height: 100%;
	_height:100%;
	width:100%;
    z-index: 90;
    display: none;
    filter:alpha(opacity=60);
	-moz-opacity:0.60;
	-khtml-opacity: 0.60;
	opacity:0.60
}

.modalText {
	background-color:#FFFFFF;
	color:#000000;
	position: fixed;
	text-align:center;
	top:50%;
	left:50%;
	padding:65px;
	font-size:18px;
	font-weight:bold;
	width:300px;
	height: 150px;
	-moz-border-radius: 15px;
 	border-radius: 15px;
 	z-index: 95;
 	display: none;
 	
 	margin-top: -140px;
 	margin-left: -215px;
 	
 	box-sizing: content-box;
}

.loading_img_sign {
	display: block;	
}

.loading_text_sign {
	display: block;	
}

@media screen and (max-height: 25.25em), screen and (max-width: 44.3125em){

	.cbp-tm-menu > li {
    	background: #eee !important;
	}
}



/********************** Botones **********************/

.btn-big{
	font-size: 1.3rem;
	padding: 8px 15px;
	border-radius: 6px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	font-weight: bold;
	text-transform: uppercase;
} 

.btn-main{
	background: var(--mainColor);
	color: white !important;
	border: 1px solid var(--mainColor);
}

.btn-main:hover{
	background: var(--mainColorDark);
	color: white !important;
	border: 1px solid var(--mainColorDark);
}

.btn-other{
	color: var(--mainColor) !important;
	background: white;
	border: 1px solid var(--mainColor);
}

.btn-other:hover{
	color: var(--mainColor) !important;
	background: var(--colorBg);
	border: 1px solid var(--mainColorDark);
}

/********************** Compartir **********************/

.share{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 6px;
	margin-bottom: 3rem;
}

.share label{
	margin-right: 10px;
	margin-bottom: 0;
	color: var(--textColor);
}

.share .btn-preview{
	cursor: pointer;
	color: var(--mainColor) !important;
	width: 30px;
	height: 30px;
	border: 1px solid var(--mainColor);
	border-radius: 5px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 1.8rem;
}

.share .btn-preview:hover{
	background-color: var(--colorBg);
	color: var(--mainColorDark) !important;
	text-decoration: none !important;
}

/********************** Accesibilidad **********************/

.screenreader-text {
    /* a generic way to visually hide content while remaining accessible to screen readers (h5bp.com) */
    clip: rect(0 0 0 0);
    overflow: hidden;
    position: absolute;
    height: 1px;
    width: 1px;
}

/********************** Forms **********************/

.form-row label{
	color: var(--textColor);
	font-weight: bold;
	padding-top: 2px;
	font-size: 13px;
	font-weight: 600;
}

textarea, input[type="text"], input[type="password"], select, *|textarea{
	padding: 6px 12px;
	background-image: none;
	border: 1px solid var(--colorLinesInput);
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	background-color: white;

	
	font-family: var(--fontFamily1);
	font-weight: 400; /* regular */
	font-size: 14px;
	color: var(--textColor);
}

textarea[type="textarea"][disabled], input[type="text"][disabled], input[type="password"][disabled], select[disabled], .form-input[disabled], .form-select[disabled] {
	background-color: var(--colorBgDisabled);
	color: var(--textColorDisabled);
	border: 1px solid var(--colorLines);
}

.form-select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none; /* Remove default arrow */
	background-image: url(../img/down-arrow.svg); /* Add custom arrow */
	background-repeat: no-repeat;
	background-size: 1rem;
	background-position: right 10px center;
	width: 100%;
}

input[disabled], select[disabled] {
	opacity: 13;
}