/* Variables
---------------------------------------- */
:root {
  --primary: #B90000;
  --secondary: #606062;
  --dark: #000000;
  --light: #f4f4f4;
  --border: #dddddd;

  --color-text: #444444;
  --color-heading: #111111;
}

/* HTML and Body
---------------------------------------- */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  width: 100%;
  height: auto;
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7em;
  color: var(--color-text);
  overflow-x: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

.site-page .node-content {
    width: 100% !important;
    margin: 30px auto;
}

/* Regions
---------------------------------------- */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}
summary {
  display: list-item;
  cursor: pointer;
}
details {
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}
template,
[hidden] {
  display: none;
}

/* Typography
---------------------------------------- */
h1, h2 {
	font-family: 'Marcellus SC', serif;
    font-weight: 400;
	color: #B90000;
}
h3,
h4,
h5,
h6 {
  font-family: 'Lato', sans-serif;
  color: var(--color-heading);
  font-weight: 600;
  font-style: normal;
  line-height: 1.7;
  text-transform: uppercase;
  margin: 0;
}

h1 {
	font-size: calc(30px + (50 - 30)*(100vw - 300px)/(1000 - 300));
	line-height: 1.2em;
	text-align: center;
}

/* Línea debajo */
h1::after {
    content: "";
    width: 100px;
    height: 3px;
    background: #B90000;
    display: flex;
	margin: 20px auto;
    /*margin-left: 50%;
    transform: translateX(-50%);*/
}

h2 {
  font-size: calc(24px + (36 - 24)*(100vw - 300px)/(1000 - 300));
}
h3 {
  font-size: calc(20px + (28 - 20)*(100vw - 300px)/(1000 - 300));
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 16px;
}

/* Subrayado animado 
h2 a, h3 a, h4 a, .sidebar li a, a.linea {
	color: #009D08;
    background: linear-gradient(to right, rgba(250, 250, 250, 0), rgba(250, 250, 250, 0)), linear-gradient(to right, rgba(80, 80, 0, 1), rgba(80, 80, 0, 1));
    background-size: 100% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 800ms;
}
h2 a:hover, h3 a:hover, h4 a:hover, .sidebar li a:hover, a.linea:hover,
h2 a:focus, h3 a:focus, h4 a:focus, .sidebar li a:focus, a.linea:focus {
	background-size: 0 1px, 100% 1px;
	color: #006a08;
}*/

p { margin: 0 0 1.2rem 0; }
b, strong { font-weight: bolder; }
dfn, cite { font-style: italic; }
del { text-decoration: line-through; }
small { font-size: 80%; }
big { font-size: 125%; }
a { background-color: transparent; text-decoration: none; color: #009D08; }
a:active, a:focus { text-decoration: none; border: 0; outline: 0; #006a08; }
a:hover { color: #006a08; }

/* Typography-> code tags */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1rem;
}
kbd,
samp {
  display: inline-block;
  margin: 0;
  padding: 0 5px;
}
pre {
  overflow: auto;
  margin: 1rem 0;
  padding: 1rem;
  tab-size: 2;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
tt,
var {
  font-family: monospace, monospace;
  font-style: italic;
}
mark {
  background: var(--primary);
}
acronym[title], abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
abbr,
acronym {
  cursor: help;
}

/* Media
---------------------------------------- */
audio,
canvas,
progress,
video {
  vertical-align: baseline;
  max-width:100%;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
img,
a img {
    /*width: 100%;*/
    max-width: 80%;
    height: auto !important;
    margin: 0;
    padding: 0;
    border: 0;
    border-style: none;
    vertical-align: middle;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border: 0;
}
.align-left {
  margin: 0 1rem 0 0;
}
.align-right {
  margin: 0 0 0 1rem;
}
.align-center {
  margin-top: 0;
  margin-bottom: 0;
}
figcaption {
  padding: 4px;
  font-size: 0.8rem;
  text-align: center;
}
.image-field {
  margin: 0;
}

@media (max-width: 480px) { 
img.align-left, img.align-right { float: none; }
}

/* BUTTON */
.button {
  margin: 10px;
  padding: 12px 18px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: #606062;
  border-radius: 30px;
  display: block;
  border: 1px solid #606062;
  font-weight: 700;
  box-shadow: 0px 0px 14px -7px #f09819;
  /*background-image: linear-gradient(45deg, #FF512F 0%, #F09819  51%, #FF512F  100%);*/
  background: transparent;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
.button:hover {
  background-position: right center;
  /* change the direction of the change here */
  text-decoration: none;
  background: var(--primary);
  color: #fff;
  border: 0;
}
.button:active {
  transform: scale(0.95);
}

/* Form
---------------------------------------- */
form {
  margin-bottom: 1rem;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.7;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
.button {
  display:inline-block;
}
.button,
button,
[type="button"],
[type="reset"],
[type="submit"] {
  position: relative;
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 0;
}
button[disabled],
html input[disabled] {
  cursor: not-allowed;
  opacity: 0.7;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
input {
  line-height: normal;
}
input,
textarea {
  max-width: 100%;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  padding: 10px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  outline: 0;
}
textarea {
  width: 100%;
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  padding: 0;
  cursor: pointer;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
[type="file"] {
  cursor: pointer;
}
fieldset {
  margin: 0 0 20px 0;
  padding: 1rem;
}
fieldset > :last-child {
  margin-bottom: 0;
}
legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
optgroup {
  font-weight: bold;
}
select {
  padding: 6px;
  cursor: pointer;
}
label[for] {
  cursor: pointer;
}
/* Form */
.form-item {
  margin-bottom: 1rem;
}
.form-required:after {
  content: "*";
  display: inline-block;
  padding-left: 4px;
  color: red;
}
.form-item label {
  display: block;
}
label.option {
  display: inline;
  font-weight: normal;
}
::-webkit-input-placeholder {
  color: var(--border);
}
:-moz-placeholder {
  color: var(--border);
}
::-moz-placeholder {
  color: var(--border);
  opacity: 1;
}
:-ms-input-placeholder {
  color: var(--border);
}
.field--name-body input[type="text"],
.field--name-body input[type="email"],
.field--name-body input[type="url"],
.field--name-body input[type="password"],
.field--name-body input[type="search"],
.field--name-body textarea {
  display: block;
  margin-bottom: 0.8rem;
}
/* Common HTML Elements
---------------------------------------- */
hr {
  background-color: var(--border);
  clear: both;
  width: 100%;
  max-width: 100%;
  height: 2px;
  border: 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  overflow: visible;
}
address {
  margin: 0 0 1rem 0;
  font-style: italic;
}
/* Definition Lists */
dt {
  font-weight: 700;
}
dd {
  margin: 0 0 1.2rem 0;
}
blockquote {
  position: relative;
  background-color: var(--light);
  margin: 1rem 0;
  padding: 1rem;
}
blockquote > :last-child {
  margin-bottom: 0;
}

/* List
---------------------------------------- */
 ul,
 ol {
   margin: 0;
   padding: 0 0 0.25rem 1rem;
 }
 [dir="rtl"] ul,
 [dir="rtl"] ol {
   padding: 0 1rem 0.25rem 0;
 }
 ol ol,
 ul ul {
   margin: 0;
   padding: 0 0 0.25rem 1rem;
 }
 [dir="rtl"] ol ol,
 [dir="rtl"] ul ul {
   padding: 0 1rem 0.25rem 0;
 }
 ul { list-style: disc; }
 li > ul,
 li > ol {
   margin-bottom: 0;
 }
 [dir="rtl"] ul,
 [dir="rtl"] ol {
   padding: 0 1rem 0.25rem 0;
 }
 li { padding: 4px 0; }

/* Table
---------------------------------------- */
table {
  width: 100%;
  margin-bottom: 1.2rem;
  border-spacing: 0;
  border-collapse: collapse;
}
th, tr, td { vertical-align: middle; }
th {
  margin: 0;
  padding: 5px;
  text-align: left;
}
td { padding: 5px; }

/* Default box sizing.
---------------------------------------- */
*,
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:after,
*::after,
*:before,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


/* ICONX */
ion-icon {
  font-size: 48px;
  color: #000;
  --ionicon-stroke-width: 16px; /* Solo outlines */
}
.iconx:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: linear-gradient(120deg, #eaee44, #33d0ff); */
  background-color: rgba(78, 61, 69, 0.2);
  opacity: 1;
}
.iconx > * { z-index: 100; }
.iconx {
  position: relative;
  height:90px;
  width:90px;
  clip-path: circle(50% at 50% 50%);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.iconx:hover {
	height:94px;
	width:94px;
	background-color: rgba(78, 61, 69, 0.7);
}
.iconx:hover ion-icon { color: #fff; }


/* FLEXSLIDER CONTENIDO */
.slider-wrapp { 
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	gap: 0;
 }
.slider-item { width: 50%; }
.slider-item h2 {
    font-size: calc(50px + (60 - 50) * (100vw - 780px) / (1000 - 780));
	line-height: inherit;
    font-weight: bold;
	margin: 16px 0;
}
.slider-item h3 {
    font-size: calc(22px + (24 - 22) * (100vw - 780px) / (1000 - 780));
	line-height: 2em;
    font-weight: bold;
	margin: 16px 0;
}
.slider-item.item1 {}
.slider-item.item2 { 
	padding-left: 30px; 
	color: #fff; 
	display: flex;
	/*justify-content: center;*/
	align-items: center; 
}

@media (max-width: 779px) {
	.slider-wrapp { display: flex; flex-flow: column; }
	.slider-item { width: 100%; }
	.slider-item h2 { font-size: calc(40px + (60 - 40) * (100vw - 300px) / (779 - 300)); }
	.slider-item h3 { font-size: calc(16px + (30 - 16) * (100vw - 300px) / (779 - 300)); }
}


/* SIDEBAR */
@media (max-width: 880px) { #sidebar-right { display: none; }}


.region-content-top {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.region-content-top h2 {
	font-size: 1.5em;
}
#block-bloque1home,
#block-bloque2home,
#block-bloque3home { flex-basis: 30%; }

#block-bloque1home p,
#block-bloque2home p,
#block-bloque3home p {
    font-size: 1.05rem;
    line-height: 1.7em;
}

@media (max-width: 780px) {
  .region-content-top { flex-flow: column wrap; }
}

/** Hover Effects with CSS3 **/
.vista {
   width: 230px;
   height: 230px;
   margin: 2px;
   display: inline-block;
   border: 10px solid #fff;
   overflow: hidden;
   position: relative;
   text-align: center;
   -webkit-box-shadow: 1px 1px 2px #000;
   -moz-box-shadow: 1px 1px 2px #000;
   box-shadow: 1px 1px 2px #000;
   cursor: default;
}
.vista .mask,.vista .content {
   /*width: 230px;*/
   height: 230px;
   position: absolute;
   overflow: hidden;
   top: 0;
   left: 0;
}
.vista img {
   display: block;
   position: relative;
}
.vista h3 {
   text-transform: uppercase;
   color: #fff;
   text-align: center;
   position: relative;
   font-size: 17px;
   padding: 10px;
   background: rgba(0, 0, 0, 0.8);
   margin: 76px 0 0 0;
}
.vista p {
   font-family: Georgia, serif;
   font-style: italic;
   font-size: 12px;
   position: relative;
   color: #fff;
   padding: 10px 20px 20px;
   text-align: center;
}
.vista a.info {
   display: inline-block;
   text-decoration: none;
   padding: 7px 0;
   background: #000;
   color: #fff;
   text-transform: uppercase;
   -webkit-box-shadow: 0 0 1px #000;
   -moz-box-shadow: 0 0 1px #000;
   box-shadow: 0 0 1px #000;
}
.vista a.info: hover {
   -webkit-box-shadow: 0 0 5px #000;
   -moz-box-shadow: 0 0 5px #000;
   box-shadow: 0 0 5px #000;
}
.vista.view-first img {
   -webkit-transition: all 0.2s linear;
   -moz-transition: all 0.2s linear;
   -o-transition: all 0.2s linear;
   -ms-transition: all 0.2s linear;
   transition: all 0.2s linear;
}
.vista.view-first .mask {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
   background-color: rgba(219,127,8, 0.7);
   -webkit-transition: all 0.4s ease-in-out;
   -moz-transition: all 0.4s ease-in-out;
   -o-transition: all 0.4s ease-in-out;
   -ms-transition: all 0.4s ease-in-out;
   transition: all 0.4s ease-in-out;
   position: absolute;
   top: 0;
   z-index: 90;
}
.vista.view-first h3 {
   -webkit-transform: translateY(-100px);
   -moz-transform: translateY(-100px);
   -o-transform: translateY(-100px);
   -ms-transform: translateY(-100px);
   transform: translateY(-100px);
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
   -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
}
.vista.view-first p {
   -webkit-transform: translateY(100px);
   -moz-transform: translateY(100px);
   -o-transform: translateY(100px);
   -ms-transform: translateY(100px);
   transform: translateY(100px);
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
   -webkit-transition: all 0.2s linear;
   -moz-transition: all 0.2s linear;
   -o-transition: all 0.2s linear;
   -ms-transition: all 0.2s linear;
   transition: all 0.2s linear;
}
.vista.view-first:hover img {
   -webkit-transform: scale(1.1,1.1);
   -moz-transform: scale(1.1,1.1);
   -o-transform: scale(1.1,1.1);
   -ms-transform: scale(1.1,1.1);
   transform: scale(1.1,1.1);
}
.vista.view-first a.info {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
   -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
}
.vista.view-first:hover .mask {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1;
}
.vista.view-first:hover h3,
.vista.view-first:hover p,
.vista.view-first:hover a.info {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1;
   -webkit-transform: translateY(0px);
   -moz-transform: translateY(0px);
   -o-transform: translateY(0px);
   -ms-transform: translateY(0px);
   transform: translateY(0px);
}
.vista.view-first:hover p {
   -webkit-transition-delay: 0.1s;
   -moz-transition-delay: 0.1s;
   -o-transition-delay: 0.1s;
   -ms-transition-delay: 0.1s;
   transition-delay: 0.1s;
}
.vista.view-first:hover a.info {
   -webkit-transition-delay: 0.2s;
   -moz-transition-delay: 0.2s;
   -o-transition-delay: 0.2s;
   -ms-transition-delay: 0.2s;
   transition-delay: 0.2s;
}

.view-llamados .view-content {
    text-align: center;
}


/* TESTIMONIALS */
.view-testimonios .views-row { padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px dotted #000 }
.view-testimonios .views-row .views-field-field-comentario { font-size: 14px; font-style: italic; font-weight: 600; margin-bottom: 8px; }
.view-testimonios .views-row .views-field-title a { font-size: 18px; color: #B90000; margin-bottom: 12px; }
.view-testimonios .views-row .views-field-field-grado { font-size: 14px; }
.view-testimonios .views-row .views-field-field-enlace { font-size: 14px; }


/* PUBLICACIONES */
.indice-public h3 { font-size: 16px; margin: 10px 0; }
.indice-public tr:nth-child(even){background-color: #eee;}
.indice-public td { border-bottom: 0 !important; }

@media (max-width: 480px) {
	.indice-public tr { border: 0; padding: 6px 8px 20px; }
	.indice-public td { padding-left: 0 !important; }
}


/* CONTENT COPYRIGHT */
.content-copyright { padding-top: 25px; border-top: 4px solid #eee; }
.content-copyright p { font-size: .88em; line-height: 1.6em; }
.content-copyright .wrapper { display: flex; margin-bottom: 20px; }
.content-copyright .wrapper-item:last-child { min-width: 48%; margin-right: 0; }
.content-copyright .wrapper-item img { width: 100%; }

.content-copyright .wrapper2 { margin-right: 20px; display: flex; }
.content-copyright .wrapper2 .wrapper-item { min-width: 20%; margin-right: 30px; text-align: left; }

@media (max-width: 980px) {
	.content-copyright .wrapper2 { display: block; }
}
@media (max-width: 779px) {
	.content-copyright .wrapper { display: block; }
}
@media only screen and (min-width: 280px) and (max-width: 780px){
	.content-copyright p { font-size: .85em !important; line-height: 1.5em; }
}


.homepage .block-front h2 { font-size: 2.0rem; font-weight: 800; text-align: center; }
.homepage .block-front h2 a { text-decoration: none; color: #B90000; }

.terminacion { font-size:1.5em; text-align:center; width: 100%; margin: 1.8em auto .7em;   overflow: hidden; }
.terminacion::before, .terminacion::after { content: ""; display: inline-block; width: 18%;   margin: 0 .5em 0 -55%; vertical-align: middle; border-bottom: 1px solid; }
.terminacion::after { margin: 0 -55% 0 .5em; }

.menu-enlaces { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; font-size:14px; font-weight: bold; margin: 12px 0; text-align: center; }
.menu-enlaces a { text-decoration: none; text-transform: uppercase; color: rgb(178, 34, 34); 	padding: 2px 8px; }
.menu-enlaces a:hover { background: rgb(178, 34, 34); color: #fff; }
.menu-enlaces span { padding: 2px 8px; }


.verde { color: #006a08 !important; }
a.verde:hover { background: #006a08 !important; color: #fff !important; }


.we-mega-menu-submenu-inner a { font-size: 1em !important; padding-top: 1em !important; padding-bottom: 1em !important; }
.we-mega-menu-col[data-block="programas"] a { font-weight: bold; }

.region-content-bottom h2 { text-align: center; margin-bottom: 30px; }


/* SIDEBAR RIGHT */
#sidebar-right h2 { font-size: 30px; margin-bottom: 12px; }
#sidebar-right h4 { font-size: 14px; line-height: 1.5em; color: #B90000; margin-bottom: 12px; }
#sidebar-right p { font-size: .8em; line-height: 1.6em; }
#sidebar-right .views-row { margin-bottom: 36px; }
#sidebar-right .vertical-slider { background: #fff !important; }
#sidebar-right .vertical-slider .group-journal p { font-weight: bold; margin-top: 12px; }


/* MENU TOP */
.menutop ul.menu { list-style-type: none; display: flex; flex-wrap: wrap; }
.menutop ul.menu li.menu-item { margin: 0 12px; }
.menutop ul.menu li.menu-item a:hover { color: #eee; }

@media (max-width: 768px) {
	.menutop ul.menu { display: none; }
}


/* MENU JOURNAL */
.menu-journal .we-mega-menu-ul>.we-mega-menu-li>a, .menu-journal .we-mega-menu-ul>.we-mega-menu-li>span {
    background-color: #B90000; color: #eee; }
.menu-journal .we-mega-menu-ul>.we-mega-menu-li>a:hover { color: #fff; }


/* VIEWS REPOSITORY */
.repository .views-row {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 16px;
	margin-bottom: 20px;
}
.repository .views-row .views-field-field-foto-autor { max-width: 30%; min-width: 220px; }
.repository .views-row .views-field-field-foto-autor img { max-width: 220px; }
.repository .views-row .views-field-nothing { width: 50%; }
.repository .journal-aut { font-weight:bold; margin-top:12px; margin-bottom:0; }
.repository .journal-pub { font-size:small; }

@media (max-width: 546px) {
	.repository .views-row .views-field-nothing { width: 100%; text-align: center; }
	.repository .views-row { margin-bottom: 30px; }
}


/* POST REPOSITORY */
.page-type-journal-articulo h1 { font-size: calc(24px + (28 - 24)*(100vw - 300px)/(1000 - 300)); }
.page-type-journal-articulo .field--name-field-foto-autor img { width: 100%; }
.page-type-journal-articulo .field--name-field-autor { margin-top: 12px; font-size: .9em; line-height: 1.3em; font-weight: bold; }
.page-type-journal-articulo .layout__region--second .block { margin-bottom: 20px; }


/* FLEXSLIDER */
.vertical-slider h2 { margin: 0; }
.flexslider .flex-direction-nav a,
.flexslider .flex-direction-nav a {
  display: block;
}
.flex-direction-nav {
  *height: 0;
  position: relative;
}
.flex-direction-nav a {
  display: block;
  padding: 6px;
  opacity: 1 !important;
}
.flex-direction-nav .flex-prev {
  left: 60% !important;
}
.flex-direction-nav .flex-next {
  right: 10px !important;
  text-align: right;
}
.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
  left: 10px;
}
.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1 !important;
}
.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 0.7;
  right: 10px;
}
.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1 !important;
}
.sidebar li {
    border-bottom: 0 !important;
}


/* WEBFORM */
.webform-submission-form {
	font-size: .9em;
}
.webform-submission-form input,
.webform-submission-form select,
.webform-submission-form textarea {
    padding: 10px;
	border: 1px solid #000 !important;
	width: 100% !important;
    max-width: 100% !important;
}
.webform-submission-form ::placeholder { color: #999; opacity: 1; }
.webform-submission-form ::-ms-input-placeholder { color: #999; }
