.card-shadow {
  position: relative;
}
.card-shadow:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(90%, black));
  background: linear-gradient(to bottom, transparent 40%, black 90%);
  z-index: 1;
}
.card-shadow h2 {
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  z-index: 2;
  font-size: 16px;
  line-height: 14px;
  width: 100%;
  color: white;
  padding: 10px;
  font-weight: 700;
}
.card-shadow h2 span:first-child a{
  display: block;
  font-size: 10px;
}
.card-shadow img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: relative;
}
.card-shadow .ndate {
  z-index: 3;
  padding-left: 10px;
}
.card-shadow .ndate::before {
  background-color: #00c8af;
  position: absolute;
  width: 8px;
  height: 10px;
  top: 12px;
  left: 10px;
  content: "";
}

body {
  background-color: #edeff4;
}

.navbar-item img {
  max-height: unset;
}

#over-navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2%;
}

#footer-rights {
  background-color: #002b69;
  min-height: 40px;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#footer-rights > span:nth-child(2) {
  font-size: 18px;
}

#news-section {
  margin-top: 1em;
  position: relative;
}
#news-section .main-image {
  min-height: 406px;
}
#news-section #big h2 {
  font-size: 24px;
  line-height: 24px;
}
#news-section #big .ndate::before {
  top: 17px;
}

#more-news-section {
  margin-top: 1em;
}
#more-news-section nav {
  padding: 10px;
  border-left: 0.5em solid #00c8af;
}
#more-news-section h3 {
  font-size: 1.5em;
  font-weight: 700;
}

.has-lr-buttons {
  height: 20px;
}
.has-lr-buttons .cat-title {
  background-color: #00c8af;
  padding: 0 10px;
  height: 40px;
  margin-left: 8px;
  margin-top: 5px;
}
.has-lr-buttons .cat-title + h3 {
  padding-top: 15px;
  padding-left: 10px;
  text-transform: uppercase;
}
.has-lr-buttons span {
  margin: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.has-lr-buttons i {
  font-size: 2em;
  position: relative;
}
.has-lr-buttons button {
  background-color: transparent;
  height: 30px;
  margin: 12px 5px 5px 5px;
  border: 1px solid white;
  color: white;
  width: 30px;
  position: relative;
}
.has-lr-buttons button i {
  bottom: -3px;
  left: 0;
  position: absolute;
}

#relevantes .columns {
  margin-top: 5px;
}
#relevantes figure {
  background-color: white;
}
#relevantes figure + div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: white;
  padding: 10px;
}
#relevantes img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: relative;
}

#lowerFoot {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

.link {
  cursor: pointer;
  
}

.link a{
    color:white
}

.link a:hover{
    color:#00c8af
}

#reader-modal {
  z-index: 40;
}

#reader-modal .modal-card-body .content {
  white-space: break-spaces;
}
#reader-modal p.modal-card-title {
  -ms-flex-negative: initial;
      flex-shrink: initial;
}

.skeleton-block {
    color: transparent !important;
    min-height: 40px;
    border:1px solid #c3c3c3;
    
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-name: pulsate;
    animation-timing-function: cubic-bezier(.4,0,.6,1);
    background-color: hsl(221,14%,86%);
    box-shadow: none;
    pointer-events: none;    
}

@keyframes pulsate{50%{opacity:.5}}