/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 18 2022 | 21:58:37 */
/*kills scrollbar */ 
html{
  scrollbar-width: none; 
  -ms-overflow-style: none;
  } 
html::-webkit-scrollbar { 
    width: 0;
    height: 0;
}
.scroll-container{
  height: 100vh;/*sobald man die höhe entfernt oder auf 100% macht funktioniert es nicht mehr vh und px gehen*/
  overflow-y: scroll;
  scroll-snap-type: y mandatory !important;
  -webkit-overflow-scrolling: touch !important; 
    scroll-padding: 60px 0 0 0;
}
.scroll-snap-start {  
  scroll-snap-align: start;
}
.scroll-snap-center {
  scroll-snap-align: center;
}
.scroll-snap-end {
  scroll-snap-align: end;
}
.scroll-snap-stop {
  scroll-snap-stop: always;
}
/*Newsbox*/
.uagb-post__inner-wrap{
  scroll-snap-align: start
}
.post-thumbnail-inner{
  scroll-snap-align:start;
}

      /* @media screen and (max-width: 767px){
          .content-section {
            
            height: 50vh;
            }
        /*  .content-section-innerrow-text {
            scroll-snap-align: center;
            height: 100vh;
            }
        }*/


