.loadersmall {
    border: 5px solid #f3f3f3;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border-top: 5px solid #555;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes spin {
  0% { 
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.pagination__scene{
  margin-top: 10px;
  display: flex;
}
.pageno__scene-num{
      border: 1px solid #dee2e6;
    padding: 0;
    margin: 0;
    float: left;
    background-color: white;
}

.pageno__scene{
    display: block;
    line-height: 1.8;
    padding: 5px 1em;
    text-decoration: none;
}
.pageno__scene.active{
  background-color: #f2f3f4;
}
.hidden{
  display: none;
}
.item_scene{
  display: none;
}
.item_scene.show{
  display: block;
}

.item_scene-child.active{
  background: #49536C;
    color: white;
}
.item_scene-child.active a,.item_scene-child.active i{
  background: #49536C;
    color: white;
}