/*
Theme Name: Theme für parent
Author: Dragan
Author URI: http://www.dragan
Version: 1.0 */

.news-open-link a {
  cursor: pointer !important;
  color: red !important;
}

#news-panel {
  position: fixed;
  right: -100%;
  top: 0;
  width: 500px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: -10px 0 30px rgba(0,0,0,0.2);
  transition: 0.4s ease;
  z-index: 9999;
  overflow-y: auto;
}

#news-panel.active {
  right: 0;
}

#news-panel .content {
  padding: 30px;
  font-family: "Museo", Georgia, serif;
  line-height: 1.6;
}

#news-panel h2 {
  margin-bottom: 20px;
}

#news-panel h3 {
  margin-top: 20px;
  font-size: 18px;
}

#news-close {
  cursor: pointer;
  font-size: 24px;
  position: absolute;
  top: 15px;
  right: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  #news-panel {
    width: 100%;
  }

  #news-panel .content {
    padding: 20px;
  }
}