@charset "UTF-8";
/*!

	Theme Name : Opera Awards
	Author : Firehouse Creative
	Author URI : http://firehousecreative.co.uk/

*/
/**
 * Lower range
 * @link https://github.com/zurb/foundation/blob/master/scss/foundation/_functions.scss
 *
 * @param {list} $range
 * @return Item at nth position
 */
/**
 * Upper range
 *
 * @param {list} $range
 * @return Item at nth position
 */
/**
 * Strip units
 * @link https://github.com/sass/sass/issues/533#issuecomment-11675408
 *
 * @param {int} $number
 * @return {int} Number with stripped units
 */
/**
 * Parse integer
 *
 * @param {string} $n A number like string
 * @return {int} Parsed integer
 */
/**
 * String replacement
 *
 * @param {string} $string Input string
 * @param {string} $string Needle
 * @param {string} $replace Replacement
 * @return {string} Updated string
 */
/**
 * Convert pixels to ems
 *
 * @param {int} $px Pixels value
 * @param {int} $base The base font size in pixels (optional)
 * @return {string} Ems value
 *
 * @example h1 { font-size: em(24px); }`
 */
/**
 * Photoshop tracking to CSS letter spacing
 *
 * @param {int} $val Amount of Photoshop tracking
 * @return {string} Ems value
 *
 * @example .kerned { letter-spacing: ls(14); }`
 */
/**
 * Calculate nester border radius size
 * @link http://joshnh.com/tools/get-your-nested-border-radii-right.html
 *
 * @param {value} $outer-size Size of the outher border radius
 * @param {value} $padding Padding between outer and inner box
 * @return {string} Ems value
 *
 * @example .box__inner { border-radius: nested-border-radius(80px, 20px); }`
 */
/**
 * Asset URL builder
 *
 * @param {string} $type Asset type matching folder name
 * @param {string} $file Asset file name including extension
 * @param {bool} $raw Return path without wrapping url()
 * @return {string} A url() function leading to the asset
 */
/**
 * Image asset helper
 *
 * @param {string} $file Asset file name including extension
 * @return {string} A url() function leading to the asset
 * @require {function} asset
 */
/**
 * Font asset helper
 *
 * @param {string} $file Asset file name including extension
 * @return {string} A url() function leading to the asset
 * @require {function} asset
 */
/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
       ========================================================================== */
/**
     * 1. Correct the line height in all browsers.
     * 2. Prevent adjustments of font size after orientation changes in
     *    IE on Windows Phone and in iOS.
     */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

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

/**
     * Add the correct display in IE 9-.
     */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
     * 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; }

/* Grouping content
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
figcaption,
figure {
  display: block; }

/**
     * 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 */ }

/**
     * Add the correct display in IE.
     */
main {
  display: block; }

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

/* 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 */ }

/* Text-level semantics
       ========================================================================== */
/**
     * 1. Remove the bottom border in Chrome 57- and 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; }

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

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

/**
     * 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
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
audio,
video {
  display: inline-block; }

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

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

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

/* Forms
       ========================================================================== */
/**
     * 1. Change the font styles in all browsers (opinionated).
     * 2. Remove the margin in Firefox and Safari.
     */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
     * Show the overflow in IE.
     */
button {
  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 */ }

button,
[type="button"],
[type="reset"],
[type="submit"] {
  /**
       * Remove the inner border and padding in Firefox.
       */
  /**
       * Restore the focus styles unset by the previous rule.
       */ }
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0; }
  button:-moz-focusring,
  [type="button"]:-moz-focusring,
  [type="reset"]:-moz-focusring,
  [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText; }

/**
     * Show the overflow in Edge.
     */
input {
  overflow: visible; }

/**
     * 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 macOS.
       */ }
  [type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; }

/**
     * 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 */ }

/**
     * Correct the padding in Firefox.
     */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
     * 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 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  color: inherit;
  /* 2 */
  white-space: normal;
  /* 1 */ }

/**
     * 1. Add the correct display in IE 9-.
     * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
     */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

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

/* Interactive
       ========================================================================== */
/*
     * Add the correct display in Edge, IE, and Firefox.
     */
details {
  display: block; }

/*
     * Add the correct display in all browsers.
     */
summary {
  display: list-item; }

/*
     * Add the correct display in IE 9-.
     */
menu {
  display: block; }

/* Scripting
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
canvas {
  display: inline-block; }

/**
     * Add the correct display in IE.
     */
template {
  display: none; }

/* Hidden
       ========================================================================== */
/**
     * Add the correct display in IE 10-.
     */
[hidden] {
  display: none; }

/**
 * Maintain aspect ratio
 * @param integer $ratio-or-width
 * @param integer $height
 *
 * @example
 * @include aspect-ratio(16, 9);
 * @include aspect-ratio(1.777777778);
 */
.header::before, .header::after {
  content: ' ';
  display: table; }

.header::after {
  clear: both; }

.logo {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.breadcrumbs {
  list-style: none;
  padding: 0; }
  .breadcrumbs li {
    display: inline-block;
    padding-right: 5px; }
    .breadcrumbs li::after {
      content: ' » ';
      padding-left: 5px;
      color: #333;
      font-size: 14px;
      line-height: 14px; }
    .breadcrumbs li:last-child::after {
      display: none; }
  .breadcrumbs a {
    color: #333;
    font-size: 14px;
    line-height: 14px; }

.hero {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover; }
  .hero::before {
    content: '';
    float: left;
    padding-bottom: 30%; }
  .hero::after {
    content: '';
    display: table;
    clear: both; }
  .hero h2 {
    position: absolute;
    left: 0.9375rem;
    bottom: 0.9375rem;
    color: #fff; }
  .hero__caption {
    position: absolute;
    left: 0.9375rem;
    bottom: 0.9375rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 0 10px;
    font-size: 12px; }
    @media only screen and (min-width: 40em) {
      .hero__caption {
        font-size: 14px; } }

@font-face {
  font-family: "Walkway-Semibold";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/walkway-semibold.woff") format("woff"); }

body {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  font-family: 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;
  font-weight: 300;
  line-height: 1.45;
  font-size: 100%;
  color: #333; }

h1 {
  font-family: 'Walkway-Semibold', sans-serif;
  font-weight: 300;
  font-weight: normal;
  font-size: 35px;
  line-height: 35px; }
  @media only screen and (min-width: 40em) {
    h1 {
      font-size: 40px;
      line-height: 40px; } }

h2 {
  font-family: 'Walkway-Semibold', sans-serif;
  font-weight: 300;
  font-weight: normal;
  font-size: 30px;
  line-height: 30px; }
  @media only screen and (min-width: 40em) {
    h2 {
      font-size: 35px;
      line-height: 35px; } }

h3 {
  font-family: 'Walkway-Semibold', sans-serif;
  font-weight: 300;
  font-weight: normal;
  font-size: 25px;
  line-height: 25px; }
  @media only screen and (min-width: 40em) {
    h3 {
      font-size: 30px;
      line-height: 30px; } }

h4 {
  font-family: 'Walkway-Semibold', sans-serif;
  font-weight: 300;
  font-weight: normal;
  font-size: 20px;
  line-height: 20px; }
  @media only screen and (min-width: 40em) {
    h4 {
      font-size: 25px;
      line-height: 25px; } }

h5 {
  font-family: 'Walkway-Semibold', sans-serif;
  font-weight: 300;
  font-weight: normal;
  font-size: 15px;
  line-height: 15px; }
  @media only screen and (min-width: 40em) {
    h5 {
      font-size: 20px;
      line-height: 20px; } }

h6 {
  font-family: 'Walkway-Semibold', sans-serif;
  font-weight: 300;
  font-weight: normal;
  font-size: 10px;
  line-height: 10px; }
  @media only screen and (min-width: 40em) {
    h6 {
      font-size: 15px;
      line-height: 15px; } }

.btn,
.btn-primary,
.btn-white {
  -webkit-appearance: none;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  font-size: 100%;
  cursor: pointer;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  overflow: visible; }
  .btn, .btn:hover, .btn:active, .btn:focus, .btn:visited,
  .btn-primary,
  .btn-white,
  .btn-primary:hover,
  .btn-white:hover,
  .btn-primary:active,
  .btn-white:active,
  .btn-primary:focus,
  .btn-white:focus,
  .btn-primary:visited,
  .btn-white:visited {
    text-decoration: none; }
  .btn:active, .btn:focus,
  .btn-primary:active,
  .btn-white:active,
  .btn-primary:focus,
  .btn-white:focus {
    outline: none; }
  .btn::-moz-focus-inner,
  .btn-primary::-moz-focus-inner,
  .btn-white::-moz-focus-inner {
    border: 0;
    padding: 0; }

.btn-primary {
  border: 1px solid #333; }
  .btn-primary, .btn-primary:focus, .btn-primary:active, .btn-primary:hover {
    color: #333; }
  .btn-primary:focus, .btn-primary:active, .btn-primary:hover {
    border-color: #af7b4c;
    background: #af7b4c;
    color: #fff; }

.btn-white {
  border: 1px solid #fefefe; }
  .btn-white, .btn-white:focus, .btn-white:active, .btn-white:hover {
    color: #fefefe; }
  .btn-white:focus, .btn-white:active, .btn-white:hover {
    border-color: #af7b4c;
    background: #af7b4c;
    color: #fff; }

.btn-primary {
  padding-right: 1.5em;
  padding-left: 1.5em;
  line-height: 2.5;
  height: 2.5em; }

.btn-white {
  padding-right: 1em;
  padding-left: 1em;
  line-height: 2;
  height: 2em; }

html {
  box-sizing: border-box;
  height: 100%; }

body {
  height: 100%; }

b,
strong {
  font-weight: bold; }

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

img {
  max-width: 100%; }

@media only screen and (min-width: 40em) {
  .main {
    padding-left: 250px;
    display: flex;
    flex-direction: column;
    height: 100%; } }

.content {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto; }
  .content::before, .content::after {
    content: ' ';
    display: table; }
  .content::after {
    clear: both; }
  @media only screen and (min-width: 40em) {
    .content {
      flex: 1 0 auto;
      width: 100%; } }

a {
  color: #333;
  text-decoration: none; }
  a:hover {
    color: #af7b4c; }

hr {
  border: 0;
  border-top: 1px solid #eee; }

table td {
  vertical-align: top;
  padding-right: 20px; }

.header {
  background: #fff; }
  @media only screen and (min-width: 40em) {
    .header {
      position: fixed;
      width: 250px;
      height: 100%;
      text-align: center;
      border-right: 1px solid #eee;
      padding-top: 20px; } }
  .header .top {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    z-index: 21;
    position: relative;
    padding: 10px 0; }
    .header .top::before, .header .top::after {
      content: ' ';
      display: table; }
    .header .top::after {
      clear: both; }
    @media only screen and (min-width: 40em) {
      .header .top {
        padding: 0; } }
  .header__logo {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    width: 50%;
    float: left; }
    @media screen and (min-width: 40em) {
      .header__logo {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } }
    .header__logo:last-child:not(:first-child) {
      float: right; }
    @media only screen and (min-width: 40em) {
      .header__logo {
        padding-left: 0.625rem;
        padding-right: 0.625rem;
        width: 100%;
        float: left; } }
  @media only screen and (min-width: 40em) and (min-width: 40em) {
    .header__logo {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }
    @media only screen and (min-width: 40em) {
        .header__logo:last-child:not(:first-child) {
          float: right; } }
  .header__trigger {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    width: 50%;
    float: left; }
    @media screen and (min-width: 40em) {
      .header__trigger {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } }
    .header__trigger:last-child:not(:first-child) {
      float: right; }
    @media only screen and (min-width: 40em) {
      .header__trigger {
        display: none; } }
    .header__trigger a {
      height: 18px;
      width: 24px;
      position: absolute;
      display: inline-block;
      top: 50%;
      right: 0.625rem;
      transform: translateY(-50%); }
      .header__trigger a:hover span {
        background: #af7b4c; }
    .header__trigger span {
      display: block;
      position: absolute;
      height: 3px;
      width: 100%;
      background: #333;
      opacity: 1;
      left: 0;
      transform: rotate(0deg);
      transition: 250ms ease-in-out; }
      .menu-is-open .header__trigger span:nth-child(1) {
        width: 0%;
        left: 50%; }
      .header__trigger span:nth-child(2), .header__trigger span:nth-child(3) {
        top: 6px; }
      .menu-is-open .header__trigger span:nth-child(2) {
        transform: rotate(45deg); }
      .menu-is-open .header__trigger span:nth-child(3) {
        transform: rotate(-45deg); }
      .header__trigger span:nth-child(4) {
        top: 12px; }
        .menu-is-open .header__trigger span:nth-child(4) {
          top: 6px;
          width: 0%;
          left: 50%; }
  .header .bottom {
    min-height: calc(100vh - 92px);
    position: absolute;
    width: 100%;
    background: #fff;
    transform: translateY(-100%);
    transition: transform 250ms ease-in-out;
    text-align: center;
    z-index: 20; }
    @media only screen and (min-width: 40em) {
      .header .bottom {
        transform: none;
        height: auto;
        position: static; } }
    .menu-is-open .header .bottom {
      transform: none; }
  .header__sponsor {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    width: 100%;
    float: left;
    margin-bottom: 10px; }
    @media screen and (min-width: 40em) {
      .header__sponsor {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } }
    .header__sponsor:last-child:not(:first-child) {
      float: right; }
    .header__sponsor p {
      font-size: 14px; }
  .header__menu {
    margin-bottom: 10px; }
    .header__menu ul {
      list-style: none;
      padding: 0;
      margin: 0; }
    .header__menu a {
      font-size: 16px; }
  .header__social {
    margin-bottom: 10px; }
    .header__social ul {
      list-style: none;
      padding: 0; }
    .header__social li {
      display: inline-block; }
    .header__social a {
      padding: 0 5px; }
    .header__social svg {
      width: 20px;
      fill: #333; }
      .header__social svg:hover {
        fill: #af7b4c; }
  .header__signup {
    margin-bottom: 10px; }
    @media only screen and (max-height: 43.75em) {
      .header__signup {
        display: none; } }
  .header__sponsors {
    width: 100%; }
    @media only screen and (min-width: 40em) {
      .header__sponsors {
        position: absolute;
        bottom: 0; } }
    .header__sponsors .slider {
      height: auto; }
      .header__sponsors .slider .slide {
        height: auto; }
      .header__sponsors .slider .arrow {
        padding: 5px; }
        .header__sponsors .slider .arrow svg {
          width: 10px;
          height: 10px; }
    .header__sponsors a {
      display: block; }
    .header__sponsors img {
      display: block; }
    .header__sponsors p {
      font-size: 14px; }

.footer {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid #eee;
  margin-top: 20px;
  width: 100%; }
  .footer::before, .footer::after {
    content: ' ';
    display: table; }
  .footer::after {
    clear: both; }
  .footer .bottom {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    background: #000;
    padding: 20px 0;
    color: #fff; }
    .footer .bottom::before, .footer .bottom::after {
      content: ' ';
      display: table; }
    .footer .bottom::after {
      clear: both; }
  .footer__sponsors {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px; }
    .footer__sponsors::before, .footer__sponsors::after {
      content: ' ';
      display: table; }
    .footer__sponsors::after {
      clear: both; }
    @media only screen and (min-width: 40em) {
      .footer__sponsors {
        margin-left: 0; } }
    .footer__sponsors h3 {
      padding-left: 0.625rem;
      padding-right: 0.625rem;
      width: 100%;
      float: left; }
      @media screen and (min-width: 40em) {
        .footer__sponsors h3 {
          padding-left: 0.9375rem;
          padding-right: 0.9375rem; } }
      .footer__sponsors h3:last-child:not(:first-child) {
        float: right; }
    .footer__sponsors ul {
      width: 100%;
      float: left;
      padding-left: 0;
      padding-right: 0;
      list-style: none;
      padding: 0;
      margin: 0; }
      .footer__sponsors ul:last-child:not(:first-child) {
        float: right; }
    .footer__sponsors li {
      padding-left: 0.625rem;
      padding-right: 0.625rem;
      width: 33.33333%;
      float: left;
      margin-bottom: 10px; }
      @media screen and (min-width: 40em) {
        .footer__sponsors li {
          padding-left: 0.9375rem;
          padding-right: 0.9375rem; } }
      .footer__sponsors li:last-child:not(:first-child) {
        float: right; }
    .footer__sponsors a {
      display: block; }
    .footer__sponsors img {
      width: 100%;
      display: block; }
  .footer__social {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    width: 100%;
    float: left;
    text-align: center;
    margin-bottom: 20px;
    height: 32px; }
    @media screen and (min-width: 40em) {
      .footer__social {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } }
    .footer__social:last-child:not(:first-child) {
      float: right; }
    @media only screen and (min-width: 40em) {
      .footer__social {
        text-align: left; } }
    .footer__social span {
      display: inline-block;
      font-size: 12px;
      line-height: 12px;
      height: 32px;
      vertical-align: middle; }
    .footer__social ul {
      list-style: none;
      display: inline-block;
      padding: 0;
      margin: 0; }
    .footer__social li {
      display: block;
      float: left;
      padding: 0 5px; }
    .footer__social a {
      display: block; }
      .footer__social a:hover svg {
        fill: #af7b4c; }
    .footer__social svg {
      width: 16px;
      fill: #fff;
      display: block; }
  .footer__menu {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    width: 100%;
    float: left;
    text-align: center; }
    @media screen and (min-width: 40em) {
      .footer__menu {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } }
    .footer__menu:last-child:not(:first-child) {
      float: right; }
    @media only screen and (min-width: 40em) {
      .footer__menu {
        text-align: left; } }
    .footer__menu ul {
      padding: 0;
      margin: 0; }
    .footer__menu li {
      display: inline-block;
      border-right: 1px solid #fff;
      line-height: 12px;
      padding: 0 5px; }
      @media only screen and (min-width: 40em) {
        .footer__menu li {
          float: left; } }
      .footer__menu li:first-of-type {
        padding-left: 0; }
      .footer__menu li:last-of-type {
        border-right: 0; }
    .footer__menu a {
      font-size: 12px;
      line-height: 12px;
      color: #fff;
      text-decoration: none; }
      .footer__menu a:hover {
        color: #af7b4c; }
  .footer__legal {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    width: 100%;
    float: left;
    text-align: center;
    margin-top: 10px; }
    @media screen and (min-width: 40em) {
      .footer__legal {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } }
    .footer__legal:last-child:not(:first-child) {
      float: right; }
    @media only screen and (min-width: 40em) {
      .footer__legal {
        text-align: left; } }
    .footer__legal span {
      display: inline-block;
      font-size: 12px;
      line-height: 12px;
      height: 32px;
      vertical-align: middle; }

.tile {
  position: relative;
  overflow: hidden; }
  .tile::before {
    content: '';
    float: left;
    padding-bottom: 56.25%; }
  .tile::after {
    content: '';
    display: table;
    clear: both; }
  .tile__background {
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); }
  .tile__title {
    position: absolute;
    left: 0.9375rem;
    bottom: 0.9375rem;
    color: #fff;
    margin: 0; }
  .tile a:hover .tile__title {
    color: #af7b4c; }

.form label {
  display: block;
  margin-bottom: 3px; }

.form small {
  display: block; }

.form input[type='text'] {
  width: 100%;
  padding: 5px 8px;
  border: 1px solid #333;
  line-height: 21px; }
  .form input[type='text']:focus {
    outline: none; }

.form select {
  width: 100%; }
  .form select:focus {
    outline: none; }

.form .styled-select {
  border: 1px solid #333;
  padding: 5px 5px 5px 0;
  overflow: hidden; }
  .form .styled-select select {
    border: 0;
    background: transparent; }
    .form .styled-select select:focus {
      outline: none; }

.form textarea {
  width: 100%;
  height: 150px; }

.form__field {
  margin-bottom: 15px; }
  .form__field .error {
    color: #ec6363;
    display: block;
    margin-bottom: 3px;
    font-size: 14px; }
  .form__field.is-invalid label {
    color: #ec6363; }
  .form__field.is-invalid input[type='text'] {
    width: 100%;
    padding: 10px 5px;
    border: 1px solid #ec6363; }
    .form__field.is-invalid input[type='text']:focus {
      outline: none; }

.logo {
  text-align: center;
  font-size: 14px;
  display: block;
  background: transparent url("../img/logo.png") no-repeat left top;
  background-size: contain;
  margin: 0; }
  @media only screen and (min-width: 40em) {
    .logo {
      font-size: 28px;
      background: transparent url("../img/logo.png") no-repeat center top;
      background-size: contain; } }
  .logo em,
  .logo span {
    display: block;
    line-height: 1em; }
  .logo em {
    font-size: 0.6em; }
  .logo span {
    text-transform: uppercase; }
    .logo span:first-of-type {
      font-size: 1.8em; }
    .logo span:last-of-type {
      font-size: 1.45em; }

.articles {
  width: 100%;
  float: left;
  padding-left: 0;
  padding-right: 0;
  margin-top: 20px; }
  .articles:last-child:not(:first-child) {
    float: right; }
  .articles__title {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    width: 100%;
    float: left; }
    @media screen and (min-width: 40em) {
      .articles__title {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } }
    .articles__title:last-child:not(:first-child) {
      float: right; }
  .articles--grid .article {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    width: 100%;
    float: left; }
    @media screen and (min-width: 40em) {
      .articles--grid .article {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } }
    .articles--grid .article:last-child:not(:first-child) {
      float: right; }
    @media only screen and (min-width: 40em) {
      .articles--grid .article {
        padding-left: 0.625rem;
        padding-right: 0.625rem;
        width: 33.33333%;
        float: left; } }
  @media only screen and (min-width: 40em) and (min-width: 40em) {
    .articles--grid .article {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }
    @media only screen and (min-width: 40em) {
        .articles--grid .article:last-child:not(:first-child) {
          float: right; } }
    .articles--grid .article .hero::before {
      content: '';
      float: left;
      padding-bottom: 56.25%; }
    .articles--grid .article .hero::after {
      content: '';
      display: table;
      clear: both; }
    .articles--grid .article__header, .articles--grid .article__content {
      padding: 0; }
  .articles--list .article {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    width: 100%;
    float: left;
    margin-bottom: 20px; }
    @media screen and (min-width: 40em) {
      .articles--list .article {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } }
    .articles--list .article:last-child:not(:first-child) {
      float: right; }
    .articles--list .article__img {
      float: left; }
      .articles--list .article__img img {
        display: block; }
    .articles--list .article, .articles--list .article__bd {
      overflow: hidden;
      zoom: 1; }
    .articles--list .article--rev .articles--list .article__image {
      float: right; }
    @media only screen and (max-width: 40em) {
      .articles--list .article__img {
        float: none; } }
    @media only screen and (min-width: 40em) {
      .articles--list .article__img {
        margin-right: 20px;
        max-width: 300px; } }
    .articles--list .article__bd h3 {
      margin-bottom: 20px; }
      @media only screen and (min-width: 40em) {
        .articles--list .article__bd h3 {
          margin-top: 0; } }
    .articles--list .article__bd p:first-of-type {
      margin-top: 0; }
  .articles .article {
    margin-bottom: 20px; }
    .articles .article:last-child:last-child {
      float: left; }
    .articles .article .hero {
      background-attachment: initial; }
    .articles .article__header h3 {
      margin: 15px 0; }
    .articles .article__content .btn-primary {
      text-decoration: none; }

.vm {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.2s, z-index 0s 0.2s;
  -webkit-overflow-scrolling: touch; }
  .vm-visible .vm {
    z-index: 99;
    opacity: 1;
    transition: opacity 0.2s; }
  .vm-inner {
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    position: absolute;
    overflow: hidden; }
    .vm-visible .vm-inner {
      opacity: 1;
      z-index: 100; }
  .vm-content {
    height: 100%;
    overflow: hidden; }

.modal-hider {
  display: none; }

.vm-visible {
  overflow: hidden; }

.modal {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  position: relative;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column; }
  .modal::before, .modal::after {
    content: ' ';
    display: table; }
  .modal::after {
    clear: both; }
  @media only screen and (min-width: 20em) {
    .modal {
      max-width: 90%;
      max-height: 60%; } }
  @media only screen and (min-width: 64em) {
    .modal {
      max-width: 60%;
      max-height: 50%;
      background: none; } }
  .modal__header {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    width: 100%;
    float: left;
    border-bottom: 1px solid #eee;
    position: relative;
    min-height: 20px;
    background: #fff; }
    @media screen and (min-width: 40em) {
      .modal__header {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } }
    .modal__header:last-child:not(:first-child) {
      float: right; }
    .modal__header h4 {
      margin: 10px 0; }
  .modal .close {
    position: absolute;
    z-index: 2;
    right: 15px;
    top: 50%;
    cursor: pointer;
    height: auto;
    transform: translateY(-50%); }
    .modal .close svg {
      width: 20px;
      height: 20px;
      fill: #333;
      display: block; }
  .modal__content {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    width: 100%;
    float: left;
    max-height: 100%;
    overflow-y: auto;
    background: #fff;
    flex: 1; }
    @media screen and (min-width: 40em) {
      .modal__content {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } }
    .modal__content:last-child:not(:first-child) {
      float: right; }
    .modal__content a {
      text-decoration: underline; }

.vm--gallery .modal {
  width: 100%;
  height: 100%;
  background: none;
  max-width: none;
  max-height: none; }
  .vm--gallery .modal__header, .vm--gallery .modal__content {
    background: none; }
  .vm--gallery .modal__content {
    padding: 0;
    height: 100%; }
  .vm--gallery .modal .close {
    top: 0;
    right: 0;
    left: auto;
    transform: none;
    padding: 10px;
    background: rgba(0, 0, 0, 0.25); }
    @media only screen and (min-width: 40em) {
      .vm--gallery .modal .close {
        padding: 20px; } }
    .vm--gallery .modal .close svg {
      fill: #fff; }
  .vm--gallery .modal .slides {
    max-height: 100%;
    width: 100%;
    margin: 0 auto;
    height: 100% !important; }
    @media only screen and (min-width: 40em) {
      .vm--gallery .modal .slides {
        width: 60%; } }
  .vm--gallery .modal .slide {
    height: auto;
    top: 50% !important;
    transform: translateY(-50%); }
    .vm--gallery .modal .slide__caption {
      background: none; }

.vm--gallery .slides {
  height: 100%;
  width: 100%; }

.vm--gallery .slide {
  height: 100%;
  width: 100%; }

.vm--newsletter .modal {
  min-height: 500px; }

.slider {
  height: 100%;
  position: relative; }
  .slider .slides {
    width: 100%;
    height: 100%; }
  .slider .slide {
    width: 100%;
    height: 100%;
    position: relative; }
    .slider .slide__content {
      position: relative;
      overflow: hidden; }
      .slider .slide__content::before {
        content: '';
        float: left;
        padding-bottom: 56.25%; }
      .slider .slide__content::after {
        content: '';
        display: table;
        clear: both; }
      .slider .slide__content iframe {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%; }
      .slider .slide__content img {
        max-height: 100%;
        position: relative;
        display: block;
        margin: 0 auto; }
    .slider .slide__caption {
      color: #fff;
      text-align: center;
      background: rgba(0, 0, 0, 0.5);
      padding: 10px; }
  .slider .arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    padding: 10px;
    background: rgba(0, 0, 0, 0.25);
    transform: translateY(-50%); }
    @media only screen and (min-width: 40em) {
      .slider .arrow {
        padding: 20px; } }
    .slider .arrow--previous {
      left: 0; }
    .slider .arrow--next {
      right: 0; }
    .slider .arrow.is-disabled {
      display: none; }
    .slider .arrow svg {
      fill: #fff;
      display: block;
      width: 20px;
      height: 20px; }
      @media only screen and (min-width: 40em) {
        .slider .arrow svg {
          width: 20px;
          height: 20px; } }

.newsletter__thanks {
  display: none; }

.single__header,
.page__header,
.article__header {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  width: 100%;
  float: left;
  padding-top: 20px; }
  @media screen and (min-width: 40em) {
    .single__header,
    .page__header,
    .article__header {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }
  .single__header:last-child:not(:first-child),
  .page__header:last-child:not(:first-child),
  .article__header:last-child:not(:first-child) {
    float: right; }
  .single__header .title,
  .page__header .title,
  .article__header .title {
    font-weight: normal;
    margin-top: 0; }

.single__content,
.page__content,
.article__content {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  width: 100%;
  float: left; }
  @media screen and (min-width: 40em) {
    .single__content,
    .page__content,
    .article__content {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }
  .single__content:last-child:not(:first-child),
  .page__content:last-child:not(:first-child),
  .article__content:last-child:not(:first-child) {
    float: right; }
  .single__content p:first-child,
  .page__content p:first-child,
  .article__content p:first-child {
    margin-top: 0; }
  .single__content a,
  .page__content a,
  .article__content a {
    text-decoration: underline; }

.home .slider {
  height: auto; }
  .home .slider::before {
    content: '';
    float: left;
    padding-bottom: 56.25%; }
  .home .slider::after {
    content: '';
    display: table;
    clear: both; }
  .home .slider .slides::before {
    content: '';
    float: left;
    padding-bottom: 56.25%; }
  .home .slider .slides::after {
    content: '';
    display: table;
    clear: both; }
  .home .slider .slide__caption {
    left: 1.875rem;
    right: 1.875rem;
    bottom: 0.9375rem;
    position: absolute;
    color: #fff;
    text-align: center;
    font-size: 12px; }
    @media only screen and (min-width: 40em) {
      .home .slider .slide__caption {
        width: 40%;
        left: 0.9375rem;
        right: auto;
        text-align: left;
        font-size: 14px; } }
    .home .slider .slide__caption p {
      margin: 0; }
    .home .slider .slide__caption .btn-white {
      margin-top: 5px; }
      @media only screen and (min-width: 40em) {
        .home .slider .slide__caption .btn-white {
          margin-top: 10px; } }

.home .hero::before {
  content: '';
  float: left;
  padding-bottom: 56.25%; }

.home .hero::after {
  content: '';
  display: table;
  clear: both; }

@media only screen and (min-width: 40em) {
  .home .tile {
    width: 33.33333%;
    float: left;
    padding-left: 0;
    padding-right: 0; }
    .home .tile:last-child:not(:first-child) {
      float: right; }
    .home .tile:last-child:last-child {
      float: left; } }

.home .footer {
  margin-top: 0;
  border: 0; }

.page-template-about .patrons {
  width: 100%;
  float: left;
  padding-left: 0;
  padding-right: 0; }
  .page-template-about .patrons:last-child:not(:first-child) {
    float: right; }
  .page-template-about .patrons > h3 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    width: 100%;
    float: left; }
    @media screen and (min-width: 40em) {
      .page-template-about .patrons > h3 {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } }
    .page-template-about .patrons > h3:last-child:not(:first-child) {
      float: right; }

.page-template-about .patron {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  width: 33.33333%;
  float: left; }
  @media screen and (min-width: 40em) {
    .page-template-about .patron {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }
  .page-template-about .patron:last-child:not(:first-child) {
    float: right; }
  .page-template-about .patron:last-child:last-child {
    float: left; }
  @media only screen and (min-width: 40em) {
    .page-template-about .patron {
      padding-left: 0.625rem;
      padding-right: 0.625rem;
      width: 14.28571%;
      float: left; } }
  @media only screen and (min-width: 40em) and (min-width: 40em) {
    .page-template-about .patron {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }
  @media only screen and (min-width: 40em) {
      .page-template-about .patron:last-child:not(:first-child) {
        float: right; }
      .page-template-about .patron:last-child:last-child {
        float: left; } }
  .page-template-about .patron__image img {
    width: 100%;
    display: block; }
  .page-template-about .patron__name {
    margin-top: 10px;
    padding: 0; }
    @media only screen and (max-width: 40em) {
      .page-template-about .patron__name {
        font-size: 16px;
        line-height: 16px; } }

.page-template-about .articles .article__img {
  max-width: 200px; }

@media only screen and (min-width: 40em) {
  .post-type-archive-news .tile:nth-child(n+2) {
    width: 33.33333%;
    float: left;
    padding-left: 0;
    padding-right: 0; }
    .post-type-archive-news .tile:nth-child(n+2):last-child:not(:first-child) {
      float: right; }
    .post-type-archive-news .tile:nth-child(n+2):last-child:last-child {
      float: left; } }

@media only screen and (min-width: 40em) {
  .post-type-archive-gallery .tile:nth-child(n+2) {
    width: 33.33333%;
    float: left;
    padding-left: 0;
    padding-right: 0; }
    .post-type-archive-gallery .tile:nth-child(n+2):last-child:not(:first-child) {
      float: right; }
    .post-type-archive-gallery .tile:nth-child(n+2):last-child:last-child {
      float: left; } }

.single-gallery {
  height: 100%; }
  .single-gallery .main {
    height: calc(100% - 92px); }
    @media only screen and (min-width: 40em) {
      .single-gallery .main {
        height: 100%; } }
  .single-gallery .content {
    height: 100%; }

.page-template-recipients .articles .row {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto; }
  .page-template-recipients .articles .row::before, .page-template-recipients .articles .row::after {
    content: ' ';
    display: table; }
  .page-template-recipients .articles .row::after {
    clear: both; }

.page-template-recipients .articles .article {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  width: 50%;
  float: left; }
  @media screen and (min-width: 40em) {
    .page-template-recipients .articles .article {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }
  .page-template-recipients .articles .article:last-child:not(:first-child) {
    float: right; }
  @media only screen and (min-width: 40em) {
    .page-template-recipients .articles .article {
      padding-left: 0.625rem;
      padding-right: 0.625rem;
      width: 16.66667%;
      float: left; } }
  @media only screen and (min-width: 40em) and (min-width: 40em) {
    .page-template-recipients .articles .article {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }
  @media only screen and (min-width: 40em) {
      .page-template-recipients .articles .article:last-child:not(:first-child) {
        float: right; } }
  .page-template-recipients .articles .article__content span {
    display: block;
    font-size: 14px; }
  .page-template-recipients .articles .article .btn-primary {
    margin-top: 20px; }

.page-template-apply .form {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  width: 100%;
  float: left; }
  @media screen and (min-width: 40em) {
    .page-template-apply .form {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }
  .page-template-apply .form:last-child:not(:first-child) {
    float: right; }
  .page-template-apply .form__field {
    margin-bottom: 10px; }

.single-archive .winners h3 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  width: 100%;
  float: left; }
  @media screen and (min-width: 40em) {
    .single-archive .winners h3 {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }
  .single-archive .winners h3:last-child:not(:first-child) {
    float: right; }

.single-archive .winners .row {
  width: 100%;
  float: left;
  padding-left: 0;
  padding-right: 0; }
  .single-archive .winners .row:last-child:not(:first-child) {
    float: right; }

.single-archive .winners .winner {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  width: 50%;
  float: left;
  margin-bottom: 20px; }
  @media screen and (min-width: 40em) {
    .single-archive .winners .winner {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }
  .single-archive .winners .winner:last-child:not(:first-child) {
    float: right; }
  .single-archive .winners .winner:last-child:last-child {
    float: left; }
  @media only screen and (min-width: 40em) {
    .single-archive .winners .winner {
      padding-left: 0.625rem;
      padding-right: 0.625rem;
      width: 25%;
      float: left; } }
  @media only screen and (min-width: 40em) and (min-width: 40em) {
    .single-archive .winners .winner {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }
  @media only screen and (min-width: 40em) {
      .single-archive .winners .winner:last-child:not(:first-child) {
        float: right; }
      .single-archive .winners .winner:last-child:last-child {
        float: left; } }
  .single-archive .winners .winner span {
    display: block; }
  .single-archive .winners .winner .award {
    margin: 0;
    color: #af7b4c; }
  .single-archive .winners .winner .sponsor {
    font-size: 14px;
    color: #333; }
  .single-archive .winners .winner .names {
    margin-top: 10px; }

.single-archive .nominees h3 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  width: 100%;
  float: left; }
  @media screen and (min-width: 40em) {
    .single-archive .nominees h3 {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }
  .single-archive .nominees h3:last-child:not(:first-child) {
    float: right; }

.single-archive .nominees .row {
  width: 100%;
  float: left;
  padding-left: 0;
  padding-right: 0; }
  .single-archive .nominees .row:last-child:not(:first-child) {
    float: right; }

.single-archive .nominees .nominee {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  width: 50%;
  float: left;
  margin-bottom: 20px; }
  @media screen and (min-width: 40em) {
    .single-archive .nominees .nominee {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }
  .single-archive .nominees .nominee:last-child:not(:first-child) {
    float: right; }
  .single-archive .nominees .nominee:last-child:last-child {
    float: left; }
  @media only screen and (min-width: 40em) {
    .single-archive .nominees .nominee {
      padding-left: 0.625rem;
      padding-right: 0.625rem;
      width: 25%;
      float: left; } }
  @media only screen and (min-width: 40em) and (min-width: 40em) {
    .single-archive .nominees .nominee {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }
  @media only screen and (min-width: 40em) {
      .single-archive .nominees .nominee:last-child:not(:first-child) {
        float: right; }
      .single-archive .nominees .nominee:last-child:last-child {
        float: left; } }
  .single-archive .nominees .nominee span {
    display: block; }
  .single-archive .nominees .nominee .award {
    margin: 0;
    color: #af7b4c; }
  .single-archive .nominees .nominee .sponsor {
    font-size: 14px;
    color: #333; }
  .single-archive .nominees .nominee .names {
    margin-top: 10px; }

.page-template-nominate .form {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  width: 100%;
  float: left; }
  @media screen and (min-width: 40em) {
    .page-template-nominate .form {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }
  .page-template-nominate .form:last-child:not(:first-child) {
    float: right; }
  .page-template-nominate .form .form__field--award ul {
    list-style: none;
    padding: 0;
    margin: 0; }
  .page-template-nominate .form .form__field--award li {
    display: inline-block;
    margin-right: 10px; }

.page-template-nominate .thanks {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  width: 100%;
  float: left;
  display: none; }
  @media screen and (min-width: 40em) {
    .page-template-nominate .thanks {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }
  .page-template-nominate .thanks:last-child:not(:first-child) {
    float: right; }
  .page-template-nominate .thanks a {
    text-decoration: underline;
    position: relative; }
    .page-template-nominate .thanks a:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%; }
  .page-template-nominate .thanks svg {
    width: 16px;
    height: auto; }
