/*
Theme Name: Adventure Bible v1

Author: Dubit Limited
Author URI: https://www.dubitlimited.com/

*/
/**
 * All colours available to the application
 * NOTE: Please ensure the Typescript definitions are kept up to date if these change
 * ./colours.ts
 */
/* Any element that is not in a modal must have a z-index smaller than the modal z index so that
 the modal is always on top.
*/
/* import the global styles */
/**
 * All colours available to the application
 * NOTE: Please ensure the Typescript definitions are kept up to date if these change
 * ./colours.ts
 */
/* define the pool of padding and margin values we can draw from */
.loadable {
  position: relative;
  min-height: 25vh;
}

/**
 * All colours available to the application
 * NOTE: Please ensure the Typescript definitions are kept up to date if these change
 * ./colours.ts
 */
/**
* font size definitions as used by './typography
* and pulled in as contextualized size where required.
* line height is currently applied on the body
*/
/**
* Define the list of font sizes from which the app can draw from.
* They come with the inbuilt ability to grow with the viewport.
* Exceptions, where required, should be achieved by contextually overriding in the
* contextualizing components' styling.
*
* For example, if a particular Component, "ComponentA", requires the Button's font size to be 40px, rather than 31px at
* breakpoint XLarge, then within ComponetA's styling file, at breakpoint XLarge, the button font size would be adjusted.

         BASE   S    M    L    XL   XXL  Example Usage
----------------------------------------------------
SMALL      12 | 12 | 13 | 13 | 14 | 14   Card copy
BASE       15 | 15 | 16 | 16 | 17 | 17   Default, Paragraphs, Copy
MEDIUM     16 | 16 | 18 | 18 | 20 | 20   Button text, form label
LARGE      17 | 17 | 20 | 20 | 22 | 22   Form input, H3
XLARGE     18 | 18 | 22 | 22 | 24 | 24   Form section header, H2
XXLARGE    20 | 20 | 24 | 24 | 28 | 28   H1 - Screen Title

*/
@font-face {
  font-family: "Gorrila";
  src: local("Gorrila"), url(../../assets/island-sign/Godzilla.ttf) format("woff");
}
a.button {
  text-decoration: none;
}

.button {
  align-items: center;
  background-color: white;
  border: none;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  line-height: 1;
  overflow: hidden;
  padding: 10px 15px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 100;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 16px;
  border-radius: 19px;
}
@media only screen and (min-width: 768px) {
  .button {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1200px) {
  .button {
    font-size: 20px;
  }
}
.button.icon-button {
  padding: 0;
  height: 48px;
  justify-content: center;
  width: 48px;
  border-radius: 50%;
}
.button.icon-button .icon {
  position: relative;
  top: 2px;
  width: 34px;
  height: 34px;
}
.button:active, .button:focus {
  outline: none;
}
.button .icon {
  font-size: inherit;
  color: inherit;
}
.button .icon + span,
.button span + .icon {
  margin-left: 10px;
}
.button.primary {
  background-color: #ffbc00;
  background-image: linear-gradient(to bottom, #ffdd7e, #ffbc00);
  color: white;
}
.button.primary:before {
  background-color: #ffbc00;
  border-radius: inherit;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.1s;
  width: 100%;
  z-index: -100;
}
.button.primary:hover:before, .button.primary:focus:before {
  opacity: 1;
}
.button.secondary {
  background-color: WHITE;
}
.button.delete {
  color: #fb5638;
}
.button:disabled {
  background-color: #ffedbe;
  background-image: none;
}
.button:disabled:hover:before, .button:disabled:focus:before {
  display: none;
}

/*
As the viewport increases in width, the button font size increases, meaning
we ned to ajust the rounde cornders, the values coming from a combination of
the applicable breakpoint line height, the button's vertical pading, then divided by 2
*/
@media only screen and (min-width: 768px) {
  .button {
    border-radius: 21px;
  }
  .button.icon-button {
    height: 60px;
    width: 60px;
  }
  .button.icon-button .icon {
    width: 38px;
    height: 38px;
  }
}
@media only screen and (min-width: 1200px) {
  .button {
    border-radius: 22px;
  }
}
/*
Button mixins
*/
/**
 * All colours available to the application
 * NOTE: Please ensure the Typescript definitions are kept up to date if these change
 * ./colours.ts
 */
/* define the pool of padding and margin values we can draw from */
.loadable {
  position: relative;
  min-height: 25vh;
}

/* define the pool of padding and margin values we can draw from */
/**
* font size definitions as used by './typography
* and pulled in as contextualized size where required.
* line height is currently applied on the body
*/
/**
* Define the list of font sizes from which the app can draw from.
* They come with the inbuilt ability to grow with the viewport.
* Exceptions, where required, should be achieved by contextually overriding in the
* contextualizing components' styling.
*
* For example, if a particular Component, "ComponentA", requires the Button's font size to be 40px, rather than 31px at
* breakpoint XLarge, then within ComponetA's styling file, at breakpoint XLarge, the button font size would be adjusted.

         BASE   S    M    L    XL   XXL  Example Usage
----------------------------------------------------
SMALL      12 | 12 | 13 | 13 | 14 | 14   Card copy
BASE       15 | 15 | 16 | 16 | 17 | 17   Default, Paragraphs, Copy
MEDIUM     16 | 16 | 18 | 18 | 20 | 20   Button text, form label
LARGE      17 | 17 | 20 | 20 | 22 | 22   Form input, H3
XLARGE     18 | 18 | 22 | 22 | 24 | 24   Form section header, H2
XXLARGE    20 | 20 | 24 | 24 | 28 | 28   H1 - Screen Title

*/
@font-face {
  font-family: "Gorrila";
  src: local("Gorrila"), url(../../assets/island-sign/Godzilla.ttf) format("woff");
}
/**
* used only by form field elememts, so defined here
*/
/**
* Text inputs, labels, and checkboxes all require the same left and right padding, the
* value of which is determined by the rounded corners, which are in turn determined by the line
* height and vertical padding of the TextInputs.
* We do not define one single mixin as they can be used in isolation - for example, checkboxes
*/
/**
* Form structure and layout
*/
.form {
  width: 100%;
}
.form .header .heading {
  text-align: center;
  text-transform: uppercase;
}
.form .message {
  font-size: 12px;
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .form .message {
    font-size: 13px;
  }
}
@media only screen and (min-width: 1200px) {
  .form .message {
    font-size: 14px;
  }
}
.form .message > .button {
  margin-top: 10px;
}
.form .form-group + .form-group {
  margin-top: 20px;
}
.form .form-group.form-group-info {
  font-size: 17px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .form .form-group.form-group-info {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .form .form-group.form-group-info {
    font-size: 22px;
  }
}
.form .form-section + .form-section {
  margin-top: 25px;
}
.form .form-section.form-help {
  font-size: 12px;
}
@media only screen and (min-width: 768px) {
  .form .form-section.form-help {
    font-size: 13px;
  }
}
@media only screen and (min-width: 1200px) {
  .form .form-section.form-help {
    font-size: 14px;
  }
}
.form .form-section.form-actions, .form .form-section.form-help {
  display: flex;
  justify-content: center;
}
.form .form-section.form-actions * + *, .form .form-section.form-help * + * {
  margin-left: 20px;
}
.form .form-message {
  text-align: center;
}
.form .form-message.error {
  color: #fb5638;
}
.form .form-message.success {
  color: #A1C443;
}
.form .form-field-error,
.form .form-field-hint {
  margin-top: 10px;
  text-transform: initial;
  font-size: 12px;
  padding-left: 19px;
  padding-right: 19px;
}
@media only screen and (min-width: 768px) {
  .form .form-field-error,
.form .form-field-hint {
    font-size: 13px;
  }
}
@media only screen and (min-width: 1200px) {
  .form .form-field-error,
.form .form-field-hint {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) {
  .form .form-field-error,
.form .form-field-hint {
    padding-left: 22px;
    padding-right: 22px;
  }
}
@media only screen and (min-width: 1200px) {
  .form .form-field-error,
.form .form-field-hint {
    padding-left: 26px;
    padding-right: 26px;
  }
}
.form .form-field-error {
  color: #fb5638;
}

@media only screen and (min-width: 768px) {
  .form .form-group + .form-group {
    margin-top: 20px;
  }
  .form .form-section + .form-section {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .form .message > .button {
    margin-top: 25px;
  }
  .form .form-group + .form-group {
    margin-top: 25px;
  }
  .form .form-section.form-actions * + *, .form .form-section.form-help * + * {
    margin-left: 20px;
  }
}
img {
  max-width: 100%;
}

.image {
  width: 100%;
  height: auto;
}

/*
common input resets and set up
*/
button:focus,
input:focus {
  outline: none;
}

button:disabled,
input:disabled {
  cursor: not-allowed;
}

input {
  -webkit-appearance: none;
}

/**
* stock method of hiding checkboxes and radios, but maintaining for screen readers and tabbing
* ie display: none will hide for screen readers, and you can't tab onto the input
*/
input[type=radio], input[type=checkbox] {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.screen {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  background: url(images/left-trail-line.png), url(images/right-trail-line.png), url(images/left-trail-line.png), url(images/right-trail-line.png);
  background-size: 7.5vw, 7.5vw, 7.5vw, 7.5vw;
  background-position-x: 0, 100%, 0, 100%;
  background-position-y: 5vh, 25vh, 50vh, 75vh;
  background-repeat: no-repeat;
}
.screen > .head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  max-width: 1400px;
  width: 100%;
}
.screen > .head > .logo {
  padding: 10px 0;
  width: 150px;
}
.screen .main {
  align-items: flex-start;
  display: flex;
  /**
  * The main section fills all available vertical space, pushing down the footer to at least
  * the bottom of the viewport
  */
  flex: 1;
  justify-content: center;
  width: 100%;
}
.screen .main > div {
  width: 100%;
}
.screen .container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1400px;
}
.screen .container--higher {
  position: relative;
  z-index: 2500;
}
.screen .footer {
  margin-top: 30px;
  max-width: 1400px;
}

@media only screen and (min-width: 576px) {
  .screen .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .screen > .head {
    margin-bottom: 30px;
  }
  .screen .footer {
    margin-top: 45px;
  }
}
@media only screen and (min-width: 768px) {
  .screen .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 992px) {
  .screen > .head > .logo {
    width: 220px;
  }
}
@media only screen and (min-width: 1400px) {
  .screen {
    background-position-y: 5vh, 25vh, 100vh, 100vh;
  }
  .screen .container {
    padding-left: 0;
    padding-right: 0;
  }
  .screen > .head > .logo {
    width: 250px;
  }
}
.link, .menu-item a {
  opacity: 0.8;
  text-decoration: none;
  transition: opacity 0.1s ease-in-out;
  cursor: pointer;
  color: inherit;
  text-decoration: underline;
  display: inline-block;
}
.link.selected, .link:hover, .menu-item a.selected, .menu-item a:hover {
  color: inherit;
  opacity: 1;
}
.link.image-link, .menu-item a.image-link {
  opacity: 1;
  line-height: 1;
}

/**
* generic lists scss
* default is a stacked list, where each list item occupies the full width
*/
.list {
  display: flex;
  flex-direction: column;
}
.list.empty {
  justify-content: center;
}
.list .list-item {
  flex: 1;
}

/**
 * All colours available to the application
 * NOTE: Please ensure the Typescript definitions are kept up to date if these change
 * ./colours.ts
 */
/* define the pool of padding and margin values we can draw from */
/**
 * All colours available to the application
 * NOTE: Please ensure the Typescript definitions are kept up to date if these change
 * ./colours.ts
 */
/* define the pool of padding and margin values we can draw from */
.loadable {
  position: relative;
  min-height: 25vh;
}

.panel {
  background-color: white;
  padding: 20px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0px 3px 24px rgba(0, 0, 0, 0.16);
}
.panel.right-align {
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
}
.panel.bottom-align {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

@media only screen and (min-width: 576px) {
  .panel {
    width: 80vw;
    padding: 30px;
  }
  .panel .form,
.panel .manage-islands-wizard {
    margin: 0 auto;
    max-width: 80%;
  }
  .panel .form .form,
.panel .manage-islands-wizard .form {
    max-width: initial;
  }
}
@media only screen and (min-width: 992px) {
  .panel {
    width: 70vw;
    max-width: 850px;
  }
  .panel .form,
.panel .manage-islands-wizard {
    max-width: 70%;
  }
  .panel .form .form,
.panel .manage-islands-wizard .form {
    max-width: initial;
  }
}
/**
* font size definitions as used by './typography
* and pulled in as contextualized size where required.
* line height is currently applied on the body
*/
/**
* Define the list of font sizes from which the app can draw from.
* They come with the inbuilt ability to grow with the viewport.
* Exceptions, where required, should be achieved by contextually overriding in the
* contextualizing components' styling.
*
* For example, if a particular Component, "ComponentA", requires the Button's font size to be 40px, rather than 31px at
* breakpoint XLarge, then within ComponetA's styling file, at breakpoint XLarge, the button font size would be adjusted.

         BASE   S    M    L    XL   XXL  Example Usage
----------------------------------------------------
SMALL      12 | 12 | 13 | 13 | 14 | 14   Card copy
BASE       15 | 15 | 16 | 16 | 17 | 17   Default, Paragraphs, Copy
MEDIUM     16 | 16 | 18 | 18 | 20 | 20   Button text, form label
LARGE      17 | 17 | 20 | 20 | 22 | 22   Form input, H3
XLARGE     18 | 18 | 22 | 22 | 24 | 24   Form section header, H2
XXLARGE    20 | 20 | 24 | 24 | 28 | 28   H1 - Screen Title

*/
@font-face {
  font-family: "Gorrila";
  src: local("Gorrila"), url(../../assets/island-sign/Godzilla.ttf) format("woff");
}
/**
* Set default weight for headings, remove margin as handled by heading container/layout elements
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
}

h1 {
  font-size: 20px;
}
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1200px) {
  h1 {
    font-size: 28px;
  }
}

h2 {
  font-size: 18px;
}
@media only screen and (min-width: 768px) {
  h2 {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1200px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 17px;
}
@media only screen and (min-width: 768px) {
  h3 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 16px;
}
@media only screen and (min-width: 768px) {
  h4 {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1200px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 15px;
}
@media only screen and (min-width: 768px) {
  h5 {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1200px) {
  h5 {
    font-size: 17px;
  }
}

h6 {
  font-size: 12px;
}
@media only screen and (min-width: 768px) {
  h6 {
    font-size: 13px;
  }
}
@media only screen and (min-width: 1200px) {
  h6 {
    font-size: 14px;
  }
}

body {
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1200px) {
  body {
    font-size: 17px;
  }
}

* {
  box-sizing: border-box;
}

*:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  background-color: #fff7df;
  color: black;
}

.card {
  color: white;
  padding: 0;
  margin: 0 10px;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.card a {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.card h2 {
  font-size: 20px;
  font-weight: bold;
  margin-top: -25px;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .card {
    width: 30%;
  }
  .card h2 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1200px) {
  .card h2 {
    font-size: 28px;
  }
}
.card img {
  background-color: #ffbc00;
  border: 20px solid #ffbc00;
  border-radius: 50%;
  margin-top: -80px;
  width: 150px;
}
.card p {
  font-size: 20px;
}
@media only screen and (min-width: 768px) {
  .card p {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1200px) {
  .card p {
    font-size: 28px;
  }
}
.card-container {
  border-radius: 20px;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 240px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.card-content {
  background: #ffbc00;
  padding: 25px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  flex: 1 1 auto;
}

.card-green .card-content, .card-green img {
  background-color: #A1C443;
}
.card-green img {
  border-color: #A1C443;
}

.card-blue .card-content, .card-blue img {
  background-color: #59b9f9;
}
.card-blue img {
  border-color: #59b9f9;
}

.card-red .card-content, .card-red img {
  background-color: #fb5638;
}
.card-red img {
  border-color: #fb5638;
}

.card-yellow .card-content, .card-yellow img {
  background-color: #ffbc00;
}
.card-yellow img {
  border-color: #ffbc00;
}

@media only screen and (min-width: 768px) {
  .card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .schools-card {
    margin-bottom: 60px;
    padding: 0;
  }
  .schools-card p {
    font-size: 17px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 768px) {
  .schools-card p {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1200px) {
  .schools-card p {
    font-size: 22px;
  }
}
@media only screen and (min-width: 768px) {
  .schools-card-container {
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 50%;
    padding-top: 25px;
  }
}
@media only screen and (min-width: 768px) {
  .schools-card-content {
    width: 50%;
  }
}
.categories {
  font-size: 17px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style-type: none;
  margin: 25px 0;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .categories {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .categories {
    font-size: 22px;
  }
}

.category {
  border-radius: 10px;
  background-color: #ffedbe;
  border: 3px solid transparent;
  color: inherit;
  display: block;
  padding: 10px;
  text-align: center;
  text-decoration: none;
}
.category img {
  display: none;
}
.category:hover, .category.selected {
  border-color: #ffbc00;
  border-width: 3px;
}

@media medium-screen {
  .categories {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}
.downloads .download + .download {
  margin-top: 25px;
}

.download .panel {
  max-width: 100%;
  width: auto;
}
.download .icon-button {
  bottom: 25px;
  padding: 10px;
  position: absolute;
  right: 25px;
}
.download-image {
  margin-bottom: 15px;
  position: relative;
}
.download-name {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .download-name {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1200px) {
  .download-name {
    font-size: 28px;
  }
}

@media only screen and (min-width: 768px) {
  .downloads {
    column-gap: 25px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 50px;
  }
  .downloads .download + .download {
    margin-top: 0;
  }
}
.entry {
  padding-top: 160px;
}
.entry-header {
  margin: 25px 0;
}
.entry-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .entry-title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1200px) {
  .entry-title {
    font-size: 28px;
  }
}
.entry-content {
  font-size: 17px;
}
@media only screen and (min-width: 768px) {
  .entry-content {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .entry-content {
    font-size: 22px;
  }
}
.entry-missing-text {
  margin-left: auto;
  margin-right: auto;
  max-width: 576px;
}

.head {
  position: absolute;
  top: 0;
  z-index: 3000;
}

@media only screen and (min-width: 1200px) {
  .head .button.icon-button, .head .slide-out-panel, .head .slide-out-panel-blocker {
    display: none;
  }
}
.hero {
  align-items: center;
  position: relative;
  text-align: center;
  z-index: 2000;
}
.hero.narrow .hero-container {
  padding-bottom: 20px;
  padding-top: 80px;
}
.hero.narrow .hero-container p {
  display: block;
  margin-bottom: 0;
}
.hero h1 {
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 30px;
  text-transform: uppercase;
}
.hero p {
  display: none;
  margin-bottom: 30px;
}
.hero .button .icon {
  width: 44px;
}
.hero-container {
  padding-bottom: 80px;
  padding-top: 140px;
  position: relative;
  z-index: 2002;
}
.hero-background {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  left: 0;
  opacity: 0.4;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2001;
}

.home-hero .hero-container {
  padding-bottom: 180px;
}
.home-hero + .container .card-grid {
  margin-top: -50px;
}

@media only screen and (min-width: 768px) {
  .screen .hero {
    text-align: left;
  }
  .screen .hero.narrow .hero-container {
    padding-top: 160px;
  }
  .screen .hero.home-hero {
    text-align: center;
  }
  .screen .hero.home-hero .hero-content {
    max-width: none;
  }
  .screen .hero-container {
    padding-bottom: 140px;
    padding-top: 240px;
  }
  .screen .hero-content {
    max-width: 33%;
  }
  .screen .hero p {
    display: block;
  }
}
.footer {
  padding: 10px;
  width: 100%;
  position: relative;
  font-size: 12px;
}
@media only screen and (min-width: 768px) {
  .footer {
    font-size: 13px;
  }
}
@media only screen and (min-width: 1200px) {
  .footer {
    font-size: 14px;
  }
}
.footer:after {
  content: "";
  background-color: black;
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.footer .nav {
  margin-bottom: 10px;
}
.footer .copyright {
  text-align: center;
}
.footer .list {
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  margin: 10px 0 0;
  padding-left: 0;
  list-style-type: none;
}
.footer .list:not(.social) .menu-item {
  flex: 0;
  font-weight: 700;
  white-space: nowrap;
}
.footer .list:not(.social) .menu-item + .menu-item {
  margin-left: 10px;
  position: relative;
}
.footer .list:not(.social) .menu-item + .menu-item:before {
  background-color: black;
  content: "";
  height: 75%;
  left: -15px;
  margin: 0 10px;
  position: absolute;
  top: 12.5%;
  width: 1px;
}
.footer .list.social .menu-item {
  height: 60px;
  text-indent: -9999px;
  width: 60px;
}
.footer .list.social .menu-item.facebook a {
  background-image: url("images/facebook.svg");
}
.footer .list.social .menu-item.instagram a {
  background-image: url("images/instagram.svg");
}
.footer .list.social .menu-item.pinterest a {
  background-image: url("images/pinterest.svg");
}
.footer .list.social .menu-item a {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 38px;
  display: block;
  height: 100%;
}
.footer .list.social .menu-item + .menu-item {
  margin-left: 10px;
}

@media only screen and (min-width: 768px) {
  .footer {
    margin-top: 25px;
  }
}
@media only screen and (min-width: 1200px) {
  .footer {
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
    padding: 20px;
  }
  .footer .copyright {
    order: 1;
    text-align: left;
  }
  .footer .nav {
    margin-bottom: 0;
    order: 2;
  }
  .footer .list {
    margin-left: 5px;
    margin-top: 0;
    justify-content: flex-end;
  }
}
.intro {
  font-size: 16px;
  background-color: white;
  margin-bottom: 25px;
  padding-bottom: 25px;
  padding-top: 25px;
}
@media only screen and (min-width: 768px) {
  .intro {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1200px) {
  .intro {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) {
  .intro {
    padding: 25px;
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  justify-content: center;
  align-items: center;
  display: none;
  background-color: rgba(128, 128, 128, 0.5);
  backdrop-filter: blur(4px);
  z-index: 5000;
}
.modal.show {
  display: flex;
}
.modal .fullScreenModal {
  position: fixed;
}
.modal > .panel {
  position: relative;
  background-color: white;
  margin: 0 40px;
  max-width: 90vw;
  max-height: 80vh;
  padding: 0;
  box-shadow: 0px 3px 24px rgba(0, 0, 0, 0.16);
}
.modal > .panel > .header {
  font-size: 16px;
  padding: 10px;
  background-color: #ffbc00;
  color: white;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .modal > .panel > .header {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1200px) {
  .modal > .panel > .header {
    font-size: 20px;
  }
}
.modal > .panel > .button.close {
  position: absolute;
  right: -15px;
  top: -15px;
}
.modal > .panel > .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: scroll;
}

@media only screen and (min-width: 576px) {
  .modal > .panel {
    max-width: 66vw;
    padding: 0;
  }
}
@media only screen and (min-width: 768px) {
  .modal > .panel {
    max-width: 55vw;
    padding: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .modal > .panel {
    max-width: 45vw;
    padding: 0;
  }
}
.product {
  margin-bottom: 60px;
  margin-top: 120px;
  max-width: 100%;
  width: auto;
}
.product-image {
  margin-bottom: 40px;
}
.product-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) {
  .product-name {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1200px) {
  .product-name {
    font-size: 28px;
  }
}
.product-description {
  font-size: 17px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .product-description {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .product-description {
    font-size: 22px;
  }
}
.product-finish {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) {
  .product-finish {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1200px) {
  .product-finish {
    font-size: 24px;
  }
}
.product-select {
  border-radius: 25px;
  font-size: 18px;
  appearance: none;
  background: url("images/select-bg.png") no-repeat;
  background-position: right;
  background-size: contain;
  margin-bottom: 25px;
  padding: 10px;
  width: 80%;
}
@media only screen and (min-width: 768px) {
  .product-select {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1200px) {
  .product-select {
    font-size: 24px;
  }
}
.product-options {
  display: none;
}
.product-options.selected {
  display: block;
}
.product-options ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.product-options li + li {
  margin-top: 15px;
}
.product-similar {
  font-size: 20px;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .product-similar {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1200px) {
  .product-similar {
    font-size: 28px;
  }
}

@media only screen and (min-width: 768px) {
  .product {
    display: flex;
    margin-top: 200px;
  }
  .product-image {
    flex-basis: 50%;
    margin-bottom: 0;
    order: 2;
  }
  .product-content {
    flex-basis: 50%;
    order: 1;
  }
}
.products {
  column-gap: 25px;
  display: grid;
  grid-template-columns: 1fr;
  list-style-type: none;
  margin: 25px 0;
  padding: 0;
  row-gap: 25px;
}

.product-card {
  border: 3px solid white;
  padding: 0;
  width: auto;
}
.product-card:hover {
  border-color: #ffbc00;
}
.product-card a {
  color: inherit;
  display: block;
  padding: 25px;
  text-decoration: none;
}
.product-card img {
  margin-bottom: 25px;
}
.product-card h2 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .product-card h2 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1200px) {
  .product-card h2 {
    font-size: 28px;
  }
}
.product-card p {
  font-size: 20px;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .product-card p {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1200px) {
  .product-card p {
    font-size: 28px;
  }
}

@media only screen and (min-width: 768px) {
  .products {
    grid-template-columns: repeat(3, 1fr);
  }
}
/**
* The primary nav is used within the site <header>, and the mobile menu drawer
* The two uses are mutually exclusive and its look and feel is determined by viewport size
* rather than context, therefore that styling change from xlarge viewports can be handled here, internally
*/
.primary-nav--xlarge {
  display: none;
}

.primary-nav .list {
  align-items: center;
  background-color: white;
  justify-content: flex-start;
  list-style-type: none;
  margin: 0;
  padding-left: 0;
  text-transform: uppercase;
}
.primary-nav .list > .menu-item {
  opacity: 1;
  text-align: center;
  white-space: nowrap;
}
.primary-nav .list > .menu-item a {
  border-radius: 19px;
  padding: 10px;
  text-decoration: none;
  transition: background-color 0.1s linear;
}
.primary-nav .list > .menu-item + .menu-item {
  margin-top: 10px;
}
.primary-nav .list > .current-menu-item a, .primary-nav .list > .menu-item a:hover {
  background: #ffc524;
  color: white;
}

@media only screen and (min-width: 1200px) {
  .primary-nav--xlarge {
    display: block;
  }

  .primary-nav .list {
    flex-direction: row;
    padding: 15px;
    box-shadow: 0px 3px 24px rgba(0, 0, 0, 0.16);
    font-size: 12px;
    border-radius: 52px;
  }
}
@media only screen and (min-width: 1200px) and (min-width: 768px) {
  .primary-nav .list {
    font-size: 13px;
  }
}
@media only screen and (min-width: 1200px) and (min-width: 1200px) {
  .primary-nav .list {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1200px) {
  .primary-nav .list > .menu-item a {
    border-radius: 24px;
    padding: 15px;
  }
  .primary-nav .list > .menu-item + .menu-item {
    margin-top: 0;
    margin-left: 10px;
  }
}
.slide-out-panel-blocker {
  background-color: transparent;
  left: 0;
  height: 100%;
  position: fixed;
  top: 0;
  transition: transform 0s ease-in-out;
  width: 100%;
  z-index: 500;
}
.slide-out-panel-blocker.closed {
  transform: translate3d(100%, 0, 0);
}
.slide-out-panel-blocker.open {
  transform: translate3d(0, 0, 0);
}

.slide-out-panel {
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-width: 330px;
  overflow: scroll;
  position: fixed;
  right: 0;
  top: 0;
  transition: transform 0.3s ease-in-out;
  width: 66vw;
  z-index: 1000;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.slide-out-panel .close {
  align-self: flex-end;
  box-shadow: none;
}
.slide-out-panel.right {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.slide-out-panel.icon {
  display: block;
  width: 28px;
  height: 28px;
}
.slide-out-panel.closed {
  transform: translate3d(66vw, 0, 0);
}
.slide-out-panel.open {
  overflow: hidden;
  transform: translate3d(0vw, 0, 0);
}

.readMore .addText {
    display: none;
}

/* ==========================================================================
   Native auth (/login, /register, /forgot-password, /reset-password)
   Adds the pieces that the existing .form / .panel / .button.primary stack
   does not already cover: input/label visuals, custom radio + checkbox
   faces, and the header ACCOUNT/LOGOUT pill spacing.
   ========================================================================== */
.auth-container {
  display: flex;
  justify-content: center;
  padding: 160px 0 60px;
}
@media only screen and (min-width: 768px) {
  .auth-container {
    padding-top: 180px;
  }
}
.auth-container > .panel {
  max-width: 850px;
}

/* Match the games-site gap between the SIGN-UP heading and the first field. */
.auth-container .header {
  margin-bottom: 30px;
}

/* Hold the fields at the reference width and center them inside the wider card. */
.auth-container .form-inner {
  margin: 0 auto;
  max-width: 553px;
}

/* Indent the label text to the same column as the input text and the
 * field-error copy below it (see .form .form-field-error padding). */
.auth-container .form-label {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
  padding-left: 19px;
  padding-right: 19px;
  text-transform: uppercase;
}

.auth-container .input {
  background-color: #fff;
  border: 0;
  border-radius: 26px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  padding: 12px 26px;
  width: 100%;
}
.auth-container .input:focus {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 0 0 2px #ffbc00;
  outline: none;
}

/* Two equal columns, indented to the same column as the labels/inputs so
 * PARENT lines up under the heading text and EDUCATOR sits at the midpoint. */
.auth-container .radio-row {
  display: flex;
  margin-top: 12px;
  padding-left: 19px;
  padding-right: 19px;
}
.auth-container .radio-option {
  flex: 1 1 0;
  font-size: 17px;
}
.auth-container .checkbox-option {
  font-size: 14px;
}

.auth-container .radio-option,
.auth-container .checkbox-option {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 14px;
  position: relative;
  text-transform: uppercase;
}

.auth-container .radio-face,
.auth-container .checkbox-face {
  background-color: #fff;
  border: 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: inline-block;
  flex: 0 0 auto;
  height: 28px;
  width: 28px;
}
.auth-container .radio-face {
  border-radius: 50%;
}
.auth-container .checkbox-face {
  border-radius: 4px;
}

.auth-container input[type="radio"]:checked + .radio-face {
  background-color: #ffbc00;
}
.auth-container input[type="checkbox"]:checked + .checkbox-face {
  background-color: #ffbc00;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='white' stroke-width='2.5' d='M3 8l4 4 6-8'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}
/* Use outline (not box-shadow) for the focus ring so it does not override the
 * :checked box-shadow above, and scope to :focus-visible so a mouse click shows
 * the selected state immediately while keyboard users still get a focus ring. */
.auth-container input[type="radio"]:focus-visible + .radio-face,
.auth-container input[type="checkbox"]:focus-visible + .checkbox-face {
  outline: 3px solid rgba(255, 188, 0, 0.35);
  outline-offset: 2px;
}

.auth-container .form-section.form-actions {
  margin-top: 30px;
}
.auth-container .form-section.form-help .link {
  text-decoration: underline;
}

/* Fine-print email/privacy disclaimer that replaces the opt-in checkboxes. */
.auth-container .form-disclaimer {
  color: #555;
  font-size: 13px;
  line-height: 1.6;
  padding-left: 19px;
  padding-right: 19px;
}
.auth-container .form-disclaimer p {
  margin: 0;
}
.auth-container .form-disclaimer p + p {
  margin-top: 10px;
}
.auth-container .form-disclaimer a {
  text-decoration: underline;
}

/* Hiding the reCAPTCHA badge is permitted only because the attribution text
 * is shown in the form disclaimers (ab_recaptcha_disclaimer). */
.grecaptcha-badge {
  visibility: hidden;
}

/* Step the column indent up at the wider breakpoints, matching the responsive
 * padding on .form .form-field-error so labels, options, the disclaimer and any
 * error copy all share one left edge aligned with the input text. */
@media only screen and (min-width: 768px) {
  .auth-container .form-label,
  .auth-container .radio-row,
  .auth-container .form-disclaimer {
    padding-left: 22px;
    padding-right: 22px;
  }
}
@media only screen and (min-width: 1200px) {
  .auth-container .form-label,
  .auth-container .radio-row,
  .auth-container .form-disclaimer {
    padding-left: 26px;
    padding-right: 26px;
  }
}

/* Thank-you confirmation card: centered heading + message, no form. */
.auth-container .auth-thank-you {
  text-align: center;
}
.auth-container .auth-thank-you .header {
  margin-bottom: 16px;
}
.auth-container .auth-thank-you-message {
  color: #555;
  margin: 0 auto;
  max-width: 480px;
}

