body {
  width: 100%;
  height: 100%;
}

.bs-awf-news__container {
  width: 100%;
  height: 100%;
  display: block;
  margin-left:0;
  padding-left: 2%;
}

.bs-awf-news__categories-box {
  width: 100%;
  height: fit-content;
  display: flex;
}
.bs-awf-news__categories {
  display: flex;
  width: 100%;
  height: fit-content;
  justify-content: flex-start;
  border-bottom: 2px solid green;
  margin-bottom: 20px;
}
.bs-awf-news__categorie {
  height: fit-content;
  width: fit-content;
  display: inline-block;
margin:0;
}
.bs-awf-news__categorie:hover {
  border-bottom: 2px solid green;
}
.bs-awf-news__categorie--name {
  text-align: center;
  
}
.bs-awf-news__posts-box {
  width: 100%;
  height: 550px;
  flex-wrap: wrap;
  display: flex;
  overflow-y: scroll;
  overflow-x: hidden;

}

.bs-awf-news__posts-box-section {
  display: flex;
  width: inherit;
  flex-wrap: wrap;
}

.bs-awf-news__posts-box-post {
  width: 50%;
}

.bs-awf-news__categorie--name__hidden {
  display: none;
}



.bs-awf-news__categorie__active {
  border-bottom: 12px solid #00613d !important;
}

@media(max-width: 1200px){
  .clear .bs-awf-news__posts-box {
    height: 100% !important;
}
}
@media(min-width: 781px)and(max-width: 1200px) {
  .bs-awf-news__posts-box-post:nth-child(n+9) {
    display: none !important;
}
}
@media(max-width: 781px){
  .bs-awf-news__posts-box-post:nth-child(n+7) {
    display: none !important;
}

  .clear .bs-awf-news__posts-box{
    overflow: hidden;
}
}


/*Pasek scroll*/


/* width */
::-webkit-scrollbar {
  width: 6px;
}

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

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #4A4A49; 
}


