/*
*   1. Filter box
*   2. Pagination
*   3. filter labels
*   4. filter inline
*
*/
.filter-label-list {
  padding: 0;
  list-style-type: none;
  margin: 0;
}

.multi-select {
  position: relative;
}
.multi-select .toggle {
  background: none;
  position: relative;
  padding: 1em 1.5em 1em 1.5em;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.5);
  cursor: default;
}
.multi-select .toggle:after {
  border-bottom: 2px solid rgba(0, 0, 0, 0.5);
  border-right: 2px solid rgba(0, 0, 0, 0.5);
  content: "";
  display: block;
  height: 0.75em;
  pointer-events: none;
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translate(0, -65%) rotate(45deg);
  width: 0.75em;
}
.multi-select .toggle label {
  font-size: 1em;
  line-height: 1;
  margin: 0;
  max-width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}
.multi-select .listbox {
  display: none;
  position: absolute;
  list-style: none;
  padding: 0;
  margin: 0;
  left: 0;
  top: 100%;
  z-index: 1000;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  max-height: 20em;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
}
.multi-select .listbox .listbox-item input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
  display: none !important;
  width: inherit !important;
}
.multi-select[aria-expanded=true] .listbox {
  display: block;
}
.multi-select-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 900;
}

.card-post-list-default,
.db-card-default {
  position: relative;
  border: 1px solid lightgray;
  padding: 2em;
  height: 100%;
}
.card-post-list-default h3,
.db-card-default h3 {
  font-size: 1.25em;
}
.card-post-list-default a,
.db-card-default a {
  text-decoration: none;
  color: black;
}
.card-post-list-default a:focus,
.db-card-default a:focus {
  text-decoration: underline;
}
.card-post-list-default a:after,
.db-card-default a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.card-post-list-default:hover,
.db-card-default:hover {
  background-color: lightgray;
}

.btn-load-more {
  padding: 1em 1.5em 1em 1.5em;
  background-color: lightgray;
  border-color: lightgray;
}

.post-list .list-item img {
  max-width: 100%;
  height: auto;
}

[data-layout=masonry] .post-list {
  display: flex;
  flex-flow: column wrap;
  align-content: space-between;
  padding: 0;
  width: 100%;
  counter-reset: items;
  /* For testing and debugging
  li:not(.column-break)::before {
    counter-increment: items;
    content: counter(items);
    top:32px;
    left:16px;
    position:relative;
  }
  */
}
[data-layout=masonry][data-columns="2"] .post-list::before, [data-layout=masonry][data-columns="2"] .post-list::after {
  content: "";
  flex-basis: 100%;
  width: 0;
  order: 2;
}
[data-layout=masonry][data-columns="2"] .post-list .list-item {
  width: calc((100% / 2));
}
[data-layout=masonry][data-columns="2"] .post-list .list-item:nth-child(even) {
  order: 2;
}
[data-layout=masonry][data-columns="2"] .post-list .list-item:nth-child(odd) {
  order: 1;
}
[data-layout=masonry][data-columns="2"] .post-list .list-item .db-card-default {
  height: auto;
}
[data-layout=masonry][data-columns="3"] .post-list .list-item {
  width: calc((100% / 3));
}
[data-layout=masonry][data-columns="3"] .post-list .list-item:nth-of-type(3n+1) {
  order: 1;
}
[data-layout=masonry][data-columns="3"] .post-list .list-item:nth-of-type(3n+2) {
  order: 2;
}
[data-layout=masonry][data-columns="3"] .post-list .list-item:nth-of-type(3n) {
  order: 3;
}
[data-layout=masonry][data-columns="3"] .post-list .list-item.column-break {
  flex-basis: 100%;
  width: 0 !important;
  margin: 0;
}
[data-layout=masonry][data-columns="4"] .post-list .list-item {
  width: calc((100% / 4));
}
[data-layout=masonry][data-columns="4"] .post-list .list-item:nth-of-type(4n+1) {
  order: 1;
}
[data-layout=masonry][data-columns="4"] .post-list .list-item:nth-of-type(4n+2) {
  order: 2;
}
[data-layout=masonry][data-columns="4"] .post-list .list-item:nth-of-type(4n+3) {
  order: 3;
}
[data-layout=masonry][data-columns="4"] .post-list .list-item:nth-of-type(4n) {
  order: 4;
}
[data-layout=masonry][data-columns="4"] .post-list .list-item.column-break {
  flex-basis: 100%;
  width: 0 !important;
  margin: 0;
}
[data-layout=masonry][data-columns="5"] .post-list .list-item {
  width: calc((100% / 5));
}
[data-layout=masonry][data-columns="5"] .post-list .list-item:nth-of-type(5n+1) {
  order: 1;
}
[data-layout=masonry][data-columns="5"] .post-list .list-item:nth-of-type(5n+2) {
  order: 2;
}
[data-layout=masonry][data-columns="5"] .post-list .list-item:nth-of-type(5n+3) {
  order: 3;
}
[data-layout=masonry][data-columns="5"] .post-list .list-item:nth-of-type(5n+4) {
  order: 4;
}
[data-layout=masonry][data-columns="5"] .post-list .list-item:nth-of-type(5n) {
  order: 5;
}
[data-layout=masonry][data-columns="5"] .post-list .list-item.column-break {
  flex-basis: 100%;
  width: 0 !important;
  margin: 0;
}
[data-layout=masonry][data-columns="6"] .post-list .list-item {
  width: calc((100% / 6));
}
[data-layout=masonry][data-columns="6"] .post-list .list-item:nth-of-type(6n+1) {
  order: 1;
}
[data-layout=masonry][data-columns="6"] .post-list .list-item:nth-of-type(6n+2) {
  order: 2;
}
[data-layout=masonry][data-columns="6"] .post-list .list-item:nth-of-type(6n+3) {
  order: 3;
}
[data-layout=masonry][data-columns="6"] .post-list .list-item:nth-of-type(6n+4) {
  order: 4;
}
[data-layout=masonry][data-columns="6"] .post-list .list-item:nth-of-type(6n+5) {
  order: 5;
}
[data-layout=masonry][data-columns="6"] .post-list .list-item:nth-of-type(6n) {
  order: 6;
}
[data-layout=masonry][data-columns="6"] .post-list .list-item.column-break {
  flex-basis: 100%;
  width: 0 !important;
  margin: 0;
}

[data-filter-display=top] {
  padding: 1em 0;
}
[data-filter-display=top] .filter-blocks {
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 767px) {
  [data-filter-display=top] .filter-blocks {
    display: flex;
  }
}
[data-filter-display=top] .filter-blocks .apl-filter-block {
  vertical-align: top;
  flex: 1;
  margin-right: 0.5em;
}
[data-filter-display=top] .filter-blocks .apl-filter-block:last-of-type {
  margin-right: 0;
}
[data-filter-display=top] .filter-blocks .apl-filter-block.hidden {
  display: none;
}
[data-filter-display=top] .apl-pagination {
  text-align: center;
}

[data-filter-display=side] {
  display: flex;
}
[data-filter-display=side] .filter-container {
  flex: 1;
  padding: 0 1em;
}
[data-filter-display=side] .filter-container .apl-filter-block {
  margin-bottom: 1em;
}
[data-filter-display=side] .filter-results {
  flex: 3;
}

[data-filter-style=inline] *:focus {
  outline: none;
}
[data-filter-style=inline] .apl-filter-block {
  max-width: 100%;
}
[data-filter-style=inline] .toggle {
  display: none;
}
[data-filter-style=inline] .listbox {
  position: relative;
  display: block;
  box-shadow: none;
  border: none;
}
[data-filter-style=inline] .listbox .listbox-item {
  background-color: lightgray;
  display: inline-block;
  width: auto;
  margin: 0 0.5em 0.5em 0;
  padding: 0.5em 1em;
}
[data-filter-style=inline] .listbox .listbox-item.selected {
  background-color: gray;
  color: white;
}
[data-filter-style=inline] .filter-label-list {
  display: none;
}

[data-filter-style=dropdown] .multi-select:focus {
  border-color: lightgray;
  box-shadow: 0 0 4px 2px lightgray;
  outline: 0.25em solid transparent;
}
@media only screen and (min-width: 767px) {
  [data-filter-style=dropdown] .apl-filter-block {
    max-width: 20em;
  }
}
[data-filter-style=dropdown] .listbox-item {
  width: 100%;
  margin-bottom: 0;
  margin-left: 0;
  padding: 0.5em 0em 0.25em 0em;
}
[data-filter-style=dropdown] .listbox-item:hover {
  background-color: lightgray;
}
[data-filter-style=dropdown] .listbox-item.selected > label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.5em;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMnB4IiBoZWlnaHQ9IjUxMnB4Ij4KPGc+Cgk8Zz4KCQk8cGF0aCBkPSJNNTA0LjUwMiw3NS40OTZjLTkuOTk3LTkuOTk4LTI2LjIwNS05Ljk5OC0zNi4yMDQsMEwxNjEuNTk0LDM4Mi4yMDNMNDMuNzAyLDI2NC4zMTFjLTkuOTk3LTkuOTk4LTI2LjIwNS05Ljk5Ny0zNi4yMDQsMCAgICBjLTkuOTk4LDkuOTk3LTkuOTk4LDI2LjIwNSwwLDM2LjIwM2wxMzUuOTk0LDEzNS45OTJjOS45OTQsOS45OTcsMjYuMjE0LDkuOTksMzYuMjA0LDBMNTA0LjUwMiwxMTEuNyAgICBDNTE0LjUsMTAxLjcwMyw1MTQuNDk5LDg1LjQ5NCw1MDQuNTAyLDc1LjQ5NnoiIGZpbGw9IiMwMDAwMDAiLz4KCTwvZz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K);
  background-size: contain;
  width: 0.5em;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
[data-filter-style=dropdown] .listbox-item > label {
  display: block;
  position: relative;
  margin: 0;
  font-size: 1em;
  padding: 0 1em 0 1.5em;
}
.awesome-post-list-layout input[name="filters[search]"] {
  height: 100%;
  width: 100%;
  border: 1px solid;
  padding: 1em 1.5em 1em 1.5em;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1MTIgNTEyIiB3aWR0aD0iNTEycHgiIGhlaWdodD0iNTEycHgiPgogIDxnPgogICAgPHBhdGggZD0iTTQ5NSw0NjYuMkwzNzcuMiwzNDguNGMyOS4yLTM1LjYsNDYuOC04MS4yLDQ2LjgtMTMwLjlDNDI0LDEwMy41LDMzMS41LDExLDIxNy41LDExQzEwMy40LDExLDExLDEwMy41LDExLDIxNy41ICAgUzEwMy40LDQyNCwyMTcuNSw0MjRjNDkuNywwLDk1LjItMTcuNSwxMzAuOC00Ni43TDQ2Ni4xLDQ5NWM4LDgsMjAuOSw4LDI4LjksMEM1MDMsNDg3LjEsNTAzLDQ3NC4xLDQ5NSw0NjYuMnogTTIxNy41LDM4Mi45ICAgQzEyNi4yLDM4Mi45LDUyLDMwOC43LDUyLDIxNy41UzEyNi4yLDUyLDIxNy41LDUyQzMwOC43LDUyLDM4MywxMjYuMywzODMsMjE3LjVTMzA4LjcsMzgyLjksMjE3LjUsMzgyLjl6IiBmaWxsPSIjMDAwMDAwIi8+CiAgPC9nPgo8L3N2Zz4K);
  background-position: right 1em center;
  background-size: 1.25em;
  background-repeat: no-repeat;
  font-size: 1em;
  background-color: transparent;
  font-family: inherit;
}
.awesome-post-list-layout input[name="filters[search]"]:focus {
  border-color: lightgray;
  box-shadow: 0 0 4px 2px lightgray;
  outline: 0.25em solid transparent;
}

.filter-label-list .filter-label-item {
  display: inline-block;
  margin: 0;
}
.filter-label-list .filter-label-item .filter-label {
  margin: 0 0.5em 0.5em 0;
  padding: 0.5em 1em;
  font-size: 1em;
  background: lightgray;
  color: black;
  cursor: pointer;
}
.filter-label-list .filter-label-item .filter-label:after {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  margin-left: 0.5em;
  background-size: contain;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNDcuOTcxIDQ3Ljk3MSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDcuOTcxIDQ3Ljk3MTsiIHhtbDpzcGFjZT0icHJlc2VydmUiIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIiBjbGFzcz0iIj48Zz48Zz4KCTxwYXRoIGQ9Ik0yOC4yMjgsMjMuOTg2TDQ3LjA5Miw1LjEyMmMxLjE3Mi0xLjE3MSwxLjE3Mi0zLjA3MSwwLTQuMjQyYy0xLjE3Mi0xLjE3Mi0zLjA3LTEuMTcyLTQuMjQyLDBMMjMuOTg2LDE5Ljc0NEw1LjEyMSwwLjg4ICAgYy0xLjE3Mi0xLjE3Mi0zLjA3LTEuMTcyLTQuMjQyLDBjLTEuMTcyLDEuMTcxLTEuMTcyLDMuMDcxLDAsNC4yNDJsMTguODY1LDE4Ljg2NEwwLjg3OSw0Mi44NWMtMS4xNzIsMS4xNzEtMS4xNzIsMy4wNzEsMCw0LjI0MiAgIEMxLjQ2NSw0Ny42NzcsMi4yMzMsNDcuOTcsMyw0Ny45N3MxLjUzNS0wLjI5MywyLjEyMS0wLjg3OWwxOC44NjUtMTguODY0TDQyLjg1LDQ3LjA5MWMwLjU4NiwwLjU4NiwxLjM1NCwwLjg3OSwyLjEyMSwwLjg3OSAgIHMxLjUzNS0wLjI5MywyLjEyMS0wLjg3OWMxLjE3Mi0xLjE3MSwxLjE3Mi0zLjA3MSwwLTQuMjQyTDI4LjIyOCwyMy45ODZ6IiBkYXRhLW9yaWdpbmFsPSIjMDAwMDAwIiBjbGFzcz0iYWN0aXZlLXBhdGgiIHN0eWxlPSJmaWxsOiNGRkZGRkYiIGRhdGEtb2xkX2NvbG9yPSIjMDAwMDAwIj48L3BhdGg+CjwvZz48L2c+IDwvc3ZnPg==);
  background-color: black;
}
.filter-label-list .filter-label-item.clear-all {
  display: none;
  width: max-content;
}
.filter-label-list .filter-label-item.clear-all.active {
  display: block;
}

.post-list .list-item {
  animation: 1.5s ease both fade-in;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.aws-plist-loading {
  position: absolute;
  z-index: 9999;
  display: block;
  width: 120px;
  height: 120px;
  top: 50%;
  margin-top: -120px;
  margin-left: -120px;
  left: 50%;
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid #3498db;
  /* Blue */
  border-radius: 50%;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 2;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

@supports not (display: grid) {
  .awesome-post-list-layout[data-layout=grid][data-columns="1"] ul.post-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
  }
  .awesome-post-list-layout[data-layout=grid][data-columns="1"] ul.post-list li {
    margin-bottom: 0.5em;
  }
  @media only screen and (min-width: 900px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="1"] ul.post-list li:nth-of-type(1n) {
      margin-right: 0;
    }
  }
  .awesome-post-list-layout[data-layout=grid][data-columns="1"] ul.post-list li:nth-of-type(1n + 2) {
    clear: left;
  }
  @media only screen and (max-width: 767px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="1"] ul.post-list li {
      flex-basis: 100%;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 899px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="1"] ul.post-list li {
      flex-basis: calc((100% / 2) - (((0.5em * 2) - 0.5em) / 2));
      margin-right: 0.5em;
    }
  }
  @media only screen and (min-width: 900px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="1"] ul.post-list li {
      flex-basis: calc((100% / 1) - (((0.5em * 1) - 0.5em) / 1));
      margin-right: 0.5em;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 899px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="1"] ul.post-list li:nth-of-type(2n) {
      margin-right: 0;
    }
  }

  .awesome-post-list-layout[data-layout=grid][data-columns="2"] ul.post-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
  }
  .awesome-post-list-layout[data-layout=grid][data-columns="2"] ul.post-list li {
    margin-bottom: 0.5em;
  }
  @media only screen and (min-width: 900px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="2"] ul.post-list li:nth-of-type(2n) {
      margin-right: 0;
    }
  }
  .awesome-post-list-layout[data-layout=grid][data-columns="2"] ul.post-list li:nth-of-type(2n + 3) {
    clear: left;
  }
  @media only screen and (max-width: 767px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="2"] ul.post-list li {
      flex-basis: 100%;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 899px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="2"] ul.post-list li {
      flex-basis: calc((100% / 2) - (((0.5em * 2) - 0.5em) / 2));
      margin-right: 0.5em;
    }
  }
  @media only screen and (min-width: 900px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="2"] ul.post-list li {
      flex-basis: calc((100% / 2) - (((0.5em * 2) - 0.5em) / 2));
      margin-right: 0.5em;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 899px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="2"] ul.post-list li:nth-of-type(2n) {
      margin-right: 0;
    }
  }

  .awesome-post-list-layout[data-layout=grid][data-columns="3"] ul.post-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
  }
  .awesome-post-list-layout[data-layout=grid][data-columns="3"] ul.post-list li {
    margin-bottom: 0.5em;
  }
  @media only screen and (min-width: 900px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="3"] ul.post-list li:nth-of-type(3n) {
      margin-right: 0;
    }
  }
  .awesome-post-list-layout[data-layout=grid][data-columns="3"] ul.post-list li:nth-of-type(3n + 4) {
    clear: left;
  }
  @media only screen and (max-width: 767px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="3"] ul.post-list li {
      flex-basis: 100%;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 899px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="3"] ul.post-list li {
      flex-basis: calc((100% / 2) - (((0.5em * 2) - 0.5em) / 2));
      margin-right: 0.5em;
    }
  }
  @media only screen and (min-width: 900px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="3"] ul.post-list li {
      flex-basis: calc((100% / 3) - (((0.5em * 3) - 0.5em) / 3));
      margin-right: 0.5em;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 899px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="3"] ul.post-list li:nth-of-type(2n) {
      margin-right: 0;
    }
  }

  .awesome-post-list-layout[data-layout=grid][data-columns="4"] ul.post-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
  }
  .awesome-post-list-layout[data-layout=grid][data-columns="4"] ul.post-list li {
    margin-bottom: 0.5em;
  }
  @media only screen and (min-width: 900px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="4"] ul.post-list li:nth-of-type(4n) {
      margin-right: 0;
    }
  }
  .awesome-post-list-layout[data-layout=grid][data-columns="4"] ul.post-list li:nth-of-type(4n + 5) {
    clear: left;
  }
  @media only screen and (max-width: 767px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="4"] ul.post-list li {
      flex-basis: 100%;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 899px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="4"] ul.post-list li {
      flex-basis: calc((100% / 2) - (((0.5em * 2) - 0.5em) / 2));
      margin-right: 0.5em;
    }
  }
  @media only screen and (min-width: 900px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="4"] ul.post-list li {
      flex-basis: calc((100% / 4) - (((0.5em * 4) - 0.5em) / 4));
      margin-right: 0.5em;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 899px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="4"] ul.post-list li:nth-of-type(2n) {
      margin-right: 0;
    }
  }

  .awesome-post-list-layout[data-layout=grid][data-columns="5"] ul.post-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
  }
  .awesome-post-list-layout[data-layout=grid][data-columns="5"] ul.post-list li {
    margin-bottom: 0.5em;
  }
  @media only screen and (min-width: 900px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="5"] ul.post-list li:nth-of-type(5n) {
      margin-right: 0;
    }
  }
  .awesome-post-list-layout[data-layout=grid][data-columns="5"] ul.post-list li:nth-of-type(5n + 6) {
    clear: left;
  }
  @media only screen and (max-width: 767px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="5"] ul.post-list li {
      flex-basis: 100%;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 899px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="5"] ul.post-list li {
      flex-basis: calc((100% / 2) - (((0.5em * 2) - 0.5em) / 2));
      margin-right: 0.5em;
    }
  }
  @media only screen and (min-width: 900px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="5"] ul.post-list li {
      flex-basis: calc((100% / 5) - (((0.5em * 5) - 0.5em) / 5));
      margin-right: 0.5em;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 899px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="5"] ul.post-list li:nth-of-type(2n) {
      margin-right: 0;
    }
  }

  .awesome-post-list-layout[data-layout=grid][data-columns="6"] ul.post-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
  }
  .awesome-post-list-layout[data-layout=grid][data-columns="6"] ul.post-list li {
    margin-bottom: 0.5em;
  }
  @media only screen and (min-width: 900px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="6"] ul.post-list li:nth-of-type(6n) {
      margin-right: 0;
    }
  }
  .awesome-post-list-layout[data-layout=grid][data-columns="6"] ul.post-list li:nth-of-type(6n + 7) {
    clear: left;
  }
  @media only screen and (max-width: 767px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="6"] ul.post-list li {
      flex-basis: 100%;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 899px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="6"] ul.post-list li {
      flex-basis: calc((100% / 2) - (((0.5em * 2) - 0.5em) / 2));
      margin-right: 0.5em;
    }
  }
  @media only screen and (min-width: 900px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="6"] ul.post-list li {
      flex-basis: calc((100% / 6) - (((0.5em * 6) - 0.5em) / 6));
      margin-right: 0.5em;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 899px) {
    .awesome-post-list-layout[data-layout=grid][data-columns="6"] ul.post-list li:nth-of-type(2n) {
      margin-right: 0;
    }
  }
}
@supports (display: grid) {
  .awesome-post-list-layout[data-layout=grid] ul.post-list .list-item {
    margin-bottom: 16px;
  }
  @media only screen and (min-width: 767px) {
    .awesome-post-list-layout[data-layout=grid] ul.post-list .list-item {
      margin: 0;
    }
  }
  @media only screen and (min-width: 767px) {
    .awesome-post-list-layout[data-layout=grid] ul.post-list {
      display: grid;
      grid-auto-rows: minmax(100px, auto);
      column-gap: 16px;
      row-gap: 16px;
    }
  }
  .awesome-post-list-layout[data-layout=grid][data-columns="1"] ul.post-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .awesome-post-list-layout[data-layout=grid][data-columns="2"] ul.post-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .awesome-post-list-layout[data-layout=grid][data-columns="3"] ul.post-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .awesome-post-list-layout[data-layout=grid][data-columns="4"] ul.post-list {
    grid-template-columns: repeat(4, 1fr);
  }
  .awesome-post-list-layout[data-layout=grid][data-columns="5"] ul.post-list {
    grid-template-columns: repeat(5, 1fr);
  }
  .awesome-post-list-layout[data-layout=grid][data-columns="6"] ul.post-list {
    grid-template-columns: repeat(6, 1fr);
  }
}
.awesome-post-list-layout ul.post-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.spinner-overlay {
  display: none;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 9999;
}

.spinner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.spinner-01 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid #009ed2;
  border-right-color: transparent;
  transform-origin: center;
  animation: spinner-01 1s linear infinite;
}

@keyframes spinner-01 {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.spinner-02 .dot {
  width: 10px;
  height: 10px;
  background: #009ed2;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 5px);
}
.spinner-02 .dot:nth-of-type(1) {
  left: 0;
  -webkit-animation: spinner-02 0.5s cubic-bezier(0.77, 0.47, 0.64, 0.28) alternate infinite;
  animation: spinner-02 0.5s cubic-bezier(0.77, 0.47, 0.64, 0.28) alternate infinite;
}
.spinner-02 .dot:nth-of-type(2) {
  left: 20px;
  -webkit-animation: spinner-02 0.5s 0.2s cubic-bezier(0.77, 0.47, 0.64, 0.28) alternate infinite;
  animation: spinner-02 0.5s 0.2s cubic-bezier(0.77, 0.47, 0.64, 0.28) alternate infinite;
}
.spinner-02 .dot:nth-of-type(3) {
  left: 40px;
  -webkit-animation: spinner-02 0.5s 0.4s cubic-bezier(0.77, 0.47, 0.64, 0.28) alternate infinite;
  animation: spinner-02 0.5s 0.4s cubic-bezier(0.77, 0.47, 0.64, 0.28) alternate infinite;
}

@-webkit-keyframes spinner-02 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes spinner-02 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.spinner-03 {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.spinner-03 .spinner-outer,
.spinner-03 .spinner-inner {
  position: absolute;
  border: 4px solid #009ed2;
  border-radius: 50%;
}
.spinner-03 .spinner-outer {
  border-left-color: transparent;
  border-bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner-03-outer 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  animation: spinner-03-outer 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}
.spinner-03 .spinner-inner {
  width: 40px;
  height: 40px;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  border-right: 0;
  border-top-color: transparent;
  -webkit-animation: spinner-03-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  animation: spinner-03-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

@-webkit-keyframes spinner-03-outer {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner-03-outer {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spinner-03-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes spinner-03-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

/*# sourceMappingURL=awesome-post-lists-public.css.map */
