﻿/*
 * Name: Atlas
 * Author: Zengenti Ltd
 * Author URI: http://zengenti.com
 * Description: A modern front-end framework
 * Version: 0.0.1
 */
/**
 * Utilities
 */
/**
 * Grid HTML classes
 */
/**
 * Align classes
 */
/**
 * Vertical align middle
 */
/**
 * Clearfix
 */
/**
 * Makes an element visually hidden, but accessible
 * @see http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
/**
 * Turns off the element-invisible effect
 */
/**
 * RGBA fallback
 */
/**
 * Input placeholder color
 */
/**
 * Icons
 */
/**
 * Icons fallback
 */
/**
 * Aspect ratio
 */
/**
 * Calculate columns
 */
/**
 * Strip unit
 * It strips the unit of measure and returns it
 */
/**
 * Convert to REM
 */
/**
 * REM calc
 */
/**
 * Assets paths
 */
/**
 * Base
 */
/**
 * Global
 */
/**
 * Breakpoints
 * Override default settings from _mq.scss partial
 * https://github.com/sass-mq/sass-mq
 */
/**
 * Icons
 */
/**
 * Base
 * core elements
 */
/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */
template,
[hidden] {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/* Forms
   ========================================================================== */
/**
 * 1. Change font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
select,
textarea {
  font: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
  font-weight: bold;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

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

html {
  background: #fff;
  color: #333;
  font-family: Tahoma, Geneva, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/**
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/**
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/**
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/**
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/**
 * Responsive images
 */
img {
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
  display: inline-block;
  vertical-align: middle;
}

/**
 * Hub Site
 * Table style
 * GP - 02142023
 */

/** Two Col UL list 12102023 **/
.twoColList {
    display: flex;
    flex-wrap: wrap;
}

.twoColList li {
    width: 50%;
}

table {
    margin: 0 0 0 4px;
}

table td {
  text-align: left;
  padding: 5px 0 5px 5px;
}

table tr:nth-child(even){
  background: #fff;
}

table tr:nth-child(odd){
  background: #eee;
}

/** Image Align Left Right 02152023 **/
.imgAlignLeft {
    float: left;
    padding: 5px 5px 5px 5px;
    margin: 10px 15px 15px 0;
    outline: 1px solid #ccc;
}

.imgAlignRight {
    float: right;
    padding: 5px 5px 5px 5px;
    margin: 10px 20px 15px 15px;
    outline: 1px solid #ccc;
}

/** Blockquote 02202023 **/
blockquote {
    width: 550px;
    background: #eee;
    padding: 24px 20px 16px 25px;
    line-height: 24px;
    border: solid 4px #fff;
    outline: solid 2px #eee;
}

/* Button block - Quality Homepage 02224023 */
.qualityButtons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.qualityButtons {
    row-gap: 2em;
}

/* Card Layout - Hub Homepage 02222023 */
.btn {
  background-color: #1565C0;
  border: 1px solid #1565C0;
  color: white;
  padding: 0.5rem;
  align-self: center;
  transition-duration: 0.4s;
  cursor: pointer;
  margin:auto;
}

.btn a {
  color: white;
  display:block;
  text-align: center;
}

.btn:hover {
  background-color: #4CAF50; /* Green */
  color: white;
}

.btn--block {
  display: block;
  width: 80%;
}

.cards {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards__item {
  display: -webkit-box;
  display: flex;
  padding: 1rem;
}

.cards__item_IT {
  display: -webkit-box;
  display: flex;
  padding: 1rem;
}

li.cards__item {
    background: none !important;
}

li.cards__item_IT {
    background: none !important;
}

@media (min-width: 40rem) {
  .cards__item {
    width: 50%;
  }

  .cards__item_IT {
    width: 50%;
  }
}

@media (min-width: 56rem) {
  .cards__item {
    width: 33.3333%;
  }

  .cards__item_IT {
    width: 50%;
  }
}

.card {
  background-color: white;
  border-radius: 0.25rem;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  overflow: hidden;
}

.card:hover .card__image {
  -webkit-filter: contrast(100%);
  filter: contrast(100%);
}

.card__content {
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  padding: 1rem;
}

.card__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  -webkit-filter: contrast(70%);
  filter: contrast(70%);
  overflow: hidden;
  position: relative;
  -webkit-transition: -webkit-filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
  transition: -webkit-filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
  transition: filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
  transition: filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91), -webkit-filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
}

.card__image::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

@media (min-width: 40rem) {
  .card__image::before {
    padding-top: 66.6%;
  }
}

.card__image--CfIF {
  background-image: url(/SiteImages/Centre-for-Islamic-Finance.jpg);
}

.card__image--standards {
  background-image: url(/SiteImages/Senate-House.jpg);
}

.card__image--CfOP {
  background-image: url(/SiteImages/Centre-for-Opposition-Studies.jpg);
}

.card__image--SSE {
  background-image: url(/SiteImages/SSE.jpg);
}

.card__image--ITSupport {
  background-image: url(/ITSupport/Images/IT-Support-Portal.jpg);
}

.card__image--AccountManagement {
  background-image: url(/ITSupport/Images/Account-Management.jpg);
}

.card__image--Assessment {
  background-image: url(/SiteImages/Assessment-and-Feedback-Guide.jpg);
}

.card__image--GAME {
  background-image: url(/SiteImages/GAME.jpg);
}

.card__title {
  color: #696969;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 2px;
  
}
.card__text {
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

/**
 * CIF Site
 * GP - 02202023
 */
 .cifNewsEvent {
    width: 100%;
    /*height: 200px;*/
    height: 270px;
    padding: 5px 5px 5px 5px;
    border: solid 4px #fff;
    outline: solid 2px #eee;
    background: #eee;
}
  
  .cifNewsEventContent {
    width: 460px;
    /*height: 190px;*/
    height: 260px;
    float: left;
}

/**
 * eLearning Site
 * GP - 02222023
 */

 .moodleSection {   
    border: 4px solid #FFFFFF;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.35), 0 15px 60px 0 #FFFFFF, 0 8px 8px -5px rgba(0, 0, 0, 0.85);/* Opera 10.5, IE 9.0 */
    -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.35), 0 15px 60px 0 #fff, 0 8px 8px -5px rgba(0, 0, 0, 0.85); /* FF3.5+ */
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.35), 0 15px 60px 0px #fff, 0 8px 8px -5px rgba(0, 0, 0, 0.65); /* Saf3.0+, Chrome */
    margin: 0 0 20px 0;
    overflow: hidden;
    min-height: 200px;
}
.moodle{
    background-image: -moz-linear-gradient(center top , #e4e9ec, #C9DDEA); /* FF3.6 */
    background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #e4e9ec),color-stop(1, #C9DDEA)); /* Saf4+, Chrome */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#e4e9ec', EndColorStr='#C9DDEA'); /* IE6,IE7 */
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#e4e9ec', EndColorStr='#C9DDEA')"; /* IE8 */
    background-image: -ms-linear-gradient(top, #e4e9ec 0%, #C9DDEA 100%); /* IE10 */
}

.moodle_block ul li#moodleHeaderText {
    background: none repeat scroll 0 0 #1282C8; 
    color: #FFFFFF;
    font-family: Georgia,"Times New Roman",Times,serif;
    font-size: 18px;
    font-weight: normal;
    line-height: 30px;
}
.moodle_block ul li#moodlePilotHeaderText {
    background: none repeat scroll 0 0 #afafaf;
    color: #FFFFFF;
    font-family: Georgia,"Times New Roman",Times,serif;
    font-size: 18px;
    font-weight: normal;
    line-height: 30px;
}
.moodle_block ul {
    color: #FFFFFF;
    list-style: none outside none;
    margin-left: 0;
    margin-top: 0;
    padding: 8px 8px 0;
}
      
}
.moodleParagraph {
    margin: 10px 10px;
}

/** ELearning Alerts **/
#blocktext {
    color: #000000;
    margin: -13px 0 0 30px;
}

#infoblock {
    background-color: #4CD964;
    padding: 10px 0 0 15px;
    width: 100%;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.35), 0 42px 82px 0 #FFFFFF, 0 10px 4px -6px rgba(0, 0, 0, 0.50);
    -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.35), 0 42px 82px 0 #fff, 0 10px 4px -6px rgba(0, 0, 0, 0.50); /* FF3.5+ */
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.35), 0 42px 82px 0px #fff, 0 10px 4px -6px rgba(0, 0, 0, 0.50); /* Saf3.0+, Chrome */
    border: 3px solid white;
}

#infoblock:before {
    background-color: #537B67;
    border-radius: 3px;
    color: #FFFFFF;
    content: "\f118";
    display: block;
    float: left;
    font-family: FontAwesome;
    font-size: 1.4em;
    height: 1.6em;
    margin-left: -0.5em;
    margin-right: 0.5em;
    margin-top: -0.15em;
    padding-top: 0.12em;
    text-align: center;
    text-shadow: none;
    width: 1.7em;
}

#errorblock {
    background-color: #FF645B;
    padding: 10px 0 0 15px;
    width: 100%;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.35), 0 42px 82px 0 #FFFFFF, 0 10px 4px -6px rgba(0, 0, 0, 0.50);
    -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.35), 0 42px 82px 0 #fff, 0 10px 4px -6px rgba(0, 0, 0, 0.50); /* FF3.5+ */
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.35), 0 42px 82px 0px #fff, 0 10px 4px -6px rgba(0, 0, 0, 0.50); /* Saf3.0+, Chrome */
    border: 3px solid white;
}

#errorblock:before {
    background-color: #D3423A;
    border-radius: 3px;
    color: #FFFFFF;
    content: "\f119";
    display: block;
    float: left;
    font-family: FontAwesome;
    font-size: 1.4em;
    height: 1.6em;
    margin-left: -0.5em;
    margin-right: 0.5em;
    margin-top: -0.15em;
    padding-top: 0.12em;
    text-align: center;
    text-shadow: none;
    width: 1.7em;
}

#warningblock {
    background-color: #FFCC00;
    padding: 10px 0 0 15px;
    width: 100%;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.35), 0 42px 82px 0 #FFFFFF, 0 10px 4px -6px rgba(0, 0, 0, 0.50);
    -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.35), 0 42px 82px 0 #fff, 0 10px 4px -6px rgba(0, 0, 0, 0.50); /* FF3.5+ */
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.35), 0 42px 82px 0px #fff, 0 10px 4px -6px rgba(0, 0, 0, 0.50); /* Saf3.0+, Chrome */
    border: 3px solid white;
}

#warningblock:before {
    background-color: #FF9500;
    border-radius: 3px;
    color: #FFFFFF;
    content: "\f071";
    display: block;
    float: left;
    font-family: FontAwesome;
    font-size: 1.4em;
    height: 1.6em;
    margin-left: -0.5em;
    margin-right: 0.5em;
    margin-top: -0.15em;
    padding-top: 0.12em;
    text-align: center;
    text-shadow: none;
    width: 1.7em;
}

/**  
* Assessment and Feedback Site
* GP - 23082023
**/

/** 
Pure CSS Accordion
**/
.accordion {
    box-sizing: border-box;
    display: flex;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
    width: 100%;
}

.accordion-select {
    cursor: pointer;
    margin: 0;
    opacity: 0;
    z-index: 1;
}

.accordion-title {
    position: relative;
}

.accordion-title:not(:nth-last-child(2))::after {
    border: 1px solid transparent;
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.accordion-title span {
    bottom: 0px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    white-space: nowrap;
    width: 100%;
}

.accordion-content {
    box-sizing: border-box;
    overflow: auto;
    position: relative;
    transition: margin 0.3s ease 0.1s;
}

.accordion-select:checked + .accordion-title + .accordion-content {
    margin-bottom: 0;
    margin-right: 0;
}

/* Generated styles starts here */

.accordion {
    border-color: #d19405;
    border-radius: 8px;
    border-style: solid;
    border-width: 1px;
    flex-direction: column;
    height: auto;
} 

.accordion-title,
.accordion-select  {
    background-color: #FFC107;
    color: #161717;
    width: 100%;
    height: 40px;
    font-size: 15px;
}

.accordion-select {
    margin-bottom: -40px;
    margin-right: 0;
}

.accordion-title:not(:nth-last-child(2))::after {
    border-bottom-color: rgb(209, 148, 5);
    border-right-color: transparent;
} 

.accordion-select:hover + .accordion-title,
.accordion-select:checked + .accordion-title {
    background-color: #ffe082;
} 

 .accordion-title span  {	
    transform: rotate(0deg);
    -ms-writing-mode: lr-tb;
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
    padding-left: 20px;
    padding-right: 20px;
    line-height: 40px;
} 

.accordion-content {
    background-color: #f7f7f7;
    color: #161717;
    height: 280px;
    margin-bottom: -280px;
    margin-right: 0;
    padding: 20px;
    width: 100%;
}

/* Blockquote Style - Assessment and Feedback Site 
Source: https://codepen.io/maxds/pen/nzmMyO
*/

.assessmentBlockquote{
  display:block;
  background: #fff;
  padding: 15px 20px 15px 45px;
  margin: 0 0 20px;
  position: relative;
  
  /*Font*/
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1.2;
  color: #666;
  text-align: justify;
  
  
  /*Borders - (Optional)*/
  border-left: 15px solid #c76c0c;
  border-right: 2px solid #c76c0c;
  
  /*Box Shadow - (Optional)*/
  -moz-box-shadow: 2px 2px 15px #ccc;
  -webkit-box-shadow: 2px 2px 15px #ccc;
  box-shadow: 2px 2px 15px #ccc;
}

.assessmentBlockquote::before{
  content: "\201C"; /*Unicode for Left Double Quote*/
  
  /*Font*/
  font-family: Georgia, serif;
  font-size: 60px;
  font-weight: bold;
  color: #999;
  
  /*Positioning*/
  position: absolute;
  left: 10px;
  top:5px;
}

.assessmentBlockquote::after{
  /*Reset to make sure*/
  content: "";
}

.assessmentBlockquote a{
  text-decoration: none;
  background: #eee;
  cursor: pointer;
  padding: 0 3px;
  color: #c76c0c;
}

.assessmentBlockquote a:hover{
 color: #666;
}

.assessmentBlockquote em{
  font-style: italic;
}

/* Additional panel */

.intro-panel--l4 {
  background-color: #CFD8DC;
  border: 3px solid #78909C;
}

/**
* Triangle Home Page Nav Element
* GP - 29082023
*/

.triangleContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%
}

.triangleContainer p {
  padding: 0;
  margin: 0;
}

.triangleText {
position: absolute;
text-align: center;
display: block;
color: #000;
transform: translate(-50%,-50%);
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 1.3em;
top: 115px;
box-sizing: border-box;
padding: 30px 0;
}

.triangular-button {
  display: inline-block;
  position: relative;
  padding: 100px 150px;
  text-decoration: none;
  border: none;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  transition: background-color 0.3s ease;
}

.triangular-button-blue {
  background-color: #3498db;
}

.triangular-button-blue:hover {
  background-color: #64B5F6;
}

.triangular-button-yellow {
  background-color: #FBB300;
}

.triangular-button-yellow:hover {
  background-color: #FFCA28;
}

.triangular-button-green {
  background-color: #43A047;
}

.triangular-button-green:hover {
  background-color: #66BB6A;
}

/**
* Overrides chevron bullet. Assesemnt and Feedback site
* Section menu pages 
* GP - 24082023
**/

li.select {
    background: none !important;
    margin: 0 !important;
}

/**  
* GAME Site
* GP - 22092023
**/

/** 
GAME icon cards layout
**/
.game-card-button {
  background-color: #1565C0;
  border: 1px solid #1565C0;
  color: white;
  padding: 0.5rem;
  align-self: center;
  transition-duration: 0.4s;
  cursor: pointer;
  margin:auto;
}

.game-card-button-block {
    display: block;
    width: 100%;
}

.game-card-button a {
  color: white;
  display:block;
  text-align: center;
}

.game-card-button:hover {
  background-color: #4CAF50; /* Green */
  color: white;
}

.game-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  
  .game-card {
    width: 150px; /* Adjust the width of each card as needed */
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #eee;
  }
  
  .game-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .game-card-image {
    width: 100px;
    height: 100px;
    border-radius: 50%; /* Creates a circular image */
    margin-bottom: 5px;
  }
  
  /* Adjust styles for smaller screens
  @media (max-width: 768px) {
    .game-card {
      width: 100%; /* Cards take full width on smaller screens
    }
  } */



/** END OF HUB STYLES **/

/**
 * Responsive iframe for YouTube embed code
 * GP - 07292019
 */
.resp-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}
.resp-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 98%;
    height: 100%;
    border: 0;
}

/**
 * Body element style
 */
body {
  margin: 0px;
  padding: 0px;
  font-size: 14px;
}

@media only screen and (min-width: 40.0625em) {
  body {
    background-image: url(/SiteImages/PageBackground.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center top;   
  }
}



/* GP - Remove underline on links */
a {
  /*color: #0193CF;*/
  color: #017CAD;
  text-decoration: none;
}

/**
 * Heading sizes
 */
@media only screen and (min-width: 20.0625em) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  h3 {
    font-size: 1.1875rem;
  }
  h4 {
    font-size: 1.125rem;
  }
  h5 {
    font-size: 1.0625rem;
  }
  h6 {
    font-size: 1rem;
  }
}

/** GP - Adjusted font sizes */
@media only screen and (min-width: 40.0625em) {
  h1 {
    font-size: 2.1428rem; /*30px*/
  }
  h2 {
    font-size: 1.7142rem; /*24px*/
  }
  h3 {
    font-size: 1.2857rem; /*18px*/
  }
  h4 {
    font-size: 1.25rem; /*17px*/
  }
  h5 {
    font-size: 1.1428rem; /*16px*/
  }
  h6 {
    font-size: 1rem; /*14px*/
  }
}

h1, h2, h3, h4, h5 {
  font-weight: normal;
}

/* Set font family */
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", Times, serif
}

/**
h2 {
  font-size: 30px;
}

h3 {
  font-size: 26px;
}
*/

/** GP - Chevron bullet list 02152023 */
.main-content li {
	list-style-position: outside;
	list-style-type:none;
	background: url(/SiteImages/arrowdark.gif) no-repeat 6px 8px;
	color: #333;
	margin: 0 0 10px 0;
	padding: 0 5px 0 13px;	
}

/**
 * Components
 * singular modular items, no parent-child relationship
 */
/**
 * Hide visually and from screen readers
 */
.hidden {
  display: none !important;
}

/**
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.visuallyhidden {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

/**
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  position: static !important;
  height: auto;
  width: auto;
  overflow: visible;
  clip: auto;
}

/**
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/**
 * Clearfix
 */
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

/**
 * Small
 */
@media only screen {
  .show-for-small-only,
  .show-for-small-up,
  .hide-for-medium-only,
  .hide-for-medium-up,
  .hide-for-large-only,
  .hide-for-large-up,
  .hide-for-xlarge-only,
  .hide-for-xlarge-up,
  .hide-for-xxlarge-only,
  .hide-for-xxlarge-up {
    display: inherit !important;
  }
  .hide-for-small-only,
  .hide-for-small-up,
  .show-for-medium-only,
  .show-for-medium-up,
  .show-for-large-only,
  .show-for-large-up,
  .show-for-xlarge-only,
  .show-for-xlarge-up,
  .show-for-xxlarge-only,
  .show-for-xxlarge-up {
    display: none !important;
  }
  .visible-for-small-only,
  .visible-for-small-up,
  .hidden-for-medium-only,
  .hidden-for-medium-up,
  .hidden-for-large-only,
  .hidden-for-large-up,
  .hidden-for-xlarge-only,
  .hidden-for-xlarge-up,
  .hidden-for-xxlarge-only,
  .hidden-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .hidden-for-small-only,
  .hidden-for-small-up,
  .visible-for-medium-only,
  .visible-for-medium-up,
  .visible-for-large-only,
  .visible-for-large-up,
  .visible-for-xlarge-only,
  .visible-for-xlarge-up,
  .visible-for-xxlarge-only,
  .visible-for-xxlarge-up {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
}

/**
 * Medium
 */
@media only screen and (min-width: 40.0625em) {
  .hide-for-small-only,
  .show-for-small-up,
  .show-for-medium-only,
  .show-for-medium-up,
  .hide-for-large-only,
  .hide-for-large-up,
  .hide-for-xlarge-only,
  .hide-for-xlarge-up,
  .hide-for-xxlarge-only,
  .hide-for-xxlarge-up {
    display: inherit !important;
  }
  .show-for-small-only,
  .hide-for-small-up,
  .hide-for-medium-only,
  .hide-for-medium-up,
  .show-for-large-only,
  .show-for-large-up,
  .show-for-xlarge-only,
  .show-for-xlarge-up,
  .show-for-xxlarge-only,
  .show-for-xxlarge-up {
    display: none !important;
  }
  .hidden-for-small-only,
  .visible-for-small-up,
  .visible-for-medium-only,
  .visible-for-medium-up,
  .hidden-for-large-only,
  .hidden-for-large-up,
  .hidden-for-xlarge-only,
  .hidden-for-xlarge-up,
  .hidden-for-xxlarge-only,
  .hidden-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .visible-for-small-only,
  .hidden-for-small-up,
  .hidden-for-medium-only,
  .hidden-for-medium-up,
  .visible-for-large-only,
  .visible-for-large-up,
  .visible-for-xlarge-only,
  .visible-for-xlarge-up,
  .visible-for-xxlarge-only,
  .visible-for-xxlarge-up {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
}

/**
 * Large
 */
@media only screen and (min-width: 64.0625em) {
  .hide-for-small-only,
  .show-for-small-up,
  .hide-for-medium-only,
  .show-for-medium-up,
  .show-for-large-only,
  .show-for-large-up,
  .hide-for-xlarge-only,
  .hide-for-xlarge-up,
  .hide-for-xxlarge-only,
  .hide-for-xxlarge-up {
    display: inherit !important;
  }
  .show-for-small-only,
  .hide-for-small-up,
  .show-for-medium-only,
  .hide-for-medium-up,
  .hide-for-large-only,
  .hide-for-large-up,
  .show-for-xlarge-only,
  .show-for-xlarge-up,
  .show-for-xxlarge-only,
  .show-for-xxlarge-up {
    display: none !important;
  }
  .hidden-for-small-only,
  .visible-for-small-up,
  .hidden-for-medium-only,
  .visible-for-medium-up,
  .visible-for-large-only,
  .visible-for-large-up,
  .hidden-for-xlarge-only,
  .hidden-for-xlarge-up,
  .hidden-for-xxlarge-only,
  .hidden-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .visible-for-small-only,
  .hidden-for-small-up,
  .visible-for-medium-only,
  .hidden-for-medium-up,
  .hidden-for-large-only,
  .hidden-for-large-up,
  .visible-for-xlarge-only,
  .visible-for-xlarge-up,
  .visible-for-xxlarge-only,
  .visible-for-xxlarge-up {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
}

/**
 * X-large
 */
@media only screen and (min-width: 90.0625em) {
  .hide-for-small-only,
  .show-for-small-up,
  .hide-for-medium-only,
  .show-for-medium-up,
  .hide-for-large-only,
  .show-for-large-up,
  .show-for-xlarge-only,
  .show-for-xlarge-up,
  .hide-for-xxlarge-only,
  .hide-for-xxlarge-up {
    display: inherit !important;
  }
  .show-for-small-only,
  .hide-for-small-up,
  .show-for-medium-only,
  .hide-for-medium-up,
  .show-for-large-only,
  .hide-for-large-up,
  .hide-for-xlarge-only,
  .hide-for-xlarge-up,
  .show-for-xxlarge-only,
  .show-for-xxlarge-up {
    display: none !important;
  }
  .hidden-for-small-only,
  .visible-for-small-up,
  .hidden-for-medium-only,
  .visible-for-medium-up,
  .hidden-for-large-only,
  .visible-for-large-up,
  .visible-for-xlarge-only,
  .visible-for-xlarge-up,
  .hidden-for-xxlarge-only,
  .hidden-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .visible-for-small-only,
  .hidden-for-small-up,
  .visible-for-medium-only,
  .hidden-for-medium-up,
  .visible-for-large-only,
  .hidden-for-large-up,
  .hidden-for-xlarge-only,
  .hidden-for-xlarge-up,
  .visible-for-xxlarge-only,
  .visible-for-xxlarge-up {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
}

/**
 * XX-large
 */
@media only screen and (min-width: 120.0625em) {
  .hide-for-small-only,
  .show-for-small-up,
  .hide-for-medium-only,
  .show-for-medium-up,
  .hide-for-large-only,
  .show-for-large-up,
  .hide-for-xlarge-only,
  .show-for-xlarge-up,
  .show-for-xxlarge-only,
  .show-for-xxlarge-up {
    display: inherit !important;
  }
  .show-for-small-only,
  .hide-for-small-up,
  .show-for-medium-only,
  .hide-for-medium-up,
  .show-for-large-only,
  .hide-for-large-up,
  .show-for-xlarge-only,
  .hide-for-xlarge-up,
  .hide-for-xxlarge-only,
  .hide-for-xxlarge-up {
    display: none !important;
  }
  .hidden-for-small-only,
  .visible-for-small-up,
  .hidden-for-medium-only,
  .visible-for-medium-up,
  .hidden-for-large-only,
  .visible-for-large-up,
  .hidden-for-xlarge-only,
  .visible-for-xlarge-up,
  .visible-for-xxlarge-only,
  .visible-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .visible-for-small-only,
  .hidden-for-small-up,
  .visible-for-medium-only,
  .hidden-for-medium-up,
  .visible-for-large-only,
  .hidden-for-large-up,
  .visible-for-xlarge-only,
  .hidden-for-xlarge-up,
  .hidden-for-xxlarge-only,
  .hidden-for-xxlarge-up {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
}

/**
 * Orientation targeting
 */
.show-for-landscape,
.hide-for-portrait {
  display: inherit !important;
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}

@media only screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: inherit !important;
  }
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}

@media only screen and (orientation: portrait) {
  .show-for-portrait,
  .hide-for-landscape {
    display: inherit !important;
  }
  .hide-for-portrait,
  .show-for-landscape {
    display: none !important;
  }
}

/**
 * Touch-enabled device targeting
 */
.show-for-touch {
  display: none !important;
}

.hide-for-touch {
  display: inherit !important;
}

.touchevents .show-for-touch {
  display: inherit !important;
}

.touchevents .hide-for-touch {
  display: none !important;
}

/**
 * Screen reader-specific classes
 */
.show-for-sr {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

.show-on-focus {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

.show-on-focus:focus,
.show-on-focus:active {
  position: static !important;
  height: auto;
  width: auto;
  overflow: visible;
  clip: auto;
}

/**
 * Print visibility
 */
.print-only,
.show-for-print {
  display: none !important;
}

@media print {
  .print-only,
  .show-for-print {
    display: block !important;
  }
  .hide-on-print,
  .hide-for-print {
    display: none !important;
  }
}

/**
 * Alignment classes
 */
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-justify {
  text-align: justify !important;
}

@media only screen and (max-width: 40.0525em) {
  .small-only-text-left {
    text-align: left !important;
  }
  .small-only-text-right {
    text-align: right !important;
  }
  .small-only-text-center {
    text-align: center !important;
  }
  .small-only-text-justify {
    text-align: justify !important;
  }
}

@media only screen {
  .small-text-left {
    text-align: left !important;
  }
  .small-text-right {
    text-align: right !important;
  }
  .small-text-center {
    text-align: center !important;
  }
  .small-text-justify {
    text-align: justify !important;
  }
}

@media only screen and (min-width: 40.0625em) and (max-width: 64.0525em) {
  .medium-only-text-left {
    text-align: left !important;
  }
  .medium-only-text-right {
    text-align: right !important;
  }
  .medium-only-text-center {
    text-align: center !important;
  }
  .medium-only-text-justify {
    text-align: justify !important;
  }
}

@media only screen and (min-width: 40.0625em) {
  .medium-text-left {
    text-align: left !important;
  }
  .medium-text-right {
    text-align: right !important;
  }
  .medium-text-center {
    text-align: center !important;
  }
  .medium-text-justify {
    text-align: justify !important;
  }
}

@media only screen and (min-width: 64.0625em) and (max-width: 90.0525em) {
  .large-only-text-left {
    text-align: left !important;
  }
  .large-only-text-right {
    text-align: right !important;
  }
  .large-only-text-center {
    text-align: center !important;
  }
  .large-only-text-justify {
    text-align: justify !important;
  }
}

@media only screen and (min-width: 64.0625em) {
  .large-text-left {
    text-align: left !important;
  }
  .large-text-right {
    text-align: right !important;
  }
  .large-text-center {
    text-align: center !important;
  }
  .large-text-justify {
    text-align: justify !important;
  }
}

@media only screen and (min-width: 90.0625em) and (max-width: 120.0525em) {
  .xlarge-only-text-left {
    text-align: left !important;
  }
  .xlarge-only-text-right {
    text-align: right !important;
  }
  .xlarge-only-text-center {
    text-align: center !important;
  }
  .xlarge-only-text-justify {
    text-align: justify !important;
  }
}

@media only screen and (min-width: 90.0625em) {
  .xlarge-text-left {
    text-align: left !important;
  }
  .xlarge-text-right {
    text-align: right !important;
  }
  .xlarge-text-center {
    text-align: center !important;
  }
  .xlarge-text-justify {
    text-align: justify !important;
  }
}

@media only screen and (min-width: 120.0625em) {
  .xxlarge-text-left {
    text-align: left !important;
  }
  .xxlarge-text-right {
    text-align: right !important;
  }
  .xxlarge-text-center {
    text-align: center !important;
  }
  .xxlarge-text-justify {
    text-align: justify !important;
  }
}

/**
 * Uses the $icons map defined in utilities/_variables.scss
 * Add your icon into the map and the mixin will do the rest
 *
 * If for some reason you don't want to use the icons map you can manually add in an icon, example below
 * .icon-name {
 *    font-size: rem-calc(32); // works because "width" & "height" were set on .icon using em units
 *    color: #ff0000; // works for single-colored icons, because "fill" was set to "currentColor" on .icon
 * }
 */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: currentColor;
}

/**
 * Icons
 */
/**
 * Icons fallback to PNGs
 * Uses Modernizr to detect svg support .no-svg
 * Remove if your not supporting older browsers
 */
.no-svg .icon {
  width: auto;
  height: auto;
  background-repeat: no-repeat;
  background-position: 0 0;
}

.row.column.nav-col {
  padding-left: 0;
  padding-right: 0;
}

.mobileMenuToggle {
  padding: 5px 10px;
  display: block;
  cursor: pointer;
}

.mobileMenuToggle i {
  margin-right: 10px;
}

.main-navigation {
  height: 50px;
  margin: 1px auto;
  padding: 10px 0 0 0;
  background-color: #f8ba57;
  z-index: 999;
  position: relative;
}

.main-navigation ul {
  display: none;
}

.open > ul,
ul.open {
  display: block !important;
}

.main-navigation ul {
  background: #f8ba57;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.main-navigation ul li {
  display: block;
  padding: 0.5rem 1rem;
  width: 100%;
  border-bottom: 1px solid #4d3003;
}

.main-navigation ul li a {
  text-decoration: none;
  color: #333;
  padding-left: 20px;
  display: block;
  position: relative;
}

.main-navigation ul li a:before {
  content: "";
  width: 10px;
  height: 20px;
  display: block;
  position: absolute;
  left: 0;
  background: url("../images/misc/arrowdark.gif") no-repeat 6px 8px;
}

.main-navigation ul li ul {
  margin-left: 10px;
  padding-top: 10px;
}

.main-navigation ul li ul li {
  border-bottom: none;
}

@media only screen and (min-width: 40.0625em) {
  .mobileMenuToggle {
    display: none;
  }
  .main-navigation {
    height: 50px;
    margin: 1px auto;
    padding: 10px 0 0 0;
    background-color: #f8ba57;
  }
  .main-navigation ul li a {
    display: block;
    text-decoration: none;
    padding: 5px;
    color: #000;
  }
  .main-navigation ul,
  .main-navigation ul li,
  .main-navigation ul ul {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .main-navigation ul {
    margin: 0 0 0 10px;
    width: auto;
  }
  .main-navigation ul {
    position: relative;
    z-index: 2;
    float: left;
  }
  .main-navigation ul li {
    float: left;
    line-height: 1.3em;
    vertical-align: middle;
    zoom: 1;
    padding: 0 10px;
    border-bottom: none;
    width: auto;
  }
  .main-navigation ul li a:before {
    content: none;
    padding: 0;
  }
  .main-navigation ul li:hover {
    position: relative;
    z-index: 3;
    cursor: default;
  }
  .main-navigation ul li:hover {
    /*background: #fcd9a1;*/
    background: #FFD54F;
  }
  .main-navigation ul ul {
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 3;
    width: 200px;
    /*background: #f8ba57;*/
    background: #FFECB3;
    margin: 0;
  }
  .main-navigation ul ul li {
    float: none;
  }
  .main-navigation ul ul ul {
    top: 0;
    left: 100%;
    margin: 0;
    /*GP - Add width to sub menu items*/
    width: 230px;
  }
  .main-navigation ul li:hover > ul {
    visibility: visible;
  }
  .main-navigation ul li ul {
    margin-left: 0;
    padding-top: 0;
  }
}

.landing-menu {
  background: #fff;
  border: 1px solid #b3b3b3;
  padding: 4px !important;
  margin-bottom: 2rem;
}

.landing-menu--content {
  background: #f2f2f2;
  background: linear-gradient(135deg, #f2f2f2 1%, #dcdcdc 100%);
  padding: 1rem;
}

.landing-menu--list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.landing-menu--item {
  margin: 0 0 10px 0;
  padding: 0 5px 0 13px;
  background: url("../images/misc/arrowdark.gif") no-repeat 6px 8px;
}

.landing-menu__heading {
  background: none repeat scroll 0 0 #666666;
  color: white;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: normal;
  line-height: 30px;
}

.landing-menu--item__coming-soon {
  background: none repeat scroll 0 0 #0093d0;
  color: white;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: normal;
  line-height: 30px;
}

/**
*Generic feature box styles
*/

.feature-box {
  background: #fff;
  border: 1px solid #b3b3b3;
  padding: 4px;
  margin-bottom: 2rem;
}

.feature-box .feature-box--header {
  color: #fff;
  padding: 1rem;
  text-align: center;
  background: #1b91ce;
  background: linear-gradient(135deg, #1b91ce 0%, #074d81 100%);
  line-height: 30px;
}

.feature-box .feature-box--content {
  padding: 1rem;
  background: #D8E4EB;
}

/**
*Custom feature box styles GP - 10232020
*/

/*Library Induction Series*/
.feature-box .feature-box-header--induction {
  color: #fff;
  padding: 1rem;
  text-align: left;
  background: #1b91ce;
  background: linear-gradient(135deg, #1b91ce 0%, #074d81 100%);
}

/*Library Induction Series GP - 10232020*/
.feature-box .feature-box-content--induction {
  padding: .4rem;
  background: #D8E4EB;
}

/*GP - 22042021*/
/*Reading List Feature Box*/
.feature-box .feature-box-header--readinglist {
  color: #fff;
  padding: 1rem;
  text-align: center;
  background: #1b91ce;
  background: linear-gradient(135deg, #D32F2F 0%, #C2185B 100%);
}

.feature-box .feature-box--readinglist {
  padding: 1rem;
  background: #FFCDD2;
}

/*GP - 05062022*/
/*New Sections on LO Feature Box*/
.feature-box .feature-box-header--newsections {
  color: #fff;
  padding: 1rem;
  text-align: left;
  background: #1b91ce;
  background: linear-gradient(135deg, #1b91ce 0%, #074d81 100%);
}

/**
*Font Awesome icons for custom feature box header
*GP - 07102019
*/

/*FA Face to Face Support Feature Box*/
@media only screen and (min-width:64.1em) {
  .feature-box-icon--support:before {
    font-family: FontAwesome;
    content: "\f0c0";
    font-size: 3em;
    color: #fff;
    float:left;
    margin-top: 0;
  }
}

@media only screen and (max-width:64em) {
  .feature-box-icon--support:before {
    font-family: FontAwesome;
    content: "\f0c0";
    font-size: 3em;
    color: #fff;
    float:left;
    margin-top: 0;
  }
}

/*FA Contact Us Feature Box*/
@media only screen and (min-width:64.1em) {
  .feature-box-icon--contactus:before {
    font-family: FontAwesome;
    content: "\f1fa";
    font-size: 4em;
    color: #fff;
    float:left;
    margin-top: 0;
  }
}

@media only screen and (max-width:64em) {
  .feature-box-icon--contactus:before {
    font-family: FontAwesome;
    content: "\f1fa";
    font-size: 3em;
    color: #fff;
    float:left;
    margin-top: 0;
  }
}

/*FA Face to Reading List Feature Box*/
@media only screen and (min-width:64.1em) {
  .feature-box-icon--readinglist:before {
    font-family: FontAwesome;
    content: "\f02d";
    font-size: 3em;
    color: #fff;
    float:left;
    margin-top: 0;
  }
}

@media only screen and (max-width:64em) {
  .feature-box-icon--readinglist:before {
    font-family: FontAwesome;
    content: "\f02d";
    font-size: 3em;
    color: #fff;
    float:left;
    margin-top: 0;
  }
}

/**
*GP - 10232020
*/
/*FA Library Induction Series Page Header Box*/
@media only screen and (min-width:64.1em) {
  .feature-box-icon--induction:before {
    font-family: FontAwesome;
    content: "\f05a";
    font-size: 2em;
    color: #fff;
    float:left;
    margin-right:.4em;
  }
}

@media only screen and (min-width:64em) {
  .feature-box-icon--induction:before {
    font-family: FontAwesome;
    content: "\f05a";
    font-size: 2em;
    color: #fff;
    float:left;
    margin-right:.4em;
  }
}

/**
*GP - 05062022
*/
/*FA New Sections on LO Page Header Box*/
@media only screen and (min-width:64.1em) {
  .feature-box-icon--newsections:before {
    font-family: FontAwesome;
    content: "\f005";
    font-size: 2em;
    color: #fff;
    float:left;
    margin-right:.4em;
  }
}

@media only screen and (min-width:64em) {
  .feature-box-icon--newsections:before {
    font-family: FontAwesome;
    content: "\f005";
    font-size: 2em;
    color: #fff;
    float:left;
    margin-right:.4em;
  }
}

/**
*GP - 04072022
*/
/*Image icon for accessibility statement*/
@media only screen and (min-width:64.1em) {
  .accessibility-statement-icon:before {
    font-family: FontAwesome;
    content: "\f1ae";
    font-size: 2em;
    color: #333;
    float:left;
    margin-right:.4em;
  }
}

@media only screen and (min-width:30em) {
  .accessibility-statement-icon:before {
    font-family: FontAwesome;
    content: "\f1ae";
    font-size: 2em;
    color: #333;
    float:left;
    margin-right:.4em;
  }
}

.accessibility-statement {
    margin-bottom: 30px;
}

/**
*Image icon for activity box header RH col
*GP - 07262019
*/
/*Activity*/
.feature-box-icon--activity:before {
    content: "";
    background: url(../images/LEAP/LEAP-Pentagon-Small.png) no-repeat center center;
    background-size: 100% auto;
    position: relative;
    height: 53px;
    width: 50px;
    float: left;
    margin: -0.7em -1em 0 1.5em;
}

/*Notetalker*/
.feature-box-icon--notetalker:before {
    content: "";
    background: url(../images/LEAP/Notetalker-Logo-Small.png) no-repeat center center;
    background-size: 100% auto;
    position: relative;
    height: 50px;
    width: 50px;
    float: left;
    margin: -0.7em -1em 0 1.5em;
}

/**
* GP - Define font and size for feature box 
*/
.feature-box .feature-box--header h3 {
  margin: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.6rem; 
}

/*Library Induction Series h3 GP - 10232020*/
.feature-box .feature-box-header--induction h3 {
  margin: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.6rem; 
}

/*Reading List h3 GP - 22042021*/
.feature-box .feature-box-header--readinglist h3 {
  margin: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.6rem; 
}

/*New Sections on LO h3 GP - 06052022*/
.feature-box .feature-box-header--newsections h3 {
  margin: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.6rem; 
}

/*GAME Attributes Grid GP - 25082021*/
.game_container {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}

.game_column {
  float: left;
  width: 50%;
  padding: 5px;
}

.game_row::after {
content: "";
clear: both;
display: table;
}

/**
* GP 07302019 - Styles for LEAP levels panel 
*/
.leap-levels-panel {
    border: 2px solid #aaa;
    overflow: hidden;
    width: 100%;
    min-height: 140px;
    padding-left: 8rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 0px 0px rgba(0, 0, 0, 0.35), 0px 0px 0px 0 #fff, 0px 0px 0px 4px #e6e6e6;/* Opera 10.5, IE 9.0 */
	  -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.35), 0 0px 0px 0 #fff, 0 0px 0px 4px rgba(230, 230, 230, 1); /* FF3.5+ */
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.35), 0 0px 0px 0px #fff, 0 0px 0px 4px rgba(230, 230, 230, 1); /* Saf3.0+, Chrome */
}

.level-1-bkg{
	  background-image: url("../images/LEAP/Level-Block-1.png") no-repeat scroll 0.5rem 0.5rem, -moz-linear-gradient(center top , #fff3de, #e8be71);
	  background: url("../images/LEAP/Level-Block-1.png") no-repeat scroll 0.5rem 0.5rem, -webkit-gradient(linear,left top,left bottom,color-stop(0, #fff3de),color-stop(1, #e8be71)); /* Saf4+, Chrome */
	  background: url("../images/LEAP/Level-Block-1.png") no-repeat scroll 0.5rem 0.5rem, -ms-linear-gradient(top, #FFF3DE 0%, #e8be71 100%); /* IE10 */
}

.level-2-bkg{
	  background-image: url("../images/LEAP/Level-Block-2.png") no-repeat scroll 0.5rem 0.5rem, -moz-linear-gradient(center top , #E9F8A4, #D5E48F);
    background: url("../images/LEAP/Level-Block-2.png") no-repeat scroll 0.5rem 0.5rem, -webkit-gradient(linear,left top,left bottom,color-stop(0, #E9F8A4),color-stop(1, #D5E48F)); /* Saf4+, Chrome */
    background: url("../images/LEAP/Level-Block-2.png") no-repeat scroll 0.5rem 0.5rem, -ms-linear-gradient(top, #E9F8A4 0%, #D5E48F 100%); /* IE10 */
}
.level-3-bkg{
	  background-image: url("../images/LEAP/Level-Block-3.png") no-repeat scroll 0.5rem 0.5rem, -moz-linear-gradient(center top , #e4e9ec, #C9DDEA);
    background: url("../images/LEAP/Level-Block-3.png") no-repeat scroll 0.5rem 0.5rem, -webkit-gradient(linear,left top,left bottom,color-stop(0, #e4e9ec),color-stop(1, #C9DDEA)); /* Saf4+, Chrome */
    background: url("../images/LEAP/Level-Block-3.png") no-repeat scroll 0.5rem 0.5rem, -ms-linear-gradient(top, #E4E9EC 0%, #C9DDEA 100%); /* IE10 */
}

.leap-levels-panel ul {
    color: #FFFFFF;
    list-style: none outside none;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding: 8px 8px 0 8px;
}

.leap-levels-panel ul li#level1 {
    background: none repeat scroll 0 0 #F57C00;
	  color: white;
    font-family: Georgia,"Times New Roman",Times,serif;
    font-size: 1.28rem;
    font-weight: normal;
    line-height: 30px;
    padding-left: 0.5rem;
}

.leap-levels-panel ul li#level2 {
    background: none repeat scroll 0 0 #97C02F;
	  color: white;
    font-family: Georgia,"Times New Roman",Times,serif;
    font-size: 1.28rem;
    font-weight: normal;
    line-height: 30px;
    padding-left: 0.5rem;
}
.leap-levels-panel ul li#level3 {
    background: none repeat scroll 0 0 #1282C8;
	  color: white;
    font-family: Georgia,"Times New Roman",Times,serif;
    font-size: 1.28rem;
    font-weight: normal;
    line-height: 30px;
    padding-left: 0.5rem;
}

/**
* GP 07302019 - LEAP levels cta button
*/
.leap-levels-cta {        
  display: inline-block;
	white-space: nowrap;
	background-color: #0093d0;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#0093d0), to(#004890));
	background-image: -webkit-linear-gradient(top, #0093d0, #004890);
	background-image: -moz-linear-gradient(top, #0093d0, #004890);
	background-image: -ms-linear-gradient(top, #0093d0 #004890);
	background-image: -o-linear-gradient(top, #0093d0, #004890);
	background-image: linear-gradient(top, #0093d0, #004890);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#0093d0', EndColorStr='#004890');
	border: 1px solid #777;
	padding: 0 1.5em;
	margin: 0.5em;
	font: 1.2em/2em Georgia,"Times New Roman",Times,serif;
	text-decoration: none;
	color: #fff !important;
	-moz-border-radius: .2em;
	-webkit-border-radius: .2em;
	border-radius: .2em;
	-moz-box-shadow: 0 0 1px 1px rgba(255,255,255,.8) inset, 0 1px 0 rgba(0,0,0,.3);
	-webkit-box-shadow: 0 0 1px 1px rgba(255,255,255,.8) inset, 0 1px 0 rgba(0,0,0,.3);
	box-shadow: 0 0 1px 1px rgba(255,255,255,.8) inset, 0 1px 0 rgba(0,0,0,.3);
}

.leap-levels-cta:hover {
	background-color: #ddd;        
	background-image: -webkit-gradient(linear, left top, left bottom, from(#7dc3e0), to(#578cc1));
	background-image: -webkit-linear-gradient(top, #7dc3e0, #578cc1);
	background-image: -moz-linear-gradient(top, #7dc3e0, #578cc1);
	background-image: -ms-linear-gradient(top, #7dc3e0, #578cc1);
	background-image: -o-linear-gradient(top, #7dc3e0, #578cc1);
	background-image: linear-gradient(top, #7dc3e0, #578cc1);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#7dc3e0', EndColorStr='#578cc1');        
}

.leap-levels-cta:active {
	-moz-box-shadow: 0 0 4px 2px rgba(0,0,0,.3) inset;
	-webkit-box-shadow: 0 0 4px 2px rgba(0,0,0,.3) inset;
	box-shadow: 0 0 4px 2px rgba(0,0,0,.3) inset;
	position: relative;
	top: 1px;
}

.leap-levels-cta:focus {
	outline: 0;
	background: #7dc3e0;
}    

#leap-levels-cta-container{
    margin-left:auto;
    margin-right:auto;
    width:250px;
}

.leap-levels-content {
    margin: 10px 10px;
}


/**
 * Infographic link styles - GP 06202019
 * Remove underline and set colour to white
 * Make link fill space within div
 */
.infographic--element__content a:link, .infographic--element__content a:visited {
  text-decoration: none;
  color: white !important;
}

.infographic {
  margin-bottom: 2rem;
  position: relative;
  width: 100%;
}

.infographic .infographic--element img {
  display: none;
}

/**Mobile styles*/

.infographic .infographic--element .infographic--element__content {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  background: #0d47a1;
  color: #fff;
  padding: 1rem;
  padding-right: 65px;
  width: 80%;
}

.testDiv {
  padding: 1em 0 1em 0;
}

.infographic .infographic--element .infographic--element__content:after {
  content: "";
  background-image: url("../Images/Infographic/infographic.png");
  background-size: cover;
  width: 100px;
  height: 100px;
  position: absolute;
  right: -50px;
  top: -12px;
}

@media only screen and (min-width: 40.0625em) {
  .infographic {
    overflow: hidden;
  }
  .infographic .infographic--element {
    padding: 0;
    cursor: pointer;
  }
  .infographic .infographic--element .infographic--element__content {
    display: none;
    position: absolute;
    width: 80%;
    /* height: 100px; */
    margin: 0 auto;
    border: 2px solid white;
  }
  .infographic .infographic--element .infographic--element__content:after {
    content: none;
  }
  .infographic .infographic--element:hover img {
    opacity: 0.3;
  }
  .infographic .infographic--element:hover .infographic--element__content {
    display: block;
    margin: 0px;
    z-index: 9999;
    top: 35%;
    left: 10%;
    padding: 0.2rem;
    transition-duration: 0.5s;
  }
  .infographic .infographic--element img {
    display: block;
    transition: all 0.5s ease 0s;
    float: left;
  }
  .infographic .infographic--element:nth-of-type(2n + 1) img {
    float: right;
  }
  .testDiv {       
    text-align: center;    
    padding: 0px;    
    margin: 0px;    
    line-height: 24px;    
    height: 70px;
  }
  .testLink {
    display: block;
    height: 100%;
    width: 100%;
    font-size: 18px;
    padding: 10px;
  }
  .extra {
    line-height: 45px;
    }
}

.panel {
  margin-bottom: 2rem;
  padding: 1rem;
  min-height: 70px;
  width: 100%;
}

.panel h2, .panel h3 {
  margin: 0;
}

/** GP - LEAP section intro panel */

.intro-panel {
  background-color: #fff3e0;
  border: 3px solid #f57c00;
}

.intro-panel--l2 {
  background-color: #cbed74;
  border: 3px solid #97c02f;
}

.intro-panel--l3 {
  background-color: #e1f5fe;
  border: 3px solid #1282c8;
}

.call-out-panel {
  background: url("../images/LEAP/Related-Content.png") no-repeat scroll 1rem 1rem #FFFCBA !important;
  border: 3px solid #E39F20 !important;
  padding: 1rem 1rem 1rem 8rem !important;
}

.page-banner {
  padding: 1rem;
}

.page-banner img {
  width: 100%;
}

.main-content {
  padding-top: 2rem;
}

footer {
  font-size: 0.85rem;
}

footer .row {
  border-top: 1px solid #cccccc;
  padding-top: 2rem;
}

img.invert {
  filter: invert(1);
}

.cta-button {
  /*background: #0193cf;*/
  background: #1177B6;
  color: #FFFFFF !important;
  text-decoration: none !important;
  display: block;
  margin: 10px;
  padding: 8px 15px;
  text-align: center;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 18px;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 2px 2px rgba(0, 0, 0, 0.3), 0 0 4px 1px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease 0s;
}

.cta-button:hover {
  background: #004890;
}

/** GP - Printable Handout button 20190723 */

a.printable {
  background: #1177B6 none repeat scroll 0 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 18px;
  margin: 15px;
  padding: 10px 15px 10px 42px;
  width: auto;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease 0s;
}

a.printable::before {
  content: "\f02f";
  font-family: FontAwesome;
  color: #fff;
  position: absolute;
  font-size: 20px;
  font-weight: normal;
  left: 12px;
}

a.printable:hover {
  background: #004890;
}

/** GP - Generic button 09042025 */

a.apply {
  background: #1177B6 none repeat scroll 0 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 18px;
  margin: 15px;
  padding: 10px 15px 10px 42px;
  width: auto;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease 0s;
}

a.apply::before {
  content: "\f15c";
  font-family: FontAwesome;
  color: #fff;
  position: absolute;
  font-size: 20px;
  font-weight: normal;
  left: 12px;
}

a.apply:hover {
  background: #004890;
}

/** GP - CTA Activity and Assessmnet button on content page 20190723 */

.cta-left {
  display:inline-block;
  width: 49%;
  margin-right: 10px;
}

.cta-right {
  display:inline-block;
  width: 48%;
}

.cta-activity {
  background: #1177B6 none repeat scroll 0 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  width: 100%;
  display: block;
  transition: all 0.3s ease 0s;
}

.cta-activity::before {
  content: "";
  background: url(../images/LEAP/LEAP-Pentagon.png) no-repeat center center;
  background-size: 100% auto;
  position: absolute;
  width: 76px;
  height: 80px;
  left: 1.5rem;
  margin: 5px 0 0 0;
}

.cta-activity:hover {
  background: #004890;
  cursor: pointer;
}

.cta-assessment, .cta-assessment-rhcol {
  /*background: #bac954 none repeat scroll 0 0;*/
  background: #92B238 none repeat scroll 0 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  width: 100%;
  display: block;
  transition: all 0.3s ease 0s;
}

.cta-assessment::before {
  content: "";
  background: url(../images/LEAP/LEAP-Pentagon.png) no-repeat center center;
  background-size: 100% auto;
  position: absolute;
  width: 76px;
  height: 80px;
  left: 21.9rem;
  margin: 5px 0 0 0;
}

.cta-assessment-rhcol::before {
  content: "";
  background: url(../images/LEAP/LEAP-Pentagon.png) no-repeat center center;
  background-size: 100% auto;
  position: absolute;
  width: 76px;
  height: 80px;
  margin: 5px 0 0 0;
}

.cta-assessment:hover, .cta-assessment-rhcol:hover {
  background: #607a1e;
  cursor: pointer;
}

a.cta-link {
  color:white !important;
  text-decoration: none;
  font-size: 2rem;
  display: block;
  padding: 2.2rem 2rem 2.2rem 6rem;
  width:100%;
  height:100%;
}

@media only screen and (max-width:64em) {

  .cta-left {
    display:block;
    width: 100%;
  
  }
  .cta-right {
    display: block;
    width: 100%;
    margin-top: 15px;
  }

  .cta-assessment::before {
  left: 1.5rem;
  margin: 5px 0 0 0;
  }

  .cta-assessment::before, .cta-notemaking.cta-notemaking-pattern::before, .cta-notemaking.cta-notemaking-column::before {
  left: 1.5rem;
  margin: 5px 0 0 0;
  }
}

/*
*GP - 07312019
*Note making level 2 cta buttons
*/
a.cta-link-notemaking {
  font-size: 1.5rem !important;
}

.cta-notemaking {
  background: #90A4AE none repeat scroll 0 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  width: 100%;
  display: block;
  transition: all 0.3s ease 0s;
  margin-bottom: 10px;
}
/*Left aligned*/
.cta-notemaking-linear::before {
  content: "";
  background: url(../images/LEAP/Linear-Notes-Icon.png) no-repeat center center;
  background-size: 100% auto;
  position: absolute;
  width: 76px;
  height: 80px;
  left: 1.5rem;
  margin: 5px 0 0 0;
}

.cta-notemaking-tabular::before {
  content: "";
  background: url(../images/LEAP/Tabular-Notes-Icon.png) no-repeat center center;
  background-size: 100% auto;
  position: absolute;
  width: 76px;
  height: 80px;
  left: 1.5rem;
  margin: 5px 0 0 0;
}
/*Right aligned*/
.cta-notemaking-column::before {
  content: "";
  background: url(../images/LEAP/Column-Notes-icon.png) no-repeat center center;
  background-size: 100% auto;
  position: absolute;
  width: 76px;
  height: 80px;
  left: 21.9rem;
  margin: 5px 0 0 0;
}
/*Right aligned*/
.cta-notemaking-pattern::before {
  content: "";
  background: url(../images/LEAP/Pattern-Notes-icon.png) no-repeat center center;
  background-size: 100% auto;
  position: absolute;
  width: 76px;
  height: 80px;
  left: 21.9rem;
  margin: 5px 0 0 0;
}

.cta-notemaking:hover {
  background: #607D8B;
  cursor: pointer;
}

.sidebar img {
  margin: 0 auto;
  display: block;
}

#sharing {
  background-color: #d7d7d7;
  position: relative;
  color: #000;
  list-style: none;
  width: 100%;
  padding: 0 1rem 1rem;
  margin: 0 0 1rem 0;
  display: block;
  overflow: hidden;
}

#sharing h3 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 23px;
  font-weight: normal;
  margin: 10px 0 1rem 0;
  padding: 0 0 0 0;
}

.stButton .stLarge {
    background-size: cover;
    -ms-behavior: url(https://ws.sharethis.com/images/2017/backgroundsize.min.htc);
    display: inline-block;
    height: 32px;
    width: 32px;
    position: relative;
}

.stButton {
    position: relative;
    z-index: 1;
    text-decoration: none;
    color: #000;
    display: inline-block;
    cursor: pointer;
    margin-right: 4px;
    margin-left: 5px;
    font-size: 11px;
    line-height: 16px;
}

.sys_searchcontrolstandard-themed {
  float: right;
  margin: 20px 0;
  /*GP - 09052019 Hide search control until site search fixed*/
  /*visibility: hidden;*/
}

.sys_searchcontrolstandard-themed.sys_theme-simple .sys_search-query-control label {
  width: auto;
  margin-right: 10px;
}

/**
* Styles for LEAP Search Query Box 
* GP - 10072019
*/
.sys_theme-simple .sys_search-query-control label {
	padding: .6em 0 0 0 !important;
}

.sys_theme-simple .sys_search-query-control input.sys_searchbox {
	float:left;
	width: 200px !important;
	background-color: #BBDEFB;
  transition: box-shadow 0.3s, border 0.3s;
  height: 2.625em;
  border: 0px;
  margin-right: 15px;    
  padding-left: 10px;
}

.sys_theme-simple .sys_search-query-control input.sys_button {
	margin: 0 5px 0 0 !important;
	-moz-box-shadow: inset 0px 1px 0px 0px #9acc85;
	-webkit-box-shadow: inset 0px 1px 0px 0px #9acc85;
	box-shadow: inset 0px 1px 0px 0px #9acc85;
	background-color: #517C3C;
	border: 1px solid #3b6e22;
	display: inline-block;
	cursor: pointer;
	color: #ffffff;
	padding: 6px 10px;
	text-decoration: none;
  color: #ffffff !important;
}

/**
* 2 col page panel menu - Maths and English 
* GP - 01082019
*/
.page-menu-panel{
  display: flex;
  flex-wrap: wrap;
  font-size: 1em;
  justify-content: left;
  /* font-family: 'Source Sans Pro', Arial, sans-serif; */
}

.page-menu-panel ul.page-panel{
  list-style: none;
  margin: 0;
  padding: 5px;
  display: flex;
  flex-direction: column;
  color: black;
  width: 45%; /* width of each table */
  margin-right: 30px; /* spacing between tables */
  margin-bottom: 1em;
  border: 1px solid gray;
  transition: all .5s;
}

.page-menu-panel ul.page-panel .center{
  margin: 0 auto;
  text-align: center;
}

.page-menu-panel ul.page-panel li{
  padding: 10px 10px; /* padding first two list items - non links */
  position: relative;
  border-bottom: 1px solid #dcdcdc;
}

.page-menu-panel li.select {
  padding: 0 !important; /* remove padding from list - link items */
  
}

.select a {
  display:block;
  line-height: 40px;
  padding-left: 1rem;
}

.select a:hover {
  background-color: #ECEFF1;
  
}

.page-menu-panel ul.page-panel li.title{
  font-family: Georgia,"Times New Roman",Times,serif;
  font-size: 1.28rem;
  background: rgb(40, 193, 203);
  color: white;
}

.page-menu-panel ul.page-panel:last-of-type{ /* remove right margin in very last table */
  margin-right: 0;
}

/*very last LI within UL */
.page-menu-panel ul.page-panel li:last-of-type{
  text-align: center;
  margin-top: auto; /*align last LI (button li) to the very bottom of UL */
  border: none;
}  

.page-menu-panel a.panel-button{
  background: #bac954;
  text-decoration: none;
  padding: 20px;
  display: block;
  margin: 10px auto;
  font-size:1.5rem;
  color: white;
}

.page-menu-panel a.panel-button:hover {
  background:#7fa127;
}

.panel-button-icon:before {
  content: "";
  background: url(../images/LEAP/LEAP-Pentagon-Small.png) no-repeat center center;
  background-size: 100% auto;
  position: absolute;
  width: 53px;
  height: 53px;
  left: 15px;
  margin: -18px 0;
}

/*GP - 20190828 very last LI within UL without button*/
ul.page-panel-no-button li:last-of-type{
  text-align: left !important;
  margin-top: 0 !important; /*align last LI (button li) to the very bottom of UL */
}

@media only screen and (max-width: 40.0625em) {
  .page-menu-panel ul.page-panel{
    border-radius: 0;
    width: 100%;
    margin-right: 0;
  }
  
  .page-menu-panel a.panel-button{
    display: block;
  }
}

/**
* 3 col page panel menu full width - Main section landing page 
* GP - 02082019
*/
.page-menu-panel-3col{
  display: flex;
  flex-wrap: wrap;
  font-size: 1em;
  justify-content: left;
}

.page-menu-panel-3col ul.page-panel-3col{
  list-style: none;
  margin: 0;
  padding: 5px;
  display: flex;
  flex-direction: column;
  color: black;
  width: 32%; 
  margin-right: 1em; 
  margin-bottom: 1em;
  border: 1px solid gray;
  transition: all .5s;
}

.page-menu-panel-3col ul.page-panel-3col li{
  padding: 10px 10px; 
  position: relative;
  border-bottom: 1px solid #dcdcdc;
}

.page-menu-panel-3col li.select {
  padding: 0 !important; 
  
}

.page-menu-panel-3col ul.page-panel-3col li.title{
  font-family: Georgia,"Times New Roman",Times,serif;
  font-size: 1.28rem;
  background: #01579B;
  color: white;
}

.page-menu-panel-3col ul.page-panel-3col:last-of-type{ 
  margin-right: 0;
}

/*very last LI within UL*/ 
.page-menu-panel-3col ul.page-panel-3col li:last-of-type{
    bottom-border: none;
 }  


@media only screen and (max-width: 50.0625em) {
  .page-menu-panel-3col ul.page-panel-3col{
    border-radius: 0;
    width: 100%;
    margin-right: 0;
  }
  
  .page-menu-panel-3col ul.page-panel-3col li.title {
    font-size: 1rem;
  }

}

/**
* 1 col page panel menu - Sub section landing page
* Overrides column width of 3 col layout 
* GP - 19082019
*/

.page-menu-panel-3col ul.page-panel-1col{
  width: 100% !important;
}


/**
* GP - 12102022
* Academic Writing vertical cards layout
*/

.btn_container {
  display: flex;
  justify-content: space-between;
}

/* Sart tutorial and printable buttons */
.v_btn {
  background-color: #1565C0;
  border: 1px solid #1565C0;
  color: white;
  padding: 0.5rem;
  transition-duration: 0.4s;
  cursor: pointer;
}

.v_btn a {
  color: white;
  display:block;
  text-align: center;
}

.v_btn:hover {
  background-color: #4CAF50; /* Green */
  color: white;
}

/* Assessemnt button */
.v_btn_assessment {
  background-color: #92B238;
  border: 1px solid #607a1e;
  color: white;
  padding: 0.5rem;
  transition-duration: 0.4s;
  cursor: pointer;
}

.v_btn_assessment:hover {
  background-color: #607a1e;
  border: 1px solid #607a1e;
  color: white;
}

.v_btn_assessment a {
  color: white;
  display:block;
  text-align: center;
}

/*Printable icon */
a.v_btn_printable::before {
  content: "\f02f"; /*printer icon*/
  font-family: FontAwesome;
  color: #fff;
  position: relative;
  font-size: 1.2em;
  font-weight: normal;
  padding-right: 5px;
}

/*Start tutorial icon */
a.v_btn_start::before {
  content: "\f138"; /*chevron right icon*/
  font-family: FontAwesome;
  color: #fff;
  position: relative;
  font-size: 1.2em;
  font-weight: normal;
  padding-right: 5px;
}

/*Assessment icon */
a.v_btn_assessment::before {
  content: "\f128"; /*question mark icon*/
  font-family: FontAwesome;
  color: #fff;
  position: relative;
  font-size: 1.2em;
  font-weight: normal;
  padding-right: 5px;
}

.v_btn--block {
  display: block;
  width: 33%;
}

.v_cards {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.v_cards__item {
  display: -webkit-box;
  display: flex;
  padding: 1rem;
}

.v_cards li {
  background: none;
}

@media (min-width: 40rem) {
  .v_cards__item {
    width: 50%;
  }
}

@media (min-width: 56rem) {
  .v_cards__item {
    /**width: 33.3333%;*/
    width: 100%;
  }
}

.v_card {
  background-color: white;
  /*border-radius: 0.25rem;*/
  box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: row;
  overflow: hidden;
  padding-left: 1em;
  border: 2px solid #B0BEC5;
}

.v_card:hover .card__image {
  -webkit-filter: contrast(100%);
  filter: contrast(100%);
}

.v_card__content {
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 1;
  flex: 1 40 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  padding: 1rem;
}

.v_card__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /* border-top-left-radius: 0.25rem; */
  /* border-top-right-radius: 0.25rem; */
  /* -webkit-filter: contrast(70%); */
  /* filter: contrast(70%); */
  overflow: hidden;
  position: relative;
  /* -webkit-transition: -webkit-filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91); */
  /* transition: -webkit-filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91); */
  /* transition: filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91); */
  /* transition: filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91), -webkit-filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91); */
  height: 50px;
  width: 50px;
  margin: auto;
  border-radius: 6em;
}

.v_card__image::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

@media (min-width: 40rem) {
  .v_card__image::before {
    padding-top: 66.6%;
  }
}

.v_card__image--1 {
  background-image: url(../Images/LEAP/Bullet-1.png);
}

.v_card__image--2{
  background-image: url(../Images/LEAP/Bullet-2.png);
}

.v_card__title {
  color: #696969;
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 15px;
  /*letter-spacing: 2px;*/
  
}

.v_card__text {
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  /*font-size: 1rem;*/
  /*line-height: 1.5;*/
  margin-bottom: 1.25rem;
}

/**
 * Patterns
 * objects that have children
 */
/**
 * Row
 */
.row {
  margin: 0 auto;
  max-width: 64.375rem;
  width: 100%;
}

.row:before, .row:after {
  content: " ";
  display: table;
}

.row:after {
  clear: both;
}

.row.collapse > .column {
  padding-left: 0;
  padding-right: 0;
}

.row.collapse .row {
  margin-left: 0;
  margin-right: 0;
}

.row .row {
  margin: 0 -0.9375rem;
  max-width: none;
  width: auto;
}

.row .row:before, .row .row:after {
  content: " ";
  display: table;
}

.row .row:after {
  clear: both;
}

.row .row.collapse {
  margin: 0;
  max-width: none;
  width: auto;
}

.row .row.collapse:before, .row .row.collapse:after {
  content: " ";
  display: table;
}

.row .row.collapse:after {
  clear: both;
}

/**
 * Column
 */
.column {
  position: relative;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  width: 100%;
  float: left;
}

.column.row {
  float: none;
}

/**
 * Grid HTML classes
 */
@media only screen {
  .small-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .small-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto;
  }
  .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto;
  }
  .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto;
  }
  .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto;
  }
  .small-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto;
  }
  .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto;
  }
  .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto;
  }
  .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto;
  }
  .small-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto;
  }
  .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto;
  }
  .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto;
  }
  .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto;
  }
  .small-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto;
  }
  .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto;
  }
  .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto;
  }
  .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto;
  }
  .small-1 {
    width: 8.33333%;
  }
  .small-2 {
    width: 16.66667%;
  }
  .small-3 {
    width: 25%;
  }
  .small-4 {
    width: 33.33333%;
  }
  .small-5 {
    width: 41.66667%;
  }
  .small-6 {
    width: 50%;
  }
  .small-7 {
    width: 58.33333%;
  }
  .small-8 {
    width: 66.66667%;
  }
  .small-9 {
    width: 75%;
  }
  .small-10 {
    width: 83.33333%;
  }
  .small-11 {
    width: 91.66667%;
  }
  .small-12 {
    width: 100%;
  }
  .small-offset-0 {
    margin-left: 0 !important;
  }
  .small-offset-1 {
    margin-left: 8.33333% !important;
  }
  .small-offset-2 {
    margin-left: 16.66667% !important;
  }
  .small-offset-3 {
    margin-left: 25% !important;
  }
  .small-offset-4 {
    margin-left: 33.33333% !important;
  }
  .small-offset-5 {
    margin-left: 41.66667% !important;
  }
  .small-offset-6 {
    margin-left: 50% !important;
  }
  .small-offset-7 {
    margin-left: 58.33333% !important;
  }
  .small-offset-8 {
    margin-left: 66.66667% !important;
  }
  .small-offset-9 {
    margin-left: 75% !important;
  }
  .small-offset-10 {
    margin-left: 83.33333% !important;
  }
  .small-offset-11 {
    margin-left: 91.66667% !important;
  }
  .small-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.small-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.small-centered:last-child {
    float: none;
  }
  .column.small-uncentered:last-child {
    float: left;
  }
  .column.small-uncentered.opposite {
    float: right;
  }
  .row.small-collapse > .column {
    padding-left: 0;
    padding-right: 0;
  }
  .row.small-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.small-uncollapse > .column {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
}

@media only screen and (min-width: 40.0625em) {
  .medium-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .medium-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto;
  }
  .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto;
  }
  .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto;
  }
  .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto;
  }
  .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto;
  }
  .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto;
  }
  .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto;
  }
  .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto;
  }
  .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto;
  }
  .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto;
  }
  .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto;
  }
  .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto;
  }
  .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto;
  }
  .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto;
  }
  .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto;
  }
  .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto;
  }
  .medium-1 {
    width: 8.33333%;
  }
  .medium-2 {
    width: 16.66667%;
  }
  .medium-3 {
    width: 25%;
  }
  .medium-4 {
    width: 33.33333%;
  }
  .medium-5 {
    width: 41.66667%;
  }
  .medium-6 {
    width: 50%;
  }
  .medium-7 {
    width: 58.33333%;
  }
  .medium-8 {
    width: 66.66667%;
  }
  .medium-9 {
    width: 75%;
  }
  .medium-10 {
    width: 83.33333%;
  }
  .medium-11 {
    width: 91.66667%;
  }
  .medium-12 {
    width: 100%;
  }
  .medium-offset-0 {
    margin-left: 0 !important;
  }
  .medium-offset-1 {
    margin-left: 8.33333% !important;
  }
  .medium-offset-2 {
    margin-left: 16.66667% !important;
  }
  .medium-offset-3 {
    margin-left: 25% !important;
  }
  .medium-offset-4 {
    margin-left: 33.33333% !important;
  }
  .medium-offset-5 {
    margin-left: 41.66667% !important;
  }
  .medium-offset-6 {
    margin-left: 50% !important;
  }
  .medium-offset-7 {
    margin-left: 58.33333% !important;
  }
  .medium-offset-8 {
    margin-left: 66.66667% !important;
  }
  .medium-offset-9 {
    margin-left: 75% !important;
  }
  .medium-offset-10 {
    margin-left: 83.33333% !important;
  }
  .medium-offset-11 {
    margin-left: 91.66667% !important;
  }
  .medium-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.medium-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.medium-centered:last-child {
    float: none;
  }
  .column.medium-uncentered:last-child {
    float: left;
  }
  .column.medium-uncentered.opposite {
    float: right;
  }
  .row.medium-collapse > .column {
    padding-left: 0;
    padding-right: 0;
  }
  .row.medium-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.medium-uncollapse > .column {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
}

@media only screen and (min-width: 64.0625em) {
  .large-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .large-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto;
  }
  .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto;
  }
  .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto;
  }
  .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto;
  }
  .large-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto;
  }
  .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto;
  }
  .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto;
  }
  .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto;
  }
  .large-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto;
  }
  .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto;
  }
  .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto;
  }
  .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto;
  }
  .large-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto;
  }
  .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto;
  }
  .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto;
  }
  .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto;
  }
  .large-1 {
    width: 8.33333%;
  }
  .large-2 {
    width: 16.66667%;
  }
  .large-3 {
    width: 25%;
  }
  .large-4 {
    width: 33.33333%;
  }
  .large-5 {
    width: 41.66667%;
  }
  .large-6 {
    width: 50%;
  }
  .large-7 {
    width: 58.33333%;
  }
  .large-8 {
    width: 66.66667%;
  }
  .large-9 {
    width: 75%;
  }
  .large-10 {
    width: 83.33333%;
  }
  .large-11 {
    width: 91.66667%;
  }
  .large-12 {
    width: 100%;
  }
  .large-offset-0 {
    margin-left: 0 !important;
  }
  .large-offset-1 {
    margin-left: 8.33333% !important;
  }
  .large-offset-2 {
    margin-left: 16.66667% !important;
  }
  .large-offset-3 {
    margin-left: 25% !important;
  }
  .large-offset-4 {
    margin-left: 33.33333% !important;
  }
  .large-offset-5 {
    margin-left: 41.66667% !important;
  }
  .large-offset-6 {
    margin-left: 50% !important;
  }
  .large-offset-7 {
    margin-left: 58.33333% !important;
  }
  .large-offset-8 {
    margin-left: 66.66667% !important;
  }
  .large-offset-9 {
    margin-left: 75% !important;
  }
  .large-offset-10 {
    margin-left: 83.33333% !important;
  }
  .large-offset-11 {
    margin-left: 91.66667% !important;
  }
  .large-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.large-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.large-centered:last-child {
    float: none;
  }
  .column.large-uncentered:last-child {
    float: left;
  }
  .column.large-uncentered.opposite {
    float: right;
  }
  .row.large-collapse > .column {
    padding-left: 0;
    padding-right: 0;
  }
  .row.large-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.large-uncollapse > .column {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
}

/**
 * Views
 * specific views
 */

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