/*!
 * Concello de Ordes
 * styles.css
 * General css styles
 */


/* -------------------------------------------------------------
   BODY
------------------------------------------------------------- */

/* General */ 
html {
	position: relative;
	min-height: 100%;
}
body {
	padding-top: 80px;
	margin-bottom: 50px;
	background: #F2F2F2;
}

/* Wrapper */ 
.wrapper {
	padding-top: 52px;
}
#homepage {
	padding-top: 0;
}

/* Main content */ 
#main-content {
	padding-bottom: 60px;
}

/* Content wrapper */ 
.content-wrapper {
	width: 970px;
	margin: 0 auto;
	padding: 0;
}


/* -------------------------------------------------------------
   INTRO
------------------------------------------------------------- */

/* General */
#intro {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 15px solid #FFF;
	background: #000;
}
#intro .image-container {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #000;
	background-image: url('/web/templates/images/image-intro.jpg');
	background-repeat: norepeat;
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;	
	background-position: center;
	opacity: .8;
    filter: alpha(opacity=80); /* For IE8 and earlier */		
}

/* Content wrapper */
#intro .content-wrapper {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	margin: 0;
	margin-top: -248px;
	padding: 0;
	text-align: center;
}

/* Logo */
#intro .logo {
	display: inline-block;
	width: 280px;
	min-height: 1px;
	margin: 0;
	margin-bottom: 90px;
}
#intro .logo a {
	display: block;
	margin: 0;
}
#intro .logo img {
	display: block;
	width: 100%;
	margin: 0;
}

/* Section buttons */
#intro .section-buttons a {
	display: inline-block;
	margin: 0 10px;
	padding: 2px;
	font-size: 16px;
	letter-spacing: 1px;
	text-align: center;
	background: none;
	border: 2px solid rgba(255,255,255,.8);
	text-decoration: none;
}
#intro .section-buttons a:hover {
	text-decoration: none;
	border-color: rgba(255,255,255,1);
}
#intro .section-buttons a .inner-wrapper {
	width: 200px;
	height: 200px;
	margin: 0;
	padding: 10px;
	background-color: rgba(255,255,255,.8);
}
#intro .section-buttons a:hover .inner-wrapper {
	background-color: rgba(255,255,255,1);
}
#intro .section-buttons img {
	display: block;
	width: 120px;
	margin: 0 auto;	
}
#intro .section-buttons span {
	display: block;
	font-weight: 400;
	text-transform: uppercase;
}
#intro .copyright {
	margin-top: 90px;
	font-size: 12px;
	color: #FFF;
	text-transform: uppercase;
}


/* -------------------------------------------------------------
   TYPOGRAPHY
------------------------------------------------------------- */

/* General */
body {
    font-family: 'Helvetica Neue',Arial,sans-serif;
	color: #1d1e1c;
}

/* Titles */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    letter-spacing: 1px;
}
h1 {
	margin: 0;
	font-size: 32px;
	line-height: 1.2em;
	text-transform: uppercase;
}
header h2,
header h3 {
	font-size: 24px;
	text-transform: uppercase;
}

/* Paragraph */
p {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
}

p.lead {
	margin-bottom: 30px;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.5em;
}

/* List */
ul {
	-webkit-padding-start: 25px;
}
li {
    font-size: 16px;
    font-weight: 300;
}

/* Date, time, location, category */
.date:before,
.time:before,
.location:before,
.category:before {
	display: inline-block;
	margin-right: 5px;
	font-family: "fontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
}
.date:before {
	content: '\f133';
}
.date.end-date:before {
	margin-left: 5px;
	content: ' - ' !important;
}
.time {
	margin-left: 20px;
}
.time:before {
	content: '\f017';
}
.location {
	margin-left: 20px;
}
.location:before {
	content: '\f041';
}
.category:before {
	content: '\f02b';
}

/* Required text */
p.required {
	font-style: italic;
	font-size: 14px;
}

/* Table */
.freetext table {
	width: 100%;
	margin: 45px 0;
}
tr {
	width: 100%;
}
th,td {
	padding: 10px 15px;
    font-size: 14px;
	background: #FFF;
	border-bottom: 2px solid #f2f2f2;
	border-right: 2px solid #f2f2f2;
}
th {
    font-weight: 400;
    color: #FFF;
    background: #0f71b7;
}
td {
    font-weight: 300;
}


/* -------------------------------------------------------------
   BUTTONS
------------------------------------------------------------- */

/* Default */
.btn-default {
	padding: 15px 15px 13px;
	font-size: 12px;
	letter-spacing: 1px;
	color: #FFF !important;
	text-align: left;
	text-transform: uppercase;
	background: #0f71b7;
	border-radius: 0;
	border: none;
}
.btn-default:before {
	display: inline-block;
	margin: 0;
	margin-right: 10px;
	padding: 0;
	font-family: "fontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 13px;
	content: '\f105';
}
.btn-default:hover {
	color: #FFF !important;
	background: #0660a0;
}
.btn-default:focus {
	color: #FFF !important;
	border: none;
	outline: none;
	background: #0f71b7;
}

/* Back button */
.btn-back {
	padding: 15px 0 13px;
}
.btn-back:before  {
	display: inline-block;
	margin: 0;
	margin-right: 10px;
	font-family: "fontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
	content: '\f104';	
}

/* Dropdown toggle */
.btn.dropdown-toggle:before {
	margin: 0;
	content: '';
}
.btn.dropdown-toggle:after {
	display: inline-block;
	margin: 0;
	margin-left: 5px;
	font-family: "fontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
	content: '\f107';
}
.btn-group.open .dropdown-toggle {
	color: #FFF;
	box-shadow: none;
}

/* Buttons container */
.buttons-container {
	margin: 45px 0 0;
	text-align: center;
}

/* Load button */
.btn-default span {
	margin: 0 10px 0 0;
	padding: 0;
}
.btn-default .fa {
	font-size: 16px;
}
.btn-default[disabled],
.btn-default[disabled]:focus
.btn-default[disabled]:hover {
	background: #0f71b7 !important;
}


/* -------------------------------------------------------------
   LINK
------------------------------------------------------------- */

/* General */ 
a {
	color: #0f71b7;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}
a:hover,
a:focus {
	color: #0f71b7;
    outline: 0;
    box-shadow: none;
}


/* ------------------------------------------------------------- */
/* SHARE							 							 */
/* ------------------------------------------------------------- */

/* General */
.share {
	display: inline-block;
	position: relative;
}
.share:before {
	display: inline-block;
	margin-right: 5px;
	font-family: "fontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 18px;
	content: '\f1e0';
    vertical-align: -1px;
}
.share .share-toggle {
	cursor: pointer;
	color: #011d2d !important;
}
.share .share-toggle:hover {
	text-decoration: none;
}

/* Addthis */
.share .addthis_default_style {
	display: none;
	position: absolute;
	top: 0;
	left: 100%;
	float: left;
	width: 120px;
	height: 24px;
	margin-left: 10px;
}
.share .addthis_default_style.open {
	display: block;
}
.share .addthis_default_style a {
	display: block;
	float: left;
	margin: 0;
	padding: 0;
	text-decoration: none;
	background: none;
	color: #011d2d !important;
	cursor: pointer;
}
.share .addthis_default_style a:hover {
}
.share .addthis_default_style a .icon {
	display: block;
	margin: 0;
}
.share .addthis_default_style a .icon:before {
	display: block;
	width: 30px;
	height: 24px;
	margin: 0;
	font-family: "fontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 18px;
	line-height: 24px;
	text-align: center;
	vertical-align: -1px;
}
.share .addthis_default_style .addthis_button_facebook:hover {
	color: #4c66a4;
}
.share .addthis_default_style .addthis_button_facebook .icon:before {
	content: "\f09a"
}
.share .addthis_default_style .addthis_button_twitter:hover {
	color: #4099FF;
}
.share .addthis_default_style .addthis_button_twitter .icon:before {
	content: "\f099"
}
.share .addthis_default_style .addthis_button_google_plusone_share:hover {
	color: #D34836;
}
.share .addthis_default_style .addthis_button_google_plusone_share .icon:before {
	content: "\f0d5"
}
.share .addthis_default_style .addthis_button_email:hover {
	color: #000;
}
.share .addthis_default_style .addthis_button_email .icon:before {
	content: "\f0e0"
}


/* -------------------------------------------------------------
   BREADCRUMBS / FILTERS
------------------------------------------------------------- */

/* General */
#breadcrumbs-filters {
	position: fixed;
	top: 80px;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 51px;
	margin: 0;
	padding: 0;
	border-top: 1px solid #F2F2F2;
	background: #0f71b7;
}
#breadcrumbs-filters.scrolled {
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
}

/* Breadcrumbs */
#breadcrumbs-filters .breadcrumb {
	float: left;
	height: 50px;
	margin: 0;
	padding: 15px 0;
	border-radius: 0;
	background: none;
}
#breadcrumbs-filters .breadcrumb li {
	color: #FFF;
	font-size: 12px;
	font-weight: 300;
}
#breadcrumbs-filters .breadcrumb li.active {
	font-weight: 400;
}
#breadcrumbs-filters .breadcrumb li a {
	color: #FFF;
}
#breadcrumbs-filters .breadcrumb>li+li:before {
	color: #FFF;
	font-weight: 300;
}

/* Button */
#breadcrumbs-filters .btn-default {
	height: 50px;
}
#breadcrumbs-filters .btn-default:hover {
}

/* Back button */
#breadcrumbs-filters .btn-back {
	float: right;
}

/* Filters */
#breadcrumbs-filters .filters {
	float: right;
	margin: 0;
}
#breadcrumbs-filters .filters .btn-group {
	float: left;
	margin: 0;
}
#breadcrumbs-filters .filters .btn-default {
	height: 50px;
	padding-right: 10px;
	padding-left: 10px;
	letter-spacing: 0;
}	
#breadcrumbs-filters .filters .open .btn-default {
	background: #0660a0
}

/* Filters dropdown */
#breadcrumbs-filters .filters .dropdown-menu {
	min-width: 150px;
	margin: 0;
	padding: 0;
	border-radius: 0;
	border: none;
	background: #0660a0
}
#breadcrumbs-filters .filters .dropdown-menu li {
	margin: 0;
	font-size: 13px;
	border-top: 1px solid rgba(255,255,255,.4);
}
#breadcrumbs-filters .filters .dropdown-menu li a {
	padding: 10px;
	padding-top: 12px;
	color: #FFF;
	font-weight: 400;
}
#breadcrumbs-filters .filters .dropdown-menu li a:hover {
	color: #0f71b7;
	background: #FFF;
}


/* -------------------------------------------------------------
   HEADER IMAGE
------------------------------------------------------------- */

/* General */
#header-image {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #000;
	background-repeat: norepeat;
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;	
	background-position: center;	
}

/* Spacer */
#header-image .spacer {
	width: 100%;
	height: auto;
	margin: 0;
}
#header-image img {
	display: block;
	width: 100%;
	margin: 0;
}

/* Mobile image */
#header-image .image-small {
	display: none;
}

/* Text container */
#header-image .text-container {
	display: inline-block;
	position: absolute;
	bottom: -20px;
	left: 50%;
	width: 1170px;
	height: auto;
	margin-left: -585px;
	padding: 0 15px;
	text-align: left;
	font: 0/0 a;
}
#header-image .text-container:before {
	content: " ";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}

/* Article */
#header-image .text-container article {
	display: inline-block;
	width: 50%;
	padding: 0;
	vertical-align: bottom;
	font: 14px/1 Sans-Serif;
	text-align: left;
	background: none;
}
#header-image .text-container article h1 {
	margin: 0;
	color: #FFF;
	font-size: 120px;
	line-height: 1;
	font-weight: 300;
	letter-spacing: 1px;
	text-transform: none;
}


/* -------------------------------------------------------------
   PAGE HEADER
------------------------------------------------------------- */

/* General */
header.page-header {
	display: block;
	margin: 60px 0 45px;
	padding: 0;
	text-align: left;
	border: none;
}
header.page-header h1 {
	margin: 0;
	font-size: 40px;
	font-weight: 700;
    color: #0f71b7;
    text-transform: none;
}
header.page-header p {
	margin: 0;
	font-size: 14px;
	line-height: 28px;
	font-weight: 300;
}
header.page-header span {
	white-space: nowrap;
}
header.page-header .share {
	margin-top: 25px;
}

/* Tags */
header.page-header .time,
header.page-header .location,
header.page-header .category {
	margin: 0;
	margin-left: 20px;	
}
header.page-header .date:before,
header.page-header .time:before,
header.page-header .location:before,
header.page-header .category:before {
	font-size: 18px;
	margin-right: 5px;	
}


/* -------------------------------------------------------------
   PAGE SUB HEADER
------------------------------------------------------------- */

/* General */
header.page-sub-header {
	display: block;
	margin: 45px 0 30px;
	padding: 0;
	text-align: left;
	border: none;
}
header.page-sub-header h2,
header.page-sub-header h3 {
	margin: 0;
	font-weight: 700;
}



/* -------------------------------------------------------------
   GENERAL LISTING
------------------------------------------------------------- */

/* Item */
.list-item {
	position: relative;
	float: left;
	width: 25%;
	min-height: 1px;
	margin: 0;
	padding: 0 15px;
}

#homepage.concello #features .list-item {
	width: 20%; /* 23/09/2019 */
}
/* Link */
.list-item a {
	display: block;
	margin: 0;
	color: #1C1C1B;
}
.list-item a:hover {
	color: #1C1C1B;
}

/* Image */
.list-item .item-image {
	display: block;
	float: left;
	width: 100%;
	margin: 0;
	text-align: center;
	overflow: hidden;	
}
.list-item .item-image img {
	display: block;
	width: 100%;
	margin: 0;
}

/* Text */
.list-item .text-container {
	display: block;
	float: left;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #FFF;
}
.list-item .text-container h2 {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .5px;
}
.list-item .text-container p {
	margin: 0;
	font-size: 12px;
}


/* -------------------------------------------------------------
   FREETEXT
------------------------------------------------------------- */

/* General */
.freetext {
	width: 100%;
	padding: 0 !important;
}
.freetext .category {
	margin-left: 20px;
}
.freetext .category:before {
	margin-right: 10px;
}

/* Typography */
.freetext .content-container p {
	text-align: justify;
}

/* Content image */
.freetext .content-image {
	display: block;
	width: 100%;
	margin: 30px 0 45px;
}
.freetext .content-image img {
	display: block;
	width: 100%;
	margin: 0;
}
.freetext .content-image .text-container {
	display: block;
	width: 100%;
	padding: 10px 15px;
	background: #0f71b7;
}
.freetext .content-image p {
	margin: 0;
	padding-right: 33.33333333%;
	font-size: 14px;
	line-height: 20px;
	color: #FFF;
}


/* -------------------------------------------------------------
   RELATED INFORMATION
------------------------------------------------------------- */

/* General */
#related-info {
	width: 100%;
	margin-top: 30px;
	margin-bottom: 60px;
	padding: 0 !important;
}

/* List item */
#related-info .related-items {
	display: block;
	float: left;
	width: 100%;
	margin: 0;
	margin-top: 30px;
	padding: 0;
}
#related-info .related-items h4 {
	padding: 15px 0;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
	border-top: 1px solid #1d1e1c;
	border-bottom: 1px solid #1d1e1c;	
}
#related-info .related-items:first-child h4 {
	border-top: 3px solid #1d1e1c;
}
#related-info .related-items ul {
	float: left;
	width: 100%;
	margin: 15px 0 0;
	padding: 0;
	padding-left: 25px;
}
#related-info .related-items li {
	position: relative;
	float: left;
	width: 50%;
	min-height: 1px;
	margin: 0;
	margin-bottom: 15px;
	padding-right: 45px;
	line-height: 1.2em;
	list-style: none;
}
#related-info .related-items li:nth-child(2n+1) {
	clear: left;
}

/* List icons */
#related-info .related-items li:before {
	display: inline-block;
	margin: 0;
	margin-left: -25px;
	margin-right: 12px;
	font-family: "fontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
	vertical-align: 0;
}
#related-info .downloads li:before {
	content: '\f016';
}
#related-info .links li:before {
	content: '\f08e';
}

/* Gallery */
#related-info .gallery ul {  
	float: none; 
	width: auto;      
    margin: 0;
    margin-top: 30px;
    margin-right: -10px;
    margin-left: -10px;
    padding: 0;
}
#related-info .gallery li {
	width: 25%;
	margin-bottom: 20px;
	padding: 0 10px;
	line-height: 1;
}
#related-info .gallery li:nth-child(2n+1) {
	clear: none;
}
#related-info .gallery li img {
    cursor: pointer;
}

/* Gallery modal */
#galleryModal .modal-body {
    padding:5px !important;
}
#galleryModal .modal-content {
    border-radius:0;
}
#galleryModal .modal-dialog img {
    text-align:center;
    margin:0 auto;
}
#galleryModal .controls{          
	width:42px;
	height: 42px;
    display:block;
    font-size:11px;
    padding-top:8px;
    font-weight:bold;  
    background: #CCC;        
}
#galleryModal .next {
    float:right;
    text-align:right;
}

/* Gallery modal 2 */
#galleryModal2 .modal-body {
    padding:5px !important;
}
#galleryModal2 .modal-content {
    border-radius:0;
}
#galleryModal2 .modal-body .image-container {
	display: block;
	position: relative;
	width: 100%;
	margin: 0;	
}
#galleryModal2 .modal-body .image-container img {
	display: block;
	width: 100%;
	margin: 0;
}
#galleryModal2 .modal-body .controls {
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 2;
	width: 42px;
	height: 42px;
	margin: 0;
	margin-top: -21px;
	text-indent: -999px;
	font-size: 0;
	overflow: hidden;
	cursor: pointer;
	background: rgba(0,0,0,.5);
}
#galleryModal2 .modal-body .controls.next {
	left: auto;
	right: 0;
}
#galleryModal2 .modal-body .controls:before {
	display: block;
	width: 42px;
	text-align: center;
	line-height: 42px;
	font-family: "fontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 20px;
	text-indent: 0;
	color: #FFF;
}
#galleryModal2 .modal-body .previous:before {
	content: '\f104';
}
#galleryModal2 .modal-body .next:before {
	content: '\f105';
}
#galleryModal2 .modal-body .controls:hover {
	text-decoration: none;
	background: rgba(0,0,0,.8);
}
#galleryModal2 .modal-body .content-container {
	display: block;
	width: 100%;
	margin: 0;
	padding: 10px 25px 0;
}
#galleryModal2 .modal-body .content-container h4 {
	font-weight: 700;
}



/* -------------------------------------------------------------
   HEADER
------------------------------------------------------------- */

/* General */ 
#header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    width: 100%;
    height: 80px;
	background: #FFF;
	border-bottom: 1px solid #FFF;
}
#homepage #header {
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
#header .container {
	position: relative;
}

/* Logo */
#header .logo {
	position: absolute;
	top: 10px;
	left: 15px;
	float: left;
	width: 162px;
	min-height: 1px;
	margin: 0;
}
#header .logo a {
	display: block;
	margin: 0;
}
#header .logo img {
	display: block;
	width: 100%;
	margin: 0;
}


/* -------------------------------------------------------------
   MAIN NAVIGATION
------------------------------------------------------------- */

/* General */ 
#header #main-navigation {
	float: left;
	width: 100%;
	margin: 0;
	padding: 0;
}
#header #main-navigation .navbar-nav {
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: center;.item-image
}
#header #main-navigation .navbar-nav>li {
	display: inline-block;
	position: relative;
	float: none;
	margin: 0;
	padding: 0;
	font-size: 15px;
	letter-spacing: 1px;
	font-weight: 400;
	text-transform: uppercase;
}
#header #main-navigation .navbar-nav>li>a {
	height: 80px;
	margin: 0;
	padding: 32px 15px;
	color: #011d2d;
	cursor: pointer;
}
#header #main-navigation .navbar-nav>li>a:hover,
#header #main-navigation .navbar-nav>li:hover>a {
	color: #0f71b7;
	background: #FFF;
}
#header #main-navigation .navbar-nav>li.active>a {
	color: #FFF;
	background: #0f71b7;
}
#header #main-navigation .navbar-nav>li.active .icon {
	display: block;
	position: absolute;
	bottom: -15px;
	left: 50%;
	width: 20px;
	height: 10px;
	margin: 0;
	margin-left: -10px;
    background: url(../images/bkgrnd-icon-active.png) no-repeat;
}

/* Dropdown toggle */ 
#header #main-navigation .navbar-nav>li>a.dropdown-toggle {
	cursor: pointer;
}
#header #main-navigation .navbar-nav>li>a.dropdown-toggle:after {
	display: inline-block;
	margin: 0;
	margin-left: 5px;
	padding: 0;
	font-family: "fontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 15px;
	content: '\f107';
}

/* Dropdown menu */
#header #main-navigation li.dropdown {
	position: relative;
}
#header #main-navigation .navbar-nav>li.dropdown>a:hover,
#header #main-navigation .navbar-nav>li.dropdown:hover>a,
#header #main-navigation .navbar-nav>li.dropdown.open>a {
	color: #FFF;
	background: #0f71b7;
}
#header #main-navigation .dropdown-menu {
	margin: 0;
	padding: 0;
	border-radius: 0;
	border: none;
}
#header #main-navigation .dropdown-menu ul {
	float: left;
	min-width: 160px;
	margin: 0;
	padding: 0;
}
#header #main-navigation .dropdown-menu li {
	position: relative;
	display: block;
	margin: 0;
	font-size: 13px;
	line-height: 1;
	font-weight: normal;
	white-space: nowrap;
}
#header #main-navigation .dropdown-menu li a {
	display: block;
	padding: 12px 15px 10px;
	padding-right: 30px;
	text-decoration: none;
	color: #FFF;
	background: #0f71b7;
}
#header #main-navigation .dropdown-menu li:hover>a,
#header #main-navigation .dropdown-menu li a:hover {
	text-decoration: none;
	color: #0f71b7;
	background: #FFF;
}

/* Dropdown submenu */
#header .navbar-nav .dropdown-menu.sub-menu {
    left: 100%;
    position: absolute;
    top: 0;
    display:none;
    margin-top: 0;
    margin-left: -1px;
    padding: 0;
    border-radius: 0;
}
#header .navbar-nav .dropdown-menu.sub-menu li {
	line-height: 1;
}
#header .navbar-nav .dropdown-menu.sub-menu>li>a {
	padding: 15px 30px 13px 15px;
	line-height: 1;
}

/* Expand left */
#header .navbar-nav .expand-left .dropdown-menu.sub-menu {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: -1px;
}

/* Dropdown icon */
#header .navbar-nav li a.trigger {
	position: relative;
	cursor: pointer;
}
#header .navbar-nav li a.trigger:after {
	position: absolute;
	right: 0;
	width: 30px;
	text-align: center;
	font-family: FontAwesome;
	content: '\f105';
}
#header .navbar-nav li.open>a.trigger:after {

}



@media (min-width: 992px) {

	#header #main-navigation .dropdown:hover>.dropdown-menu,
	#header .navbar-nav .dropdown-menu li:hover>.dropdown-menu {
		display: block;
	}	

}


/* -------------------------------------------------------------
   SITE SEARCH
------------------------------------------------------------- */

/* General */
#header #site-search {
	position: absolute;
	top: 0;
	right: 167px;
	float: right;
	width: auto;
	margin: 0;
}

/* Search toggle */
#header .search-toggle {
	float: right;
	width: 75px;
	height: 80px;
	margin: 0;
	padding: 0;
	border: none;
	outline: 0;
	background: #FFF;
}
#header .search-toggle:focus {
	outline: 0;
	box-shadow: none;
}
#header .search-toggle .icon {
	display: block;
	width: 100%;
	margin: 0;
}
#header .search-toggle .icon:before {
	display: block;
	width: 100%;
	padding: 0;
	font-family: "fontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 20px;
	content: '\f002';
}

/* Search form */
#header #search-form {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	width: 680px;
	height: 80px;
	border: none;
	background: #F2F2F2;
}

/* Search input */
#header #search-form .form-control {
	height: 80px;
	margin: 0;
	padding: 0 15px;
	font-size: 18px;
	font-weight: 300;
	color: #1C1C1B;
	border: none;
	border-radius: 0;
	box-shadow: none;
	background: none;
}

/* Search button */
#header #search-button {
	width: 75px;
	height: 80px;
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	outline: 0;
	border-radius: 0;
}
#header #search-button:focus {
	outline: 0;
	box-shadow: none;
}
#header #search-button .icon {
	display: block;
	width: 100%;
	margin: 0;
}
#header #search-button .icon:before {
	display: block;
	width: 100%;
	padding: 0;
	font-family: "fontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 20px;
	content: '\f002';
}
#header #search-button .icon:after {
	display: none;
	content: '';
}

/* Placeholder */
#header #search-form .form-control::-webkit-input-placeholder {
	color: #1C1C1B;
	opacity: 1;
}
#header #search-form .form-control:-moz-placeholder {
	color: #1C1C1B;
	opacity: 1;
}
#header #search-form .form-control::-moz-placeholder {
	color: #1C1C1B;
	opacity: 1;
}
#header #search-form .form-control:-ms-input-placeholder {
	color: #1C1C1B;
	opacity: 1;
}


/* -------------------------------------------------------------
   SECTION TABS
------------------------------------------------------------- */

/* General */
#header #section-tabs {
	position: absolute;
	top: 0;
	right: 14px;
	float: right;
	width: auto;
	margin: 0;
}
#header #section-tabs .navbar-nav {
	float: right;
	margin: 0;
}
#header #section-tabs .navbar-nav>li {
	float: left;
	margin: 0;
	padding: 0;
	border: none;
}
#header #section-tabs .navbar-nav>li>a {
	display: block;
	margin: 0;
	padding: 0;
}
#header #section-tabs .navbar-nav>li .icon {
	display: block;
	width: 75px;
	height: 80px;
	margin: 0;
}
#header #section-tabs .navbar-nav>li.active>a {
	background: #0f71b7;
}

/* Descobre */
#header #section-tabs .navbar-nav>li.descobre {
	border-left: 1px solid #DDD;
}
#header #section-tabs .navbar-nav>li.descobre .icon {
	background: url('../images/icon-descobre.svg') no-repeat center center;
}
#header #section-tabs .navbar-nav>li.descobre.active .icon {
	background: url('../images/icon-descobre-active.svg') no-repeat center center;
}

/* Concello */
#header #section-tabs .navbar-nav>li.concello {
	border-right: 1px solid #DDD;
}
#header #section-tabs .navbar-nav>li.concello .icon {
	background: url('../images/icon-concello.svg') no-repeat center center;
}
#header #section-tabs .navbar-nav>li.concello.active .icon {
	background: url('../images/icon-concello-active.svg') no-repeat center center;
}

/* Active */
#header #section-tabs .navbar-nav>li.descobre.active,
#header #section-tabs .navbar-nav>li.concello.active {
	border-color: #0f71b7;
}


/* -------------------------------------------------------------
   SLIDESHOW
------------------------------------------------------------- */

/* General */
#homepage #slideshow {
	width: 100%;
	padding: 0;
}

/* Item */
#homepage .carousel .item {
	background-repeat: norepeat;
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;	
	background-position: center;
}

/* Spacer */
#homepage .carousel .item .spacer {
	width: 100%;
	height: auto;
	margin: 0;
}
#homepage .carousel .item .spacer img {
	display: block;
	width: 100%;
	margin: 0;
}

/* Mobile image */
#homepage .carousel .item .image-small {
	display: none;
}

/* Indicators */
#homepage .carousel .carousel-indicators {
	bottom: 10px;
}
#homepage .carousel .carousel-indicators li {
	width: 12px;
	height: 12px;
}
#homepage .carousel .carousel-indicators .active {
	
}

/* Text container */
#homepage .carousel .text-container {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 50%;
	width: 1170px;
	height: 100%;
	margin-left: -585px;
	padding: 75px 15px;
	text-align: left;
	font: 0/0 a;
}
#homepage .carousel .text-container:before {
	content: " ";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}

/* Article */
#homepage .carousel .text-container article {
	display: inline-block;
	width: auto;
	padding: 15px;
	vertical-align: bottom;
	font: 14px/1 Sans-Serif;
	text-align: left;
	background: rgba(0,0,0,.8);
}
#homepage .carousel .text-container article h2 {
	margin: 0;
	margin-bottom: 10px;
	color: #FFF;
	font-size: 12px;
	font-weight: 300;
	letter-spacing: .5px;
	text-transform: uppercase;
}
#homepage .carousel .text-container article p {
	margin: 0;
	color: #FFF;
	font-size: 17px;
	font-weight: 400;
	letter-spacing: .5px;
}
#homepage .carousel .text-container article a {
	color: #FFF;
}

/* Controls */
#homepage .carousel .carousel-control {
	width: 42px;
	margin: 0;
	text-decoration: none;
	background: none;
}
#homepage .carousel .carousel-control:hover {
	text-decoration: none;
}
#homepage .carousel .carousel-control .icon {
	display: inline-block;
	position: absolute;
	top: 50%;
	z-index: 5;
	width: 42px;
	height: 42px;
	margin: 0;
	margin-top: -21px;
	padding: 0;
	line-height: 40px;
	color: #FFF;
	background: #000;
}
#homepage .carousel-control.left .icon {
	left: 0;
}
#homepage .carousel-control .icon:before {
	display: block;
	width: 100%;
	padding: 0;
	font-family: "fontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 20px;
    color: #FFF;
}
#homepage .carousel-control.left .icon:before {
	content: '\f104';
}
#homepage .carousel-control.right .icon {
	right: 0;
}
#homepage .carousel-control.right .icon:before {
	content: '\f105';
}


/* -------------------------------------------------------------
   HOMEPAGE FEATURES
------------------------------------------------------------- */

/* General */
#homepage.descobre #features {
	margin: 60px auto;
}

/* Heading */
#homepage.descobre #features header {
	display: none;
}

/* Text */
#homepage.descobre #features .list-item .text-container {
	position: absolute;
	bottom: -20px;
	left: 50%;
	width: 242px;
	margin-left: -121px;
	background: rgba(255,255,255,.9);
}
#homepage.descobre #features .list-item .text-container h3,
#homepage.descobre #features .list-item .text-container p {
	padding: 0 15px;
}
#homepage.descobre #features .list-item .text-container h3 {
	font-size: 20px;
}
#homepage.descobre #features .list-item .text-container p {
	margin-bottom: 15px;
	font-size: 14px;
}

/* Button */
#homepage.descobre #features .list-item .btn-default {
	width: 100%;
}


/* -------------------------------------------------------------
   HOMEPAGE FEATURES
------------------------------------------------------------- */

/* General */
#homepage.concello #features {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #0f71b7;
}
#homepage.concello #features .row {
	width: 1140px;
	margin: 0 auto;
	padding: 10px 0;
}
#homepage.concello #features .list-item {
	height: 50px;
	border-left: 1px solid rgba(255,255,255,.4);
}
#homepage.concello #features .list-item:last-child {
	border-right: 1px solid rgba(255,255,255,.4);
}

/* Heading */
#homepage.concello #features header {
	display: none;
}

/* Image */
#homepage.concello #features .list-item .item-image {
	display: block;
	float: left;
	width: 30px; /* 23/09/2019 */
	margin: 0;
	margin-right: 10px;
	overflow: hidden;	
}

/* Text */
#homepage.concello #features .list-item .text-container {
	width: 192px;
	width: 152px;  /* 23/09/2019 */
	padding: 9px 0;
	color: #FFF;
	background: none;
}
#homepage.concello #features .list-item:nth-child(3) .text-container,
#homepage.concello #features .list-item:nth-child(4) .text-container {
	padding-right: 15px;
}
#homepage.concello #features .list-item .text-container h3,
#homepage.concello #features .list-item .text-container p {
	margin: 0;
	padding: 0;
	line-height: 1.1;
}
#homepage.concello #features .list-item .text-container h3 {
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
}
#homepage.concello #features .list-item .text-container p {
	font-size: 12px;
	line-height: 1.1;
}

/* Button */
#homepage.concello #features .list-item .btn-default {
	width: 100%;
}


/* -------------------------------------------------------------
   HOMEPAGE EVENTS
------------------------------------------------------------- */

/* General */
#homepage #events {
	position: relative;
	width: 100%;
	padding: 0;
	padding-bottom: 60px;
	background: #FFF;
}

/* Header */
#homepage #events header {
	position: relative;
	width: 1140px;
	margin: 30px auto;
	text-align: center;
}
#homepage #events header .btn-more {
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -7px;
	padding: 0;
	font-size: 12px;
	letter-spacing: 1px;
	color: #0f71b7;
	text-align: left;
	text-transform: uppercase;
	border-radius: 0;
	border: none;
}

/* Carousel */
#homepage #events .events-carousel {
	position: static;
	width: 1170px;
	margin: 0 auto;
}
#homepage #events .events-carousel .item {
	padding: 0 15px;
	border: none;
}
#homepage #events .events-carousel .item:focus {
	border: none;
	outline: none;
	box-shadow: none;
}

/* .item-image */
#homepage #events .events-carousel .item-image {
	display: block;
	float: left;
	width: 100%;
	margin: 0;
	text-align: center;
	overflow: hidden;
}
#homepage #events .events-carousel .item-image img {
	display: block;
	width: 100%;
	margin: 0;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;	
}
#homepage #events .events-carousel .item a:hover .item-image img {
    -webkit-transform:scale(1.10);
    -moz-transform:scale(1.10);
    -ms-transform:scale(1.10);
    -o-transform:scale(1.10);
     transform:scale(1.10);
}

/* Text */
#homepage #events .events-carousel .item .text-container {
	display: block;
	float: left;
	width: 100%;
	height: 100px;
	margin: 0;
	padding: 10px 15px;
	color: #1d1e1c;
	background: #f2f2f2;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;		
}
#homepage #events .events-carousel .item a:hover .text-container {
	color: #FFF;
	background-color: #1d1e1c;
    -webkit-transform: background-color 1000ms linear;
    -moz-transform: background-color 1000ms linear;
    -ms-transform: background-color 1000ms linear;
    -o-transform: background-color 1000ms linear;
     transform: background-color 1000ms linear;
}
#homepage #events .events-carousel .item .text-container h4 {
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 700;
	letter-spacing: .5px;
}
#homepage #events .events-carousel .item .text-container p {
	margin-top: 10px;
	font-size: 12px;
}
#homepage #events .events-carousel .item .text-container .date:before {
	content: '\f133';
}

/* Arrows */
#homepage #events .events-carousel .slick-prev,
#homepage #events .events-carousel .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    z-index: 10;
    display: block;
    width: 42px;
    height: 42px;
    margin-top: -21px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: #0f71b7;
}
#homepage #events .events-carousel .slick-prev:hover,
#homepage #events .events-carousel .slick-prev:focus,
#homepage #events .events-carousel .slick-next:hover,
#homepage #events .events-carousel .slick-next:focus {
    outline: none;
}
#homepage #events .events-carousel .slick-prev:hover:before,
#homepage #events .events-carousel .slick-prev:focus:before,
#homepage #events .events-carousel .slick-next:hover:before,
#homepage #events .events-carousel .slick-next:focus:before {
    opacity: 1;
}
#homepage #events .events-carousel .slick-prev.slick-disabled:before,
#homepage #events .events-carousel .slick-next.slick-disabled:before {
    opacity: .25;
}
#homepage #events .events-carousel .slick-prev:before,
#homepage #events .events-carousel .slick-next:before {
	display: block;
	width: 100%;
	padding: 0;
	font-family: "fontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 20px;
    opacity: .75;
    color: #FFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;	
}
#homepage #events .events-carousel .slick-prev {
    left: 0;
}
[dir='rtl'] #homepage #events .events-carousel .slick-prev {
    right: 0;
    left: auto;
}
#homepage #events .events-carousel .slick-prev:before {
    content: '\f104';
}
[dir='rtl'] #homepage #events .events-carousel .slick-prev:before {
    content: '\f105';
}
#homepage #events .events-carousel .slick-next {
    right: 0;
}
[dir='rtl'] #homepage #events .events-carousel .slick-next {
    right: auto;
    left: 0;
}
#homepage #events .events-carousel .slick-next:before {
    content: '\f105';
}
[dir='rtl'] #homepage #events .events-carousel .slick-next:before {
    content: '\f104';
}


/* -------------------------------------------------------------
   HOMEPAGE NEWS
------------------------------------------------------------- */

/* General */
#homepage #news {
	position: relative;
	padding-top: 10px;
	padding-bottom: 40px;
}
#homepage #news .row {
	margin-left: -10px;
	margin-right: -10px;
}

/* Header */
#homepage #news header {
	position: relative;
	width: 100%;
	margin: 0 0 30px;
	text-align: center;
}
#homepage #news header h3 {
}
#homepage #news header .btn-more {
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -7px;
	padding: 0;
	font-size: 12px;
	letter-spacing: 1px;
	color: #0f71b7;
	text-align: left;
	text-transform: uppercase;
	border-radius: 0;
	border: none;
}


/* -------------------------------------------------------------
   HOMEPAGE BANNERS
------------------------------------------------------------- */

/* General */
#homepage #home-banners {
	position: relative;
	width: 100%;
	margin: 45px 0 15px;
	padding: 0;
	background: none;
}

/* Carousel */
#homepage #home-banners .banners-carousel {
	position: static;
	width: 1160px;
	margin: 0 auto;
}
#homepage #home-banners .banners-carousel .item {
	padding: 0 15px;
	border: none;
}
#homepage #home-banners .banners-carousel .item a {
	display: block;
	position: relative;
	width: 100%;
	margin: 0;
	background: #FFF;	
}
#homepage #home-banners .banners-carousel .item:focus {
	border: none;
	outline: none;
	box-shadow: none;
}

/* .item-image */
#homepage #home-banners .banners-carousel .item img {
	display: block;
	width: 100%;
	margin: 0;
}

/* Arrows */
#homepage #home-banners .banners-carousel .slick-prev,
#homepage #home-banners .banners-carousel .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    z-index: 10;
    display: block;
    width: 42px;
    height: 42px;
    margin-top: -21px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: #0f71b7;
}
#homepage #home-banners .banners-carousel .slick-prev:hover,
#homepage #home-banners .banners-carousel .slick-prev:focus,
#homepage #home-banners .banners-carousel .slick-next:hover,
#homepage #home-banners .banners-carousel .slick-next:focus {
    outline: none;
}
#homepage #home-banners .banners-carousel .slick-prev:hover:before,
#homepage #home-banners .banners-carousel .slick-prev:focus:before,
#homepage #home-banners .banners-carousel .slick-next:hover:before,
#homepage #home-banners .banners-carousel .slick-next:focus:before {
    opacity: 1;
}
#homepage #home-banners .banners-carousel .slick-prev.slick-disabled:before,
#homepage #home-banners .banners-carousel .slick-next.slick-disabled:before {
    opacity: .25;
}
#homepage #home-banners .banners-carousel .slick-prev:before,
#homepage #home-banners .banners-carousel .slick-next:before {
	display: block;
	width: 100%;
	padding: 0;
	font-family: "fontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 20px;
    opacity: .75;
    color: #FFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;	
}
#homepage #home-banners .banners-carousel .slick-prev {
    left: 0;
}
[dir='rtl'] #homepage #home-banners .banners-carousel .slick-prev {
    right: 0;
    left: auto;
}
#homepage #home-banners .banners-carousel .slick-prev:before {
    content: '\f104';
}
[dir='rtl'] #homepage #home-banners .banners-carousel .slick-prev:before {
    content: '\f105';
}
#homepage #home-banners .banners-carousel .slick-next {
    right: 0;
}
[dir='rtl'] #homepage #home-banners .banners-carousel .slick-next {
    right: auto;
    left: 0;
}
#homepage #home-banners .banners-carousel .slick-next:before {
    content: '\f105';
}
[dir='rtl'] #homepage #home-banners .banners-carousel .slick-next:before {
    content: '\f104';
}


/* -------------------------------------------------------------
   NEWS LISTING
------------------------------------------------------------- */

/* General */
#news #main-content {
	width: 100%;
	padding: 0 0 60px !important;
}
#news .content-wrapper>.row {
	margin-left: -15px;
	margin-right: -15px;
}

/* Item */
#news .list-item {
	width: 33.33333333%;
	margin-bottom: 30px;
	padding: 0 15px;
}
#news .list-item:nth-child(3n+1) {
	clear: left;
}

/* .item-image */
#news .item-image img {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;	
}
#news .list-item a:hover .item-image img {
    -webkit-transform:scale(1.10);
    -moz-transform:scale(1.10);
    -ms-transform:scale(1.10);
    -o-transform:scale(1.10);
     transform:scale(1.10);
}

/* Text */
#news .list-item a .text-container {
	height: 140px;
	padding: 10px 15px;
	background-color: #FFF;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;		
}
#news .list-item a:hover .text-container {
	color: #FFF;
	background-color: #1d1e1c;
    -webkit-transform: background-color 1000ms linear;
    -moz-transform: background-color 1000ms linear;
    -ms-transform: background-color 1000ms linear;
    -o-transform: background-color 1000ms linear;
     transform: background-color 1000ms linear;
}
#news .list-item .text-container p {
	margin-bottom: 10px;
}


/* -------------------------------------------------------------
   NEWS INTERIOR
------------------------------------------------------------- */

/* header */
#news .freetext .page-header h1 {
	margin-top: 20px;
}


/* -------------------------------------------------------------
   EVENTS LISTING
------------------------------------------------------------- */

/* General */
#events #main-content {
	width: 100%;
	padding: 0 0 60px !important;
}
#events .content-wrapper {
}
#events .content-wrapper>.row {
	margin-left: -15px;
	margin-right: -15px;
}

/* Item */
#events .list-item {
	width: 33.33333333%;
	margin-bottom: 30px;
	padding: 0 15px;
}
#events .list-item:nth-child(3n+1) {
	clear: left;
}

/* .item-image */
#events .item-image img {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;	
}
#events .list-item a:hover .item-image img {
    -webkit-transform:scale(1.10);
    -moz-transform:scale(1.10);
    -ms-transform:scale(1.10);
    -o-transform:scale(1.10);
     transform:scale(1.10);
}

/* Text */
#events .list-item a .text-container {
	height: 110px;
	padding: 10px 15px;
	background-color: #FFF;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;		
}
#events .list-item a:hover .text-container {
	color: #FFF;
	background-color: #1d1e1c;
    -webkit-transform: background-color 1000ms linear;
    -moz-transform: background-color 1000ms linear;
    -ms-transform: background-color 1000ms linear;
    -o-transform: background-color 1000ms linear;
     transform: background-color 1000ms linear;
}
#events .list-item .text-container p {
	margin-top: 10px;
}


/* -------------------------------------------------------------
   EVENTS INTERIOR
------------------------------------------------------------- */

/* header */
#events .freetext .page-header h1 {
	margin-top: 20px;
}


/* -------------------------------------------------------------
   TABS
------------------------------------------------------------- */

/* Nav tabs */
.nav-tabs {
}
.nav-tabs>li {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .5px;
	text-transform: uppercase;
}
.nav-tabs>li>a {
	color: #FFF;
	padding: 12px 30px;
	background-color: #0f71b7;
	border-radius: 0;
}
.nav-tabs>li>a:hover {
	background-color: #0f71b7;
}
.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
	color: #1d1e1c;
	background-color: #FFF;
}

/* Nav content */
.tab-content {
	padding: 30px;
	padding-bottom: 20px;
	border: 1px solid #DDD;
	border-top: none;
	background: #FFF;
}


/* -------------------------------------------------------------
   COLLAPSE PANELS
------------------------------------------------------------- */

/* General */
.panel-group {
	border-radius: 0;
}

/* Panel */
.panel-group .panel {
	border-radius: 0;
	border: none;
	box-shadow: none;
}
.panel-group .panel+.panel {
	margin-top: 10px;
}

/* Panel heading */
.panel-default>.panel-heading {
	color: #FFF;
	padding: 0;
	border: none;
	background: #0f71b7;
	border-radius: 0;
}
.panel-title {
	font-size: 14px;
	color: #FFF;
	font-weight: 400;
	letter-spacing: .5px;
	text-transform: uppercase;
	text-decoration: none;
	border: none;
}
.panel-title>a,
.panel-title>a:hover,
.panel-title>a:focus {
	display: block;
	padding: 18px 30px 16px;
	color: #FFF;
	text-decoration: none;
}

/* Panel body */
.panel-body {
	padding: 15px 30px;
	border: 1px solid #DDD !important;
	border-top: none !important;
}


/* -------------------------------------------------------------
   PROFILES
------------------------------------------------------------- */

/* General */
#profiles #main-content {
	width: 100%;
	padding: 0 30px 60px !important;
}

/* Item */
#profiles .list-item {
	width: 33.33333333%;
	margin: 15px 0;
}
#profiles .list-item:nth-child(3n+1) {
	clear: left;
}

/* Text */
#profiles .list-item .text-container {
	position: relative;
	padding: 15px 0;
	background: none;
}
#profiles .list-item .text-container h2 {
	font-size: 15px;
	line-height: 1.2;
}
#profiles .list-item .text-container p {
	margin-top: 5px;
	font-size: 14px;
	line-height: 1.2;
	font-style: italic;
}
#profiles .list-item .text-container p:last-child {
	font-weight: 400;
	font-style: normal;
}
#profiles .list-item .text-container .contact-button {
	display: inline-block;
	position: absolute;
	top: -48px;
	right: 5px;
	width: auto;
	margin-top: 15px;
	padding: 5px 10px;
	letter-spacing: 0;
	text-transform: none;
}

/* Header */
#profiles header.page-sub-header {
	float: left;
	width: 100%;
	margin: 0 0 20px;
	padding: 10px 15px;
	background: #FFF;
}
#profiles header.page-sub-header h2 {
	float: left;
	margin: 0;
	line-height: 42px;
}
#profiles header.page-sub-header img {
	display: block;
	float: left;
	width: auto;
	margin: 0;
	margin-right: 15px;
}
#profiles .content-wrapper .row {
	margin-bottom: 60px;
}
#profiles .content-wrapper .row:last-child {
	margin-bottom: 0;
}


/* -------------------------------------------------------------
   CONTACT
------------------------------------------------------------- */

/* General */
#contact #main-content {
	width: 100%;
	padding: 0;
	text-align: center;
}
#contact #main-content .content-wrapper {
	width: 720px;
	margin: 0 auto;
}

/* Page header */
#contact .page-header {
	width: 100%;
	margin: 45px 0;
	text-align: center;
}
#contact .page-header h1 {
	text-align: center;
}

/* Typography */
#contact h2 {
	margin: 0 0 30px;
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
}
#contact p {
	margin: 0;
}
#contact p.required {
	text-align: right;
}

/* Contact form */
.contact-form {
	width: 100%;
	margin: 15px 0 60px;
}
.contact-form .form-group {
	margin: 0;
	margin-bottom: 10px;
	padding: 10px 0;
	background: #FFF;
}
.contact-form .form-check {
	visibility: hidden;
	display: none;
}
.contact-form .form-group.form-buttons {
	padding: 0;
	padding-top: 15px;
	text-align: center;
	background: none;
}
.contact-form .form-buttons .btn-default {
	padding-left: 30px;
	padding-right: 30px;
}
.contact-form .control-label {
	position: relative;
	float: left;
	width: 20%;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
	text-align: left;
}
.contact-form .required .control-label:after {
	display: inline-block;
	margin-left: 5px;
	content: '*'
}
.contact-form .input-container {
	position: relative;
	float: left;
	width: 80%;
	min-height: 1px;
	padding-right: 15px;	
}
.contact-form .form-control {
	width: 100%;
	max-width: 100%;
	text-align: left;
	border: none;
	border-left: 1px solid #DDD;
	background: none;
	border-radius: 0;
	box-shadow: none;
}
#contact .select2-container--default .select2-selection--single {
	height: 34px;
	text-align: left;
	border: none;
	border-left: 1px solid #DDD;
	border-radius: 0;
}
#contact .select2-container--default .select2-selection--single:focus {
	box-shadow: none;
	outline: none;
	border: 0;
	border-left: 1px solid #DDD;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 34px !important;
	color: #1d1e1c !important;
}
#contact .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 34px;
}
.select2-dropdown {
	border: 1px solid #DDD !important;
	border-radius: 0 !important;
}
.select2-dropdown li {
	font-size: 14px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background: #0f71b7 !important;
}

/* Contact details */
#contact-details {
	width: 100%;
	padding: 60px 0;
	text-align: center;
	background: #FFF;
}
#contact-details h2 {
	margin: 0 0 30px;
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
}
#contact-details p {
	text-align: center !important;
}

#contact-details ul {
	width: 600px;
	margin: 30px auto 0;
	padding: 0;
	text-align: left;
	list-style: none;
}
#contact-details li {
	margin: 0;
	margin-bottom: 10px;
	padding: 0;
	line-height: 42px;
	background: #F2F2F2;
}
#contact-details li:before {
	display: inline-block;
	width: 42px;
	height: 42px;
	margin-right: 15px;
	font-family: "fontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 18px;
	text-align: center;
	content: '\f105';
	color: #FFF;
	background: #0f71b7;
}
#contact-details .address:before {
	content: '\f041';
}
#contact-details .telephone:before {
	content: '\f095';
}
#contact-details .email:before {
	content: '\f0e0';
}
#contact-details .department {
	text-align: left;
	border: none;
}	

/* Google map */
#google-map {
	width: 100%;
	margin: 0;
	padding: 0;
}
#google-map>.content-wrapper {
	width: 100%;
	height: 480px;
	margin: 0;
	padding: 0;
	background: #CCC;
}
#google-map iframe {
	width: 100%;
	height: 480px;
}


/* -------------------------------------------------------------
   SVG MAP
------------------------------------------------------------- */

/* Container */
.svg-container {
	display: block;
	margin: 60px 0;
	padding: 0;
}
.svg-container svg a {
	cursor: pointer;
}
.svg-container svg polygon {
	fill: #CCC;
}
.svg-container svg a polygon {
	fill: #0f71b7;
}
.svg-container svg a:hover polygon {
	fill: #055a97;
}

/* Tooltip */
.svg-container .tooltip > .tooltip-inner {
	background-color: #055a97;
}
.svg-container .tooltip.top .tooltip-arrow {
	border-top-color: #055a97;
}

/* Modal */
.modal-parcela .modal-body>.row {
	margin: 0;
}
.modal-parcela .company-image,
.modal-parcela .company-details {
	position: relative;
	float: left;
	min-height: 1px;
	margin: 0;
	padding: 0;
}
.modal-parcela .company-image {
	width: 41.66666667%;
	padding-right: 30px;
}
.modal-parcela .company-image figure {
	padding: 0;
}
.modal-parcela .company-image img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
}
.modal-parcela .company-details {
	width: 58.33333333%;
}
.modal-parcela .company-details h5 {
	font-size: 16px;
	letter-spacing: 0;
	font-weight: 700;
}
.modal-parcela .company-details p,
.modal-parcela .company-details li {
	font-size: 14px;
}
.modal-parcela .company-details ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.modal-parcela .company-details li {
	margin: 0;
}

/* Collapse */
#poligono-parcelas {
	display: none;
	visibility: hidden;
}


/* -------------------------------------------------------------
   MODAL
------------------------------------------------------------- */

/* General */
.modal {
	padding: 0 30px 0 15px;
}
/*.modal-dialog {
	width: 100% !important;
	max-width: 800px !important;
}*/

/* Header */
.modal-header {
	padding: 15px 30px;
}
.modal-title {
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.2;
}
.modal-body {
	padding: 30px;
}


/* -------------------------------------------------------------
   MAPA DESORDES
------------------------------------------------------------- */

/* General */
#google-map .i4ewOd-pzNkMb-haAclf {
	background-color: #0f71b7 !important;
}


/* -------------------------------------------------------------
   LISTADO 2 / 3 COLUMNAS
------------------------------------------------------------- */

/* General */
#listado-2columnas #main-content,
#listado-3columnas #main-content {
	width: 100%;
	padding: 0 0 60px !important;
}
#listado-2columnas .content-wrapper>.row {
	margin-left: -15px;
	margin-right: -15px;
}
#listado-3columnas .content-wrapper>.row {
	margin-left: -10px;
	margin-right: -10px;
}

/* Item */
#listado-2columnas .list-item {
	width: 50%;
	margin-bottom: 30px;
	padding: 0 15px;
}
#listado-3columnas .list-item {
	width: 33.33333333%;
	margin-bottom: 20px;
	padding: 0 10px;
}
#listado-2columnas .list-item:nth-child(2n+1) {
	clear: left;
}
#listado-3columnas .list-item:nth-child(3n+1) {
	clear: left;
}
#listado-2columnas .list-item>.inner-wrapper,
#listado-3columnas .list-item>.inner-wrapper {
	display: block;
	position: relative;
	float: left;
	width: 100%;
	margin: 0;
	background: #FFF;
}

/* .item-image */
#listado-2columnas .item-image {
	float: left;
	width: 33.33333333%;
}

/* Text */
#listado-2columnas .list-item .text-container,
#listado-3columnas .list-item .text-container {
	float: left;
	width: 66.66666667%;
	height: auto;
	padding: 10px 15px;
	background: none;	
}
#listado-3columnas .list-item .text-container {
	padding-right: 32px;
}
#listado-3columnas .list-item .text-container {
	width: 100%;
}
#listado-2columnas .list-item .text-container h2,
#listado-3columnas .list-item .text-container h2 {
	margin-bottom: 5px;
	font-size: 15px;
}
#listado-2columnas .list-item .text-container ul,
#listado-3columnas .list-item .text-container ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#listado-2columnas .list-item .text-container li,
#listado-3columnas .list-item .text-container li {
	margin: 0;
	margin-bottom: 5px;
	font-size: 13px;
	line-height: 1.2;
}
#listado-2columnas .list-item .text-container li>a,
#listado-3columnas .list-item .text-container li>a {
	display: inline;
	color: #0f71b7;
}
#listado-2columnas .list-item .text-container .telephone:before,
#listado-3columnas .list-item .text-container .telephone:before,
#listado-2columnas .list-item .text-container .email:before,
#listado-3columnas .list-item .text-container .email:before,
#listado-2columnas .list-item .text-container .web:before,
#listado-3columnas .list-item .text-container .web:before,
#listado-2columnas .list-item .text-container .fax:before,
#listado-3columnas .list-item .text-container .fax:before,
#listado-2columnas .list-item .text-container .localizacion:before,
#listado-3columnas .list-item .text-container .localizacion:before,
#listado-2columnas .list-item .text-container .file:before,
#listado-3columnas .list-item .text-container .file:before,
#listado-2columnas .list-item .text-container .horario:before,
#listado-3columnas .list-item .text-container .horario:before,
#listado-2columnas .list-item .text-container .poboacion:before,
#listado-3columnas .list-item .text-container .poboacion:before,
#listado-2columnas .list-item .text-container .superficie:before,
#listado-3columnas .list-item .text-container .superficie:before,
#listado-2columnas .list-item .text-container .fecha:before,
#listado-3columnas .list-item .text-container .fecha:before {
	display: inline-block;
	margin-right: 10px;
	font-family: "fontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
	text-align: center;
	content: '\f095';	
}
#listado-2columnas .list-item .text-container .email:before,
#listado-3columnas .list-item .text-container .email:before {
	content: '\f0e0';	
}
#listado-2columnas .list-item .text-container .web:before,
#listado-3columnas .list-item .text-container .web:before {
	content: '\f0ac';	
}
#listado-2columnas .list-item .text-container .fax:before,
#listado-3columnas .list-item .text-container .fax:before {
        content: '\f1ac';
}
#listado-2columnas .list-item .text-container .localizacion:before,
#listado-3columnas .list-item .text-container .localizacion:before {
        content: '\f041';
}
#listado-2columnas .list-item .text-container .file:before,
#listado-3columnas .list-item .text-container .file:before {
        content: '\f0c7';
}
#listado-2columnas .list-item .text-container .horario:before,
#listado-3columnas .list-item .text-container .horario:before {
        content: '\f017';
}
#listado-2columnas .list-item .text-container .poboacion:before,
#listado-3columnas .list-item .text-container .poboacion:before {
        content: '\f0c0';
}
#listado-2columnas .list-item .text-container .superficie:before,
#listado-3columnas .list-item .text-container .superficie:before {
        content: '\f278';
}
#listado-2columnas .list-item .text-container .fecha:before,
#listado-3columnas .list-item .text-container .fecha:before {
        content: '\f073';
}
#listado-2columnas .list-item a.more,
#listado-3columnas .list-item a.more {
	position: absolute;
	bottom: 1px;
	right: 1px;
	margin: 0;
	text-indent: -999px;
	font-size: 0;
}
#listado-2columnas .list-item a.more:hover,
#listado-3columnas .list-item a.more:hover {
	text-decoration: none;
}
#listado-2columnas .list-item .more:before,
#listado-3columnas .list-item .more:before {
	display: block;
	width: 32px;
	line-height: 32px;
	margin: 0;	
	font-family: "fontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 12px;
	text-indent: 0px;
	text-align: center;
	content: '\f067';
	color: #FFF;
	background: #0f71b7;
}


/* -------------------------------------------------------------
   NEWS INTERIOR
------------------------------------------------------------- */

/* header */
#restaurantes .freetext .page-header h1 {
	margin-top: 25px;
}



/* -------------------------------------------------------------
   CATEGORISED DOWNLOADS
------------------------------------------------------------- */

/* General */
#downloads .downloads {
	float: left;
	width: 100%;
	margin: 15px 0 0;
	padding: 0;
	padding-left: 25px;
}
#downloads .downloads li {
	position: relative;
	float: left;
	width: 50%;
	min-height: 1px;
	margin: 0;
	margin-bottom: 15px;
	padding-right: 45px;
	line-height: 1.2em;
	list-style: none;
}
#downloads .downloads li:nth-child(2n+1) {
	clear: left;
}

/* List icons */
#downloads .downloads li:before {
	display: inline-block;
	margin: 0;
	margin-left: -25px;
	margin-right: 12px;
	font-family: "fontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
	vertical-align: 0;
	content: '\f016';
}


/* -------------------------------------------------------------
   FOOTER
------------------------------------------------------------- */

/* General */
#footer {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50px;
	margin: 0;
	border-top: 1px solid #f2f2f2;
	background: #FFF;
}

/* Footer links */
#footer .footer-links {
	display: block;
	width: 100%;
	height: 50px;
	margin: 0;
	overflow: hidden;
}
#footer .footer-links ul {
	float: right;
	margin: 0;
	padding: 0;
}
#footer .footer-links li {
	display: inline;
	margin-left: 10px;
	font-size: 11px;
	font-weight: 300;
	line-height: 52px;
	color: #888;
	text-transform: uppercase;
}
#footer .footer-links li a {
	color: #888;
}

/* Footer logo */
#footer .footer-links .footer-logo {
	float: left;
	width: auto;
	margin: 8px 0;	
	margin: 0;
}
#footer .footer-links .footer-logo a {
	float: left;
	width: 80px;
	margin: 0 15px;
	padding: 8px 0;
}
#footer .footer-links .footer-logo a:first-child {
	width: 80px;
	padding: 11px 0;
}

#footer .footer-links .footer-logo img {
	display: block;
	width: 100%;
	margin: 0;
}
