.full-screen-ftop .offcanvas-menu {
  right: 0;
  width: 100%;
  opacity: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  background-image: url("/images/Wasserbilder/unterwasser3.jpg");
  transition: all 500ms ease;
  color: #000000;
}

.full-screen-ftop .offcanvas-menu .offcanvas-inner .sp-module ul li a {
  color: #000000;
  text-shadow: 0px 1px 8px rgba(255,255,255,1);
  background-color: rgba(255, 255, 255, 0.51);
  border-radius: 5px;
  width: 400px;
  font-weight: 600;
  font-size: 32px;
}

.offcanvas-menu .offcanvas-inner .sp-module {
  padding: 0px;
}

.offcanvas-menu .offcanvas-inner .sp-module ul > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.full-screen-ftop .offcanvas-menu .offcanvas-inner .sp-module ul li ul li a {
  font-size: 22px;
  text-transform: none;
}

#sp-footer1 {
    text-align: left;
}

#sp-main-body {
  padding-top: 30px;
  padding-bottom: 30px;
}

article.item {
    margin-bottom: 10px;
}

#sp-footer1 {
    text-align: center;
}

.article-footer-top {
   padding-top: 15px;
}

.tableresp {
  width: 100%;
  overflow-y: auto;
  background-color: #ffffff;
  padding-bottom: 2px; /* Abstand zwischen Tabelle und Scrollbar */
}


Design des Scrollbars: (.tableresp aus div class HTML verwenden)

 /* width height */
.tableresp::-webkit-scrollbar {
  width: 0px;
  height: 9px;
}

/* Track */
.tableresp::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 5px;
}
 
/* Handle */
.tableresp::-webkit-scrollbar-thumb {
  background: #b3b3b3; 
  border-radius: 4px;
}

/* Handle on hover */
.tableresp::-webkit-scrollbar-thumb:hover {
  background: #7c93b8; 
}