.novedad {
  min-height: 100%;
  width: 100%;
  margin-top: 20px;
  display: none;
  position: absolute;
  z-index: 99;
  background: #fff;
  top: 0%;
  /* bottom: 0; */
  transition: 0.2s;
  padding: 20px 0;
}

.novedad-header{
  margin-top:20px;
}

.novedad-show {
  display: block;
  animation: showNovedad;
  animation-duration: 0.2s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
}

@keyframes showNovedad {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.main-wrapper {
  position: relative !important;
}

.novedad-title {
  font-weight: 600;
  text-transform: capitalize;
}

.novedad-subtitle {
  color: #666;
  font-size: 1rem;
}

.novedad-date,
.novedad-author {
  font-size: 0.8rem;
  color: #666;
  margin-right: 15px;
}

.novedad-content {
  margin: 20px 0;
}
.novedad-content li {
list-style: disc;
}

.novedad-close {
  font-weight: bold;
  cursor: pointer;
}
.novedad-close:hover {
  text-decoration: underline;
}

.novedad-image {
  border-radius: 10px;
  margin: 20px 0;
  position: absolute;
}

.novedad-image-container {
  min-height: 600px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 25px 0;
}
@media (max-width: 900px){
  .novedad{
    margin-top:50px;
  }
  .novedad-header{
    margin-top:0px;
  }
  .novedad-image-container {
    min-height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: 25px 0;
  }
  .novedad-header-noimage{
    margin-top:60px;
  }
}
@media (min-width: 901px){
  .novedad-header-noimage{
    margin-top:150px;
  }
}

