/* Colours */

/* Layout */

/* Forms */

/* 100vw scrollbar issue fix
 * It appears that 20px is quite consistent when scrollbars are present but CSS Custom Properties are not supported (like IE 11). */

/* line 67, resources/assets/styles/common/_variables.scss */

:root {
  --scroll-bar: 8px;
}

/* Running yarn build:production will fail if 3rd party package's relative paths are not configured */

@media (max-width: 639px) {
  /* line 3, stdin */

  .block-page-tiles {
    margin-left: calc(-100vw / 2 + 100% / 2);
    margin-right: calc(-100vw / 2 + 100% / 2);
  }
}

@media (min-width: 640px) {
  /* line 9, stdin */

  .block-page-tiles__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* line 17, stdin */

.block-page-tiles__tile {
  display: block;
  margin-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 640px) {
  /* line 17, stdin */

  .block-page-tiles__tile {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(33.3% - 1em);
            flex: 1 0 calc(33.3% - 1em);
    max-width: calc(33.3% - 1em);
    margin: 0.5em;
  }
}

/* line 31, stdin */

.block-page-tiles__tile.block-page-tiles__tile:nth-of-type(6n + 1) .block-page-tiles__heading,
.block-page-tiles__tile.block-page-tiles__tile:nth-of-type(1n).is-style-lime .block-page-tiles__heading {
  background-color: #B3C535;
}

/* line 35, stdin */

.block-page-tiles__tile.block-page-tiles__tile:nth-of-type(6n + 1) .block-page-tiles__text-content,
.block-page-tiles__tile.block-page-tiles__tile:nth-of-type(1n).is-style-lime .block-page-tiles__text-content {
  background-color: rgba(179, 197, 53, 0.3);
}

/* line 42, stdin */

.block-page-tiles__tile.block-page-tiles__tile:nth-of-type(2n) .block-page-tiles__heading,
.block-page-tiles__tile.block-page-tiles__tile:nth-of-type(1n).is-style-blue .block-page-tiles__heading {
  background-color: #0091B3;
}

/* line 46, stdin */

.block-page-tiles__tile.block-page-tiles__tile:nth-of-type(2n) .block-page-tiles__text-content,
.block-page-tiles__tile.block-page-tiles__tile:nth-of-type(1n).is-style-blue .block-page-tiles__text-content {
  background-color: rgba(0, 145, 179, 0.3);
}

/* line 53, stdin */

.block-page-tiles__tile.block-page-tiles__tile:nth-of-type(3n) .block-page-tiles__heading,
.block-page-tiles__tile.block-page-tiles__tile:nth-of-type(1n).is-style-orange .block-page-tiles__heading {
  background-color: #F8981D;
}

/* line 57, stdin */

.block-page-tiles__tile.block-page-tiles__tile:nth-of-type(3n) .block-page-tiles__text-content,
.block-page-tiles__tile.block-page-tiles__tile:nth-of-type(1n).is-style-orange .block-page-tiles__text-content {
  background-color: rgba(248, 152, 29, 0.3);
}

/* line 64, stdin */

.block-page-tiles__tile.block-page-tiles__tile:nth-of-type(4n) .block-page-tiles__heading,
.block-page-tiles__tile.block-page-tiles__tile:nth-of-type(1n).is-style-teal .block-page-tiles__heading {
  background-color: #91D0AE;
}

/* line 68, stdin */

.block-page-tiles__tile.block-page-tiles__tile:nth-of-type(4n) .block-page-tiles__text-content,
.block-page-tiles__tile.block-page-tiles__tile:nth-of-type(1n).is-style-teal .block-page-tiles__text-content {
  background-color: rgba(145, 208, 174, 0.3);
}

/* line 75, stdin */

.block-page-tiles__tile.block-page-tiles__tile:nth-of-type(5n) .block-page-tiles__heading,
.block-page-tiles__tile.block-page-tiles__tile:nth-of-type(1n).is-style-purple .block-page-tiles__heading {
  background-color: #AC217C;
}

/* line 79, stdin */

.block-page-tiles__tile.block-page-tiles__tile:nth-of-type(5n) .block-page-tiles__text-content,
.block-page-tiles__tile.block-page-tiles__tile:nth-of-type(1n).is-style-purple .block-page-tiles__text-content {
  background-color: rgba(172, 33, 124, 0.2);
}

/* line 86, stdin */

.block-page-tiles__tile.block-page-tiles__tile:nth-of-type(6n) .block-page-tiles__heading,
.block-page-tiles__tile.block-page-tiles__tile:nth-of-type(1n).is-style-khaki .block-page-tiles__heading {
  background-color: #C1C0AF;
}

/* line 90, stdin */

.block-page-tiles__tile.block-page-tiles__tile:nth-of-type(6n) .block-page-tiles__text-content,
.block-page-tiles__tile.block-page-tiles__tile:nth-of-type(1n).is-style-khaki .block-page-tiles__text-content {
  background-color: rgba(193, 192, 175, 0.3);
}

/* line 96, stdin */

.block-page-tiles__text-content {
  padding-left: 1em;
  padding-right: 1em;
  -webkit-box-flex: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
}

/* line 101, stdin */

.block-page-tiles__text-content ul,
.block-page-tiles__text-content ol {
  padding-left: 1.5em;
}

/* line 107, stdin */

.block-page-tiles__image {
  min-height: 10em;
  background-size: cover;
  background-position: center;
}

@media (min-width: 640px) {
  /* line 107, stdin */

  .block-page-tiles__image {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

@media (min-width: 1248px) {
  /* line 117, stdin */

  .block-page-tiles.alignwide .block-page-tiles__image {
    min-height: 13em;
  }
}

/* line 123, stdin */

.block-page-tiles__heading {
  background-color: #B3C535;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0.7em 0.5em;
  color: #fff;
  width: 100%;
}

/* line 134, stdin */

.edit-post-visual-editor .block-page-tiles img {
  display: block !important;
}

/* line 138, stdin */

.edit-post-visual-editor .block-page-tiles .block-page-tiles__heading {
  margin-top: 0;
  color: #fff;
}

/* line 143, stdin */

.edit-post-visual-editor .block-page-tiles a {
  text-decoration: none !important;
}


/*# sourceMappingURL=blockpagetiles.css.map*/