@font-face {
  font-family: NexusSansPro;
  src: url("../../../org/fonts/NexusSansCompPro.ttf") format("truetype");
}
@font-face {
  font-family: NexusSansPro;
  src: url("../../../org/fonts/NexusSansCompPro-Bold.ttf") format("" truetype "");
  font-weight: bold;
}
@font-face {
  font-family: NexusSansProItalic;
  src: url("../../../org/fonts/NexusSansCompPro-Italic.ttf") format("truetype");
}

html {
  font-family: NexusSansPro;
  margin: 0;
  padding: 0;
  color: #737373;
  min-width: 1200px;
}
body {
  margin: 0;
  padding: 0;
  min-width: 1200px;
  min-height: 600px;
}
p {
  line-height: 21px;
}
.form-button {
  padding: 5px 20px;
  background: transparent;
  border: 2px solid #e8711c;
  color: #e8711c;
  font-weight: bold;
  text-decoration: none;
}
.form-button:hover {
  cursor: pointer;
  color: white;
  background: #e8711c;
}
a {
  color: #e8711c;
  text-decoration: none;
}

H2 {
  font-size: 25px;
  color: black;
  padding: 20px 0;
}
h3 {
  font-size: 20px;
  padding: 20px 0;
  color: black;
}

header .logo-menu {
  background-color: #ececec;
  padding: 20px 20px;
}
header .logo-desconectar {
  display: flex;
  justify-content: space-between;
}
header .logo-menu .logo {
  font-size: 24px;
  color: #e8711c;
  width: 200px;
}
header .menu-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 0px;
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}
header .menu-list li {
  position: relative;
}
header .menu-list li .desp {
  background: url("../images/flecha-an-ab_e8711c.png") no-repeat center right;
  background-size: 12px 7px;
  color: #737373;
  border-bottom: 2px solid transparent;
  padding-right: 20px;
}
header .menu-list li .desp:hover {
  border-bottom: 2px solid #e8711c;
  color: #e8711c;
  cursor: pointer;
}
header .menu-list li a {
  color: #737373;
  text-decoration: none;
}
header .menu-list li a:hover {
  color: #e8711c;
}
header .menu-list .caja-desp {
  position: absolute;
  right: 0;
  width: 300px;
}
header .menu-list .caja-desp .item-sub-menu {
  margin-top: 10px;
}

/* main{height: calc(100% - 180px);} */
main {
  min-height: 600px;
}
main .contenido {
  min-width: 1350px;
  padding-bottom: 40px;
}

main .central {
  width: 1040px;
  margin: auto;
  vertical-align: top;
  margin-top: 10px;
}
main .sidebar + .central {
  display: table-cell;
  padding-left: 50px;
  padding-top: 10px;
}
main .central h1 {
  font-size: 28px;
  color: #323232;
  border-bottom: 1px solid #231f20;
  margin-bottom: 20px;
}

main .sidebar {
  display: table-cell;
  background-color: #ececec;
  -webkit-box-shadow: 5px 0 3px -3px rgba(0, 0, 0, 0.5);
  box-shadow: 5px 0 3px -3px rgba(0, 0, 0, 0.5);
  vertical-align: top;
}
main .sidebar .container {
  float: left;
  overflow: hidden;
}
main .sidebar .menu {
  padding-left: 25px;
  width: 185px;
}
main .sidebar .titulo {
  margin-top: 60px;
  font-size: 20px;
  color: #323232;
}
main .sidebar ul {
  padding-left: 22px;
}
main .sidebar li {
  margin-top: 20px;
}
main .sidebar li a {
  color: #737373;
  text-decoration: none;
}
main .sidebar li a:hover {
  text-decoration: underline;
  color: #e8711c;
}
main .sidebar .btn-sidebar {
  background: url("../images/btn-sidebar.png") no-repeat top 300px right 5px;
  background-size: 24px 22px;
  float: right;
  width: 30px;
  height: 100%;
  cursor: pointer;
}
main .sidebar .btn-sidebar.closed {
  background: url("../images/btn-sidebar-de.png") no-repeat top 300px right 5px;
  background-size: 24px 22px;
}

footer {
  border-top: 1px solid #ececec;
  padding: 35px 0;
  text-align: center;
}
.clear {
  clear: both;
}

.caja-desp {
  background-color: transparent;
  z-index: 1;
  display: none;
}
.caja-desp .top {
  background-color: transparent;
  background-repeat: no-repeat;
  height: 16px;
  border: none;
  background-position: right bottom;
}
.caja-desp .bottom .titulo {
  float: left;
  margin-right: 12px;
  margin-bottom: 20px;
}
.caja-desp .bottom {
  background-color: rgba(245, 245, 245, 0.95);
  padding: 20px;
  display: block;
}
.caja-desp .bottom .content {
  background-color: white;
  padding: 14px 21px;
  display: block;
  opacity: 1;
}
.caja-desp .cerrar {
  float: right;
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  background-image: url("../images/cruz-corp.png");
}

form {
  font-size: 16px;
}
form .row {
  margin-bottom: 25px;
}
form .msg {
  text-align: center;
  margin-bottom: 10px;
  height: 30px;
}
form .msg .ok {
  color: green;
}
form .msg .ko {
  color: red;
}
form .row label {
  display: inline-block;
  width: 110px;
  text-align: right;
  margin-right: 10px;
  vertical-align: top;
  padding-top: 7px;
}
form .row.obligatorio label:after {
  content: "*";
  display: inline-block;
  color: #e8711c;
  margin-left: 5px;
  font-size: 12px;
  vertical-align: top;
}
form .row .campo {
  display: inline-block;
}
form .row .campo .texto {
  display: inline-block;
  vertical-align: -7px;
}

.chk-01 {
  background-color: #c8c6c6;
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 5px;
  border-radius: 0;
}
.chk-01 input {
  vertical-align: top;
  border-radius: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 2px solid white;
  width: 11px;
  height: 11px;
  margin: 0px;
  margin-top: 2px;
  margin-left: 2px;
  background-color: white;
}
.chk-01 input:checked {
  background: #e06b19;
}
.chk-01 input:focus {
  outline: none;
}

select.cmb-01 {
  padding: 5px;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  font-size: 16px;
}

input.input-01 {
  font-family: NexusSansPro;
  padding: 5px;
  transition: border 0.4s ease-out;
  font-size: 16px;
  background: transparent;
  border: 1px solid #dcdcdc;
  color: #505050;
  display: inline-block;
  height: 24px;
  width: 100%;
  -moz-border-radius: 5px;
  border-radius: 5px;
  vertical-align: top;
}
input.input-01:focus {
  border: 1px solid #505050;
}
input.input-01[readonly] {
  background: #ececec;
}

.ta-01 label {
  display: block;
  color: #b9b9b9;
}
.ta-01 textarea {
  resize: none;
  width: 100%;
  height: 200px;
  border-color: #dcdcdc;
}

/* BOTONES */

.btn {
  display: inline-block;
  margin-bottom: 50px;
}
.btn a {
  border: 2px solid #e8711c;
  padding: 10px;
}
.btn a:hover {
  background: #e8711c;
  color: white;
}
.btn a.selected {
  background: #e8711c;
  color: white;
}

.btn-01 {
  background: url("../images/flecha-an-de_e8711c.png") white no-repeat center right 5px;
  background-size: 6px 12px;
  font-size: 18px;
  border: 2px solid #eeeeee;
  padding-left: 17px;
  padding-right: 8px;
  line-height: 18px;
  text-align: left;
  display: block;
  font-family: NexusSansPro;
  padding-top: 11px;
  padding-bottom: 8px;
  background-repeat: no-repeat;
  background-size: 6px 12px;
  background-position: center right 10px;
  padding-right: 30px;
  margin: auto;
}
.btn-01:hover {
  background-image: url("../images/flecha-an-de_ffffff.png");
  color: white;
  cursor: pointer;
  background-color: #e8711c;
  border: 2px solid #e8711c;
}
.btn-01 + .label {
  vertical-align: 6px;
  display: inline-block;
  font-size: 17px;
  margin-left: 5px;
  color: #505050;
}

/* breadcumb*/
.breadcumb {
  font-size: 12px;
  margin-bottom: 40px;
}
.breadcumb .ruta a {
  color: #747474;
  text-decoration: none;
}
.breadcumb .ruta a:hover {
  color: #e8711c;
  text-decoration: none;
}
.breadcumb .ruta a:before {
  content: ">";
  padding-right: 3px;
}
.breadcumb .ruta a:first-child:before {
  content: "";
  padding: 0;
}

.tabla table {
  width: 100%;
}
.tabla tr th {
  padding: 20px 5px 10px 5px;
  text-align: left;
  font-weight: bold;
  border-bottom: 2px solid #ececec;
}
.tabla tr td {
  text-align: left;
  padding: 10px 5px;
  border-bottom: 1px solid #ececec;
  vertical-align: middle;
}
.tabla tr:nth-child(2n) {
  background-color: #ececec;
}
.tabla a {
  color: #e8711c;
  text-decoration: none;
}
.tabla a.nueva:before {
  content: " ";
  width: 10px;
  height: 10px;
  background: url("../images/mas_e8711c.png") no-repeat;
  background-size: cover;
  display: inline-block;
  margin-right: 10px;
}

.paginador {
  text-align: center;
  margin-top: 20px;
}
.paginador a {
  width: 27px;
  text-align: center;
  display: inline-block;
  color: #737373;
  font-size: 17px;
  text-decoration: none;
  vertical-align: middle;
  border: 1px solid white;
  padding: 7px 0;
  margin-left: 17px;
  margin-top: 5px;
  font-weight: bold;
}
.paginador a span {
  display: none;
}
.paginador .mobile {
  display: none;
}
.paginador .anterior {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-position: center;
}
.paginador .siguiente {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-position: center;
}
.paginador a.activo,
.paginador a:hover {
  border: 1px solid #e8711c;
}

.item-preview {
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 30px;
  line-height: 26px;
  position: relative;
  margin-top: 35px;
}

.item-preview .titulo {
  font-size: 22px;
  line-height: 26px;
}
.item-preview a.titulo {
  text-decoration: none;
  color: #e9711c;
  margin-bottom: 10px;
  font-family: NexusSerifPro;
  display: inline-block;
  width: 100%;
}
.item-preview a.titulo:hover {
  text-decoration: underline;
}
.item-preview .autor {
  font-size: 14px;
  color: #737373;
  font-style: italic;
}
.item-preview .cita {
  font-size: 14px;
  color: #737373;
}
.item-preview .herramientas {
  margin-top: 10px;
}
.item-preview .ico-open-access {
  width: 106px;
  float: left;
  text-align: left;
  margin-top: 10px;
}
.item-preview .ico-open-access.texto {
  width: 154px;
}
.item-preview .herramientas .compartir {
  width: 25px;
  height: 26px;
  background-size: 25px 7px;
  cursor: pointer;
  background-position: center center;
  float: right;
}
.item-preview .herramientas .gratuito {
  float: ñrgy;
  color: #b9b9b9;
  font-size: 10px;
  text-transform: uppercase;
}
.item-preview .herramientas .candado-corp {
  width: 12px;
  height: 15px;
  background-size: cover;
  display: inline-block;
  vertical-align: -1px;
  margin-left: 5px;
}
.item-preview .herramientas .item-publicacion {
  font-size: 15px;
  color: #b9b9b9;
  float: left;
}
.item-preview .resumen-grafico {
  width: 100%;
  text-align: center;
  margin: 22px 0;
}
.item-preview .resumen-grafico img {
  width: 100%;
  max-width: 325px;
}
.item-preview .resumen-highLight {
  height: 95px;
  overflow-y: auto;
  margin-top: 25px;
  font-size: 14px;
  color: #737373;
  line-height: 20px;
}
.item-preview .resumen-highLight .elsevierStyleLabel::after {
  content: "";
}
.item-preview .resumen-highLight p {
  margin: 0;
  padding: 0;
}
.item-preview .lecturas {
  width: 112px;
  height: 39px;
  background-repeat: no-repeat;
  background-size: cover;
  float: right;
  margin-left: 96px;
  font-size: 17px;
  color: #323232;
  padding-top: 33px;
  padding-left: 6px;
  margin-bottom: 16px;
}
.item-preview .comentario {
  margin: 22px 0;
  font-size: 16px;
}

.capa-loading {
  display: none;
  bottom: 0;
  right: 0;
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 1000;
  background: -moz-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%); /* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.capa-loading .loading {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background-size: cover;
  margin-left: -50px;
  margin-top: -50px;
}
.loading {
  background: url("../../../org/images/loading.gif") no-repeat;
}
