/*
// Plugin Name : Page List
// Created On : 11/28/2020
// Author : Joe Kustek
// Version : 1.0
// Description : Display all pages under a parent page
//
*/
.page_list_column {
  display: inline-block;
}

@media only screen and (min-width: 991px) {
  .page-1 {
    width: 100%;
  }
  .page-2 {
    width: 34%;
  }
  .page-3 {
    width: 33%;
  }
  .page-4 {
    width: 24%;
  }
  .page-5 {
    width: 19%;
  }
  .page-6 {
    width: 16%;
  }
  .page-7 {
    width: 13%;
  }
  .page-8 {
    width: 12%;
  }
  .page-9 {
    width: 10%;
  }
  .page-10 {
    width: 9%;
  }
}


@media only screen and (max-width: 991px) {
  .page-list-wrapper {
    text-align: center;
  }
  .page_list_column {
    width: 100%;
  }
}
