@charset "UTF-8";
/* ==========================================================================
   INUITCSS
   ========================================================================== */
/**
 * inuitcss, by @csswizardry
 *
 * github.com/inuitcss | inuitcss.com
 */
/**
 * This is an example inuitcss manifest file. DO NOT MODIFY THIS FILE DIRECTLY.
 * Instead, copy and paste it into your own CSS directory and make additions,
 * extensions, and modifications there.
 */
/**
 * CONTENTS
 *
 * SETTINGS
 * Config...............Project-level configuration and feature switches.
 * Core.................inuitcss’ core and setup settings.
 * Global...............Project-wide variables and settings.
 *
 * TOOLS
 * Font-size............A mixin which guarantees baseline-friendly line-heights.
 * Clearfix.............Micro clearfix mixin.
 * Hidden...............Mixin for hiding elements.
 * Sass MQ..............inuitcss’ default media query manager.
 *
 * GENERIC
 * Box-sizing...........Better default `box-sizing`.
 * Normalize.css........A level playing field using @necolas’ Normalize.css.
 * Reset................A tiny reset to complement Normalize.css.
 * Shared...............Sensibly and tersely share some global commonalities
 *                      (particularly useful when managing vertical rhythm).
 *
 * ELEMENTS
 * Page.................Set up our document’s default `font-size` and
 *                      `line-height`.
 * Headings.............Very minimal (i.e. only font-size information) for
 *                      headings 1 through 6.
 * Images...............Base image styles.
 * Tables...............Simple table styles.
 *
 * OBJECTS
 * Wrapper..............Page constraint object.
 * Layout...............Generic layout module.
 * Media................Image- and text-like content side by side. The
 *                      poster-child of OOCSS.
 * Flag.................Table-layout-based advancement on the Media object.
 * List-bare............Lists with no bullets or indents.
 * List-inline..........A list whose items all site in a line.
 * Box..................Simple boxing abstraction.
 * Block................Image-on-top-of-text object.
 * Ratio................A container for maintaining aspect ratio of content.
 * Crop.................Provide a cropping context for media (images, etc.).
 * Table................Classes for manipulating `table`s.
 * Pack.................Pack items into available horizontal space.
 *
 * COMPONENTS
 * Buttons..............An example button component, and how it fits into the
 *                      inuitcss framework.
 *
 * UTILITIES
 * Clearfix.............Bind our clearfix onto a utility class.
 * Widths...............Simple width helper classes.
 * Headings.............Reassigning our heading styles to helper classes.
 * Spacings.............Nudge bits of the DOM around with these spacing
 *                      classes.
 * Responsive-Spacings..Enhances the function of normal spacings for
 *                      responsive usage.
 * Print................Reset-like styles taken from the HTML5 Boilerplate.
 * Hide.................Helper classes to hide content
 */
/* ==========================================================================
   #DEBUG TOOLS
============================================================================= */
/* ==========================================================================
   #BOX-SIZING
   ========================================================================== */
/**
 * More sensible default box-sizing:
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 */
@import url(../lightgallery/dist/css/lightgallery.css);
/* line 10, node_modules/inuitcss/generic/_generic.box-sizing.scss */
html {
  box-sizing: border-box;
}

/* line 16, node_modules/inuitcss/generic/_generic.box-sizing.scss */
*, *:before, *:after {
  box-sizing: inherit;
}

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* 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.
 */
/* line 12, node_modules/inuitcss/generic/_generic.normalize.scss */
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).
 */
/* line 25, node_modules/inuitcss/generic/_generic.normalize.scss */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
/* line 33, node_modules/inuitcss/generic/_generic.normalize.scss */
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.
 */
/* line 47, node_modules/inuitcss/generic/_generic.normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
/* line 60, node_modules/inuitcss/generic/_generic.normalize.scss */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
/* line 70, node_modules/inuitcss/generic/_generic.normalize.scss */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
/* line 79, node_modules/inuitcss/generic/_generic.normalize.scss */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
/* line 90, node_modules/inuitcss/generic/_generic.normalize.scss */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
/* line 103, node_modules/inuitcss/generic/_generic.normalize.scss */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
/* line 113, node_modules/inuitcss/generic/_generic.normalize.scss */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
/* line 123, node_modules/inuitcss/generic/_generic.normalize.scss */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
/* line 132, node_modules/inuitcss/generic/_generic.normalize.scss */
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.
 */
/* line 142, node_modules/inuitcss/generic/_generic.normalize.scss */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
/* line 153, node_modules/inuitcss/generic/_generic.normalize.scss */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
/* line 161, node_modules/inuitcss/generic/_generic.normalize.scss */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
/* line 170, node_modules/inuitcss/generic/_generic.normalize.scss */
small {
  font-size: 80%;
}

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

/* line 187, node_modules/inuitcss/generic/_generic.normalize.scss */
sub {
  bottom: -0.25em;
}

/* line 191, node_modules/inuitcss/generic/_generic.normalize.scss */
sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
/* line 202, node_modules/inuitcss/generic/_generic.normalize.scss */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
/* line 211, node_modules/inuitcss/generic/_generic.normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
/* line 220, node_modules/inuitcss/generic/_generic.normalize.scss */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
/* line 228, node_modules/inuitcss/generic/_generic.normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
/* line 240, node_modules/inuitcss/generic/_generic.normalize.scss */
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.
 * 1. Show the overflow in Edge.
 */
/* line 256, node_modules/inuitcss/generic/_generic.normalize.scss */
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.
 */
/* line 266, node_modules/inuitcss/generic/_generic.normalize.scss */
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.
 */
/* line 277, node_modules/inuitcss/generic/_generic.normalize.scss */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
/* line 288, node_modules/inuitcss/generic/_generic.normalize.scss */
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.
 */
/* line 300, node_modules/inuitcss/generic/_generic.normalize.scss */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
/* line 311, node_modules/inuitcss/generic/_generic.normalize.scss */
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.
 */
/* line 322, node_modules/inuitcss/generic/_generic.normalize.scss */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
/* line 336, node_modules/inuitcss/generic/_generic.normalize.scss */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
/* line 345, node_modules/inuitcss/generic/_generic.normalize.scss */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
/* line 354, node_modules/inuitcss/generic/_generic.normalize.scss */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
/* line 364, node_modules/inuitcss/generic/_generic.normalize.scss */
[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.
 */
/* line 374, node_modules/inuitcss/generic/_generic.normalize.scss */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
/* line 383, node_modules/inuitcss/generic/_generic.normalize.scss */
[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.
 */
/* line 393, node_modules/inuitcss/generic/_generic.normalize.scss */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
/* line 406, node_modules/inuitcss/generic/_generic.normalize.scss */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
/* line 415, node_modules/inuitcss/generic/_generic.normalize.scss */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
/* line 426, node_modules/inuitcss/generic/_generic.normalize.scss */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
/* line 434, node_modules/inuitcss/generic/_generic.normalize.scss */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
/* line 445, node_modules/inuitcss/generic/_generic.normalize.scss */
[hidden] {
  display: none;
}

/* ==========================================================================
   #RESET
   ========================================================================== */
/**
 * A very simple reset that sits on top of Normalize.css.
 */
/* line 9, node_modules/inuitcss/generic/_generic.reset.scss */
body,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, dd, ol, ul,
figure,
hr,
fieldset, legend {
  margin: 0;
  padding: 0;
}

/**
 * Remove trailing margins from nested lists.
 */
/* line 28, node_modules/inuitcss/generic/_generic.reset.scss */
li > ol,
li > ul {
  margin-bottom: 0;
}

/**
 * Remove default table spacing.
 */
/* line 41, node_modules/inuitcss/generic/_generic.reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * 1. Reset Chrome and Firefox behaviour which sets a `min-width: min-content;`
 *    on fieldsets.
 */
/* line 53, node_modules/inuitcss/generic/_generic.reset.scss */
fieldset {
  min-width: 0;
  /* [1] */
  border: 0;
}

/* ==========================================================================
   #SHARED
   ========================================================================== */
/**
 * Shared declarations for certain elements.
 */
/**
 * Always declare margins in the same direction:
 * csswizardry.com/2012/06/single-direction-margin-declarations
 */
/* line 14, node_modules/inuitcss/generic/_generic.shared.scss */
address,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, ol, ul,
figure,
hr,
table,
fieldset {
  margin-bottom: 24px;
}

/**
 * Consistent indentation for lists.
 */
/* line 31, node_modules/inuitcss/generic/_generic.shared.scss */
dd, ol, ul {
  margin-left: 24px;
}

/* ==========================================================================
   #PAGE
   ========================================================================== */
/**
 * Simple page-level setup.
 *
 * 1. Set the default `font-size` and `line-height` for the entire project,
 *    sourced from our default variables. The `font-size` is calculated to exist
 *    in ems, the `line-height` is calculated to exist unitlessly.
 * 2. Force scrollbars to always be visible to prevent awkward ‘jumps’ when
 *    navigating between pages that do/do not have enough content to produce
 *    scrollbars naturally.
 * 3. Ensure the page always fills at least the entire height of the viewport.
 * 4. IF user has not customized their reduced-motion preferences, natively use
 *    smooth-scrolling for in-page links
 */
/* [4] */
@media (prefers-reduced-motion: no-preference) {
  /* line 22, app/assets/stylesheets/2018-nextgen-ui/elements/_page.scss */
  html {
    scroll-behavior: smooth;
  }
}

/* line 27, app/assets/stylesheets/2018-nextgen-ui/elements/_page.scss */
html {
  color: #666666;
  font-family: "futura-pt", Helvetica, Arial, sans-serif;
  font-size: 1em;
  /* [1] */
  font-weight: 300;
  line-height: 1.5;
  /* [1] */
  overflow-x: hidden;
  overflow-y: scroll;
  /* [2] */
  min-height: 100%;
  /* [3] */
}

/* line 42, app/assets/stylesheets/2018-nextgen-ui/elements/_page.scss */
body {
  background-color: #000000;
  margin: 0;
  padding: 0;
}

/* line 48, app/assets/stylesheets/2018-nextgen-ui/elements/_page.scss */
body.p-nation--home {
  background-color: #f7f7f7;
}

@media (max-width: 28.115em) {
  /* line 52, app/assets/stylesheets/2018-nextgen-ui/elements/_page.scss */
  body.modal-is-open {
    position: fixed;
    overflow: hidden;
    height: 100%;
    width: 100%;
  }
}

/*body*/
/* line 64, app/assets/stylesheets/2018-nextgen-ui/elements/_page.scss */
.u-nextgen-legacy {
  height: auto;
  /* [1] */
}

/* ==========================================================================
   #BUTTONS
   ========================================================================== */
/**
 * Setup basic button element states and transitions
 */
/* line 9, app/assets/stylesheets/2018-nextgen-ui/elements/_buttons.scss */
button {
  text-decoration: none;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

/* line 14, app/assets/stylesheets/2018-nextgen-ui/elements/_buttons.scss */
button:focus {
  outline: none;
}

/* ==========================================================================
   #LINKS
   ========================================================================== */
/**
 * Setup basic anchor tag transitions
 */
/* line 9, app/assets/stylesheets/2018-nextgen-ui/elements/_links.scss */
a {
  text-decoration: none;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

/* ==========================================================================
   #HEADINGS
   ========================================================================== */
/**
 * Simple default styles for headings 1 through 6. Anything more opinionated
 * than simple font-size changes should likely be applied via classes (see:
 * http://csswizardry.com/2016/02/managing-typography-on-large-apps/).
 */
/* line 23, node_modules/inuitcss/elements/_elements.headings.scss */
h1 {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.16667;
}

/* line 27, node_modules/inuitcss/elements/_elements.headings.scss */
h2 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.28571;
}

/* line 31, node_modules/inuitcss/elements/_elements.headings.scss */
h3 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.25;
}

/* line 35, node_modules/inuitcss/elements/_elements.headings.scss */
h4 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
}

/* line 39, node_modules/inuitcss/elements/_elements.headings.scss */
h5 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.33333;
}

/* line 43, node_modules/inuitcss/elements/_elements.headings.scss */
h6 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

/* ==========================================================================
   #IMAGES
   ========================================================================== */
/**
 * 1. Fluid images for responsive purposes.
 * 2. Offset `alt` text from surrounding copy.
 * 3. Setting `vertical-align` removes the whitespace that appears under `img`
 *    elements when they are dropped into a page as-is. Safer alternative to
 *    using `display: block;`.
 */
/* line 13, node_modules/inuitcss/elements/_elements.images.scss */
img {
  max-width: 100%;
  /* [1] */
  font-style: italic;
  /* [2] */
  vertical-align: middle;
  /* [3] */
}

/**
   * If a `width` and/or `height` attribute has been explicitly defined, let’s
   * not make the image fluid.
   */
/* line 34, node_modules/inuitcss/elements/_elements.images.scss */
img[width],
img[height] {
  max-width: none;
}

/* ==========================================================================
   #TABLES
   ========================================================================== */
/**
 * 1. Ensure tables fill up as much space as possible.
 */
/* line 9, node_modules/inuitcss/elements/_elements.tables.scss */
table {
  width: 100%;
  /* [1] */
}

/* ==========================================================================
   #WRAPPER
   ========================================================================== */
/**
 * Page-level constraining and wrapping elements.
 */
/* line 15, node_modules/inuitcss/objects/_objects.wrapper.scss */
.o-wrapper {
  padding-right: 24px;
  padding-left: 24px;
  margin-right: auto;
  margin-left: auto;
  max-width: 87.5rem;
}

/* line 14, node_modules/inuitcss/tools/_tools.clearfix.scss */
.o-wrapper:after {
  content: "" !important;
  display: block !important;
  clear: both !important;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/objects/_wrapper-modifiers.scss */
.o-wrapper--from-flush {
  padding-right: 0;
  padding-left: 0;
}

@media (min-width: 87.5em) {
  /* line 1, app/assets/stylesheets/2018-nextgen-ui/objects/_wrapper-modifiers.scss */
  .o-wrapper--from-flush {
    padding-right: 24px;
    padding-left: 24px;
  }
}

/* line 11, app/assets/stylesheets/2018-nextgen-ui/objects/_wrapper-modifiers.scss */
.o-wrapper--to-narrow {
  max-width: 840px;
}

@media (min-width: 87.5em) {
  /* line 11, app/assets/stylesheets/2018-nextgen-ui/objects/_wrapper-modifiers.scss */
  .o-wrapper--to-narrow {
    padding-left: 0;
    padding-right: 0;
  }
}

/* line 20, app/assets/stylesheets/2018-nextgen-ui/objects/_wrapper-modifiers.scss */
.o-wrapper--flush {
  padding-right: 0;
  padding-left: 0;
}

/* ==========================================================================
   #LAYOUT
   ========================================================================== */
/**
 * Grid-like layout system.
 *
 * The layout object provides us with a column-style layout system. This file
 * contains the basic structural elements, but classes should be complemented
 * with width utilities, for example:
 *
 *   <div class="o-layout">
 *     <div class="o-layout__item  u-1/2">
 *     </div>
 *     <div class="o-layout__item  u-1/2">
 *     </div>
 *   </div>
 *
 * The above will create a two-column structure in which each column will
 * fluidly fill half of the width of the parent. We can have more complex
 * systems:
 *
 *   <div class="o-layout">
 *     <div class="o-layout__item  u-1/1  u-1/3@medium">
 *     </div>
 *     <div class="o-layout__item  u-1/2  u-1/3@medium">
 *     </div>
 *     <div class="o-layout__item  u-1/2  u-1/3@medium">
 *     </div>
 *   </div>
 *
 * The above will create a system in which the first item will be 100% width
 * until we enter our medium breakpoint, when it will become 33.333% width. The
 * second and third items will be 50% of their parent, until they also become
 * 33.333% width at the medium breakpoint.
 *
 * We can also manipulate entire layout systems by adding a series of modifiers
 * to the `.o-layout` block. For example:
 *
 *   <div class="o-layout  o-layout--reverse">
 *
 * This will reverse the displayed order of the system so that it runs in the
 * opposite order to our source, effectively flipping the system over.
 *
 *   <div class="o-layout  o-layout--[right|center]">
 *
 * This will cause the system to fill up from either the centre or the right
 * hand side. Default behaviour is to fill up the layout system from the left.
 *
 * There are plenty more options available to us: explore them below.
 */
/* Default/mandatory classes
   ========================================================================== */
/**
 * 1. Allows us to use the layout object on any type of element.
 * 2. We need to defensively reset any box-model properties.
 * 3. Use the negative margin trick for multi-row grids:
 *    http://csswizardry.com/2011/08/building-better-grid-systems/
 */
/* line 72, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout {
  display: block;
  /* [1] */
  margin: 0;
  /* [2] */
  padding: 0;
  /* [2] */
  list-style: none;
  /* [1] */
  margin-left: -24px;
  /* [3] */
  font-size: 0;
}

/**
   * 1. Required in order to combine fluid widths with fixed gutters.
   * 2. Allows us to manipulate grids vertically, with text-level properties,
   *    etc.
   * 3. Default item alignment is with the tops of each other, like most
   *    traditional grid/layout systems.
   * 4. By default, all layout items are full-width (mobile first).
   * 5. Gutters provided by left padding:
   *    http://csswizardry.com/2011/08/building-better-grid-systems/
   * 6. Fallback for old IEs not supporting `rem` values.
   */
/* line 97, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout__item {
  box-sizing: border-box;
  /* [1] */
  display: inline-block;
  /* [2] */
  vertical-align: top;
  /* [3] */
  width: 100%;
  /* [4] */
  padding-left: 24px;
  /* [5] */
  font-size: 16px;
  /* [6] */
  font-size: 1rem;
}

/* Gutter size modifiers
   ========================================================================== */
/* line 118, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--flush {
  margin-left: 0;
}

/* line 121, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--flush > .o-layout__item {
  padding-left: 0;
}

/* line 128, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--tiny {
  margin-left: -6px;
}

/* line 131, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--tiny > .o-layout__item {
  padding-left: 6px;
}

/* line 138, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--small {
  margin-left: -12px;
}

/* line 141, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--small > .o-layout__item {
  padding-left: 12px;
}

/* line 148, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--large {
  margin-left: -48px;
}

/* line 151, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--large > .o-layout__item {
  padding-left: 48px;
}

/* line 158, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--huge {
  margin-left: -96px;
}

/* line 161, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--huge > .o-layout__item {
  padding-left: 96px;
}

/* Vertical alignment modifiers
   ========================================================================== */
/**
 * Align all grid items to the middles of each other.
 */
/* line 180, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--middle > .o-layout__item {
  vertical-align: middle;
}

/**
 * Align all grid items to the bottoms of each other.
 */
/* line 193, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--bottom > .o-layout__item {
  vertical-align: bottom;
}

/**
 * Stretch all grid items of each row to have an equal-height.
 * Please be aware that this modifier class doesn’t take any effect in IE9 and
 * below and other older browsers due to the lack of `display: flex` support.
 */
/* line 206, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--stretch {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

/* line 210, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--stretch > .o-layout__item {
  display: -webkit-box;
  display: flex;
}

/* line 214, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--stretch.o-layout--center {
  -webkit-box-pack: center;
          justify-content: center;
}

/* line 218, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--stretch.o-layout--right {
  -webkit-box-pack: end;
          justify-content: flex-end;
}

/* line 222, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--stretch.o-layout--left {
  -webkit-box-pack: start;
          justify-content: flex-start;
}

/* Fill order modifiers
   ========================================================================== */
/**
 * Fill up the layout system from the centre.
 */
/* line 239, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--center {
  text-align: center;
}

/* line 242, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--center > .o-layout__item {
  text-align: left;
}

/**
 * Fill up the layout system from the right-hand side.
 */
/* line 253, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--right {
  text-align: right;
}

/* line 256, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--right > .o-layout__item {
  text-align: left;
}

/**
 * Fill up the layout system from the left-hand side. This will likely only be
 * needed when using in conjunction with `.o-layout--reverse`.
 */
/* line 268, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--left {
  text-align: left;
}

/* line 271, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--left > .o-layout__item {
  text-align: left;
}

/**
 * Reverse the rendered order of the grid system.
 */
/* line 282, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--reverse {
  direction: rtl;
}

/* line 285, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--reverse > .o-layout__item {
  direction: ltr;
}

/* Auto-widths modifier
   ========================================================================== */
/**
 * Cause layout items to take up a non-explicit amount of width.
 */
/* line 304, node_modules/inuitcss/objects/_objects.layout.scss */
.o-layout--auto > .o-layout__item {
  width: auto;
}

/* ==========================================================================
   #MEDIA
   ========================================================================== */
/**
 * Place any image- and text-like content side-by-side, as per:
 * http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code
 */
/* line 10, node_modules/inuitcss/objects/_objects.media.scss */
.o-media {
  display: block;
}

/* line 14, node_modules/inuitcss/tools/_tools.clearfix.scss */
.o-media:after {
  content: "" !important;
  display: block !important;
  clear: both !important;
}

/* line 15, node_modules/inuitcss/objects/_objects.media.scss */
.o-media__img {
  float: left;
  margin-right: 24px;
}

/* line 19, node_modules/inuitcss/objects/_objects.media.scss */
.o-media__img > img {
  display: block;
}

/* line 25, node_modules/inuitcss/objects/_objects.media.scss */
.o-media__body {
  overflow: hidden;
  display: block;
}

/* line 29, node_modules/inuitcss/objects/_objects.media.scss */
.o-media__body,
.o-media__body > :last-child {
  margin-bottom: 0;
}

/* Size variants
   ========================================================================== */
/**
 * Modify the amount of space between our image and our text. We also have
 * reversible options for all available sizes.
 */
/* line 50, node_modules/inuitcss/objects/_objects.media.scss */
.o-media--flush > .o-media__img {
  margin-right: 0;
  margin-left: 0;
}

/* line 60, node_modules/inuitcss/objects/_objects.media.scss */
.o-media--tiny > .o-media__img {
  margin-right: 6px;
}

/* line 66, node_modules/inuitcss/objects/_objects.media.scss */
.o-media--tiny.o-media--reverse > .o-media__img {
  margin-right: 0;
  margin-left: 6px;
}

/* line 78, node_modules/inuitcss/objects/_objects.media.scss */
.o-media--small > .o-media__img {
  margin-right: 12px;
}

/* line 84, node_modules/inuitcss/objects/_objects.media.scss */
.o-media--small.o-media--reverse > .o-media__img {
  margin-right: 0;
  margin-left: 12px;
}

/* line 96, node_modules/inuitcss/objects/_objects.media.scss */
.o-media--large > .o-media__img {
  margin-right: 48px;
}

/* line 102, node_modules/inuitcss/objects/_objects.media.scss */
.o-media--large.o-media--reverse > .o-media__img {
  margin-right: 0;
  margin-left: 48px;
}

/* line 114, node_modules/inuitcss/objects/_objects.media.scss */
.o-media--huge > .o-media__img {
  margin-right: 96px;
}

/* line 120, node_modules/inuitcss/objects/_objects.media.scss */
.o-media--huge.o-media--reverse > .o-media__img {
  margin-right: 0;
  margin-left: 96px;
}

/* Reversed media objects
   ========================================================================== */
/* line 138, node_modules/inuitcss/objects/_objects.media.scss */
.o-media--reverse > .o-media__img {
  float: right;
  margin-right: 0;
  margin-left: 24px;
}

/* ==========================================================================
   #FLAG
   ========================================================================== */
/**
 * The flag object is a design pattern similar to the media object, however it
 * utilises `display: table[-cell];` to give us control over the vertical
 * alignments of the text and image.
 *
 * http://csswizardry.com/2013/05/the-flag-object/
 *
 * 1. Allows us to control vertical alignments.
 * 2. Force the object to be the full width of its parent. Combined with [1],
 *    this makes the object behave in a quasi-`display: block;` manner.
 * 3. Reset inherited `border-spacing` declarations.
 */
/* line 18, node_modules/inuitcss/objects/_objects.flag.scss */
.o-flag {
  display: table;
  /* [1] */
  width: 100%;
  /* [2] */
  border-spacing: 0;
  /* [3] */
}

/**
   * Items within a flag object. There should only ever be one of each.
   *
   * 1. Default to aligning content to their middles.
   */
/* line 30, node_modules/inuitcss/objects/_objects.flag.scss */
.o-flag__img,
.o-flag__body {
  display: table-cell;
  vertical-align: middle;
  /* [1] */
}

/**
   * Flag images have a space between them and the body of the object.
   *
   * 1. Force `.flag__img` to take up as little space as possible:
   *    https://pixelsvsbytes.com/2012/02/this-css-layout-grid-is-no-holy-grail/
   */
/* line 43, node_modules/inuitcss/objects/_objects.flag.scss */
.o-flag__img {
  width: 1px;
  /* [1] */
  padding-right: 24px;
  /**
     * 1. Fixes problem with images disappearing.
     *
     *    The direct child selector '>' needs to remain in order for nested flag
     *    objects to not inherit their parent’s formatting. In case the image tag
     *    is wrapped into another tag, e.g. an anchor for linking reasons, it will
     *    disappear. In that case try wrapping the whole o-flag__img object into
     *    an anchor tag.
     *
     *    E.g.:
     *
     *      <a href="/">
     *        <div class="o-flag__img">
     *          <img src="./link/to/image.jpg" alt="image alt text">
     *        </div>
     *      </a>
     */
}

/* line 65, node_modules/inuitcss/objects/_objects.flag.scss */
.o-flag__img > img {
  max-width: none;
  /* [1] */
}

/**
   * The container for the main content of the flag object.
   *
   * 1. Forces the `.flag__body` to take up all remaining space.
   */
/* line 77, node_modules/inuitcss/objects/_objects.flag.scss */
.o-flag__body {
  width: auto;
  /* [1] */
}

/* line 80, node_modules/inuitcss/objects/_objects.flag.scss */
.o-flag__body,
.o-flag__body > :last-child {
  margin-bottom: 0;
}

/* Size variants
   ========================================================================== */
/* line 96, node_modules/inuitcss/objects/_objects.flag.scss */
.o-flag--flush > .o-flag__img {
  padding-right: 0;
  padding-left: 0;
}

/* line 106, node_modules/inuitcss/objects/_objects.flag.scss */
.o-flag--tiny > .o-flag__img {
  padding-right: 6px;
}

/* line 112, node_modules/inuitcss/objects/_objects.flag.scss */
.o-flag--tiny.o-flag--reverse > .o-flag__img {
  padding-right: 0;
  padding-left: 6px;
}

/* line 124, node_modules/inuitcss/objects/_objects.flag.scss */
.o-flag--small > .o-flag__img {
  padding-right: 12px;
}

/* line 130, node_modules/inuitcss/objects/_objects.flag.scss */
.o-flag--small.o-flag--reverse > .o-flag__img {
  padding-right: 0;
  padding-left: 12px;
}

/* line 142, node_modules/inuitcss/objects/_objects.flag.scss */
.o-flag--large > .o-flag__img {
  padding-right: 48px;
}

/* line 148, node_modules/inuitcss/objects/_objects.flag.scss */
.o-flag--large.o-flag--reverse > .o-flag__img {
  padding-right: 0;
  padding-left: 48px;
}

/* line 160, node_modules/inuitcss/objects/_objects.flag.scss */
.o-flag--huge > .o-flag__img {
  padding-right: 96px;
}

/* line 166, node_modules/inuitcss/objects/_objects.flag.scss */
.o-flag--huge.o-flag--reverse > .o-flag__img {
  padding-right: 0;
  padding-left: 96px;
}

/* Reversed flag
   ========================================================================== */
/**
 * 1. Swap the rendered direction of the object…
 * 2. …and reset it.
 * 3. Reassign margins to the correct sides.
 */
/* line 188, node_modules/inuitcss/objects/_objects.flag.scss */
.o-flag--reverse {
  direction: rtl;
  /* [1] */
}

/* line 191, node_modules/inuitcss/objects/_objects.flag.scss */
.o-flag--reverse > .o-flag__img,
.o-flag--reverse > .o-flag__body {
  direction: ltr;
  /* [2] */
}

/* line 196, node_modules/inuitcss/objects/_objects.flag.scss */
.o-flag--reverse > .o-flag__img {
  padding-right: 0;
  /* [3] */
  padding-left: 24px;
  /* [3] */
}

/* Alignment variants
   ========================================================================== */
/**
 * Vertically align the image- and body-content differently. Defaults to middle.
 */
/* line 216, node_modules/inuitcss/objects/_objects.flag.scss */
.o-flag--top > .o-flag__img,
.o-flag--top > .o-flag__body {
  vertical-align: top;
}

/* line 226, node_modules/inuitcss/objects/_objects.flag.scss */
.o-flag--bottom > .o-flag__img,
.o-flag--bottom > .o-flag__body {
  vertical-align: bottom;
}

/* ==========================================================================
   #LIST-BARE
   ========================================================================== */
/**
 * Strip list-like appearance from lists by removing their bullets and any
 * indentation.
 *
 * Note: Declaring the item class might not be necessary everywhere,
 * but is for example in <dl> lists for the <dd> children.
 */
/* line 13, node_modules/inuitcss/objects/_objects.list-bare.scss */
.o-list-bare {
  list-style: none;
  margin-left: 0;
}

/* line 18, node_modules/inuitcss/objects/_objects.list-bare.scss */
.o-list-bare__item {
  margin-left: 0;
}

/* ==========================================================================
   #LIST-INLINE
   ========================================================================== */
/**
 * The list-inline object simply displays a list of items in one line.
 */
/* line 9, node_modules/inuitcss/objects/_objects.list-inline.scss */
.o-list-inline {
  margin-left: 0;
  list-style: none;
}

/* line 14, node_modules/inuitcss/objects/_objects.list-inline.scss */
.o-list-inline__item {
  display: inline-block;
}

/* ==========================================================================
   #BOX
   ========================================================================== */
/**
 * The box object simply boxes off content. Extend with cosmetic styles in the
 * Components layer.
 *
 * 1. So we can apply the `.o-box` class to naturally-inline elements.
 */
/* line 12, node_modules/inuitcss/objects/_objects.box.scss */
.o-box {
  display: block;
  /* [1] */
  padding: 24px;
}

/* line 14, node_modules/inuitcss/tools/_tools.clearfix.scss */
.o-box:after {
  content: "" !important;
  display: block !important;
  clear: both !important;
}

/* line 17, node_modules/inuitcss/objects/_objects.box.scss */
.o-box > :last-child {
  margin-bottom: 0;
}

/* Size variants
   ========================================================================== */
/* line 30, node_modules/inuitcss/objects/_objects.box.scss */
.o-box--flush {
  padding: 0;
}

/* line 34, node_modules/inuitcss/objects/_objects.box.scss */
.o-box--tiny {
  padding: 6px;
}

/* line 38, node_modules/inuitcss/objects/_objects.box.scss */
.o-box--small {
  padding: 12px;
}

/* line 42, node_modules/inuitcss/objects/_objects.box.scss */
.o-box--large {
  padding: 48px;
}

/* line 46, node_modules/inuitcss/objects/_objects.box.scss */
.o-box--huge {
  padding: 96px;
}

/* ==========================================================================
   #BLOCK
   ========================================================================== */
/**
 * Stacked image-with-text object. A simple abstraction to cover a very commonly
 * occurring design pattern.
 */
/* line 10, node_modules/inuitcss/objects/_objects.block.scss */
.o-block {
  display: block;
  text-align: center;
}

/* line 15, node_modules/inuitcss/objects/_objects.block.scss */
.o-block__img {
  margin-bottom: 24px;
  /* Size variants
       ====================================================================== */
}

/* line 22, node_modules/inuitcss/objects/_objects.block.scss */
.o-block--flush > .o-block__img {
  margin-bottom: 0;
}

/* line 26, node_modules/inuitcss/objects/_objects.block.scss */
.o-block--tiny > .o-block__img {
  margin-bottom: 6px;
}

/* line 30, node_modules/inuitcss/objects/_objects.block.scss */
.o-block--small > .o-block__img {
  margin-bottom: 12px;
}

/* line 34, node_modules/inuitcss/objects/_objects.block.scss */
.o-block--large > .o-block__img {
  margin-bottom: 48px;
}

/* line 38, node_modules/inuitcss/objects/_objects.block.scss */
.o-block--huge > .o-block__img {
  margin-bottom: 96px;
}

/* line 44, node_modules/inuitcss/objects/_objects.block.scss */
.o-block__body {
  display: block;
}

/* Alignment variants
   ========================================================================== */
/* line 55, node_modules/inuitcss/objects/_objects.block.scss */
.o-block--right {
  text-align: right;
}

/* line 59, node_modules/inuitcss/objects/_objects.block.scss */
.o-block--left {
  text-align: left;
}

/* ==========================================================================
   #RATIO
   ========================================================================== */
/**
 * Create ratio-bound content blocks, to keep media (e.g. images, videos) in
 * their correct aspect ratios.
 *
 * http://alistapart.com/article/creating-intrinsic-ratios-for-video
 *
 * 1. Default is a 1:1 ratio (i.e. a perfect square).
 */
/* line 36, node_modules/inuitcss/objects/_objects.ratio.scss */
.o-ratio {
  position: relative;
  display: block;
}

/* line 40, node_modules/inuitcss/objects/_objects.ratio.scss */
.o-ratio:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
  /* [1] */
}

/* line 49, node_modules/inuitcss/objects/_objects.ratio.scss */
.o-ratio__content,
.o-ratio > iframe,
.o-ratio > embed,
.o-ratio > object {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/* Ratio variants.
   ========================================================================== */
/**
 * Generate a series of ratio classes to be used like so:
 *
 *   <div class="o-ratio  o-ratio--golden-ratio">
 *
 */
/* line 87, node_modules/inuitcss/objects/_objects.ratio.scss */
.o-ratio--2\:1:before {
  padding-bottom: 50%;
}

/* line 87, node_modules/inuitcss/objects/_objects.ratio.scss */
.o-ratio--4\:3:before {
  padding-bottom: 75%;
}

/* line 87, node_modules/inuitcss/objects/_objects.ratio.scss */
.o-ratio--16\:9:before {
  padding-bottom: 56.25%;
}

/* Contain modifier.
   ========================================================================== */
/**
 * Only works with image content.
 * Contains the image to the boundaries, without cropping or stretching it.
 */
/* line 109, node_modules/inuitcss/objects/_objects.ratio.scss */
.o-ratio--img-contain > .o-ratio__content:before {
  height: auto;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  width: auto;
}

/* ==========================================================================
   #CROP
   ========================================================================== */
/**
 * Provide a cropping container in order to display media (usually images)
 * cropped to certain ratios.
 *
 * 1. Set up a positioning context in which the image can sit.
 * 2. This is the crucial part: where the cropping happens.
 */
/* line 35, node_modules/inuitcss/objects/_objects.crop.scss */
.o-crop {
  position: relative;
  /* [1] */
  display: block;
  overflow: hidden;
  /* [2] */
}

/**
   * Apply this class to the content (usually `img`) that needs cropping.
   *
   * 1. Image’s default positioning is top-left in the cropping box.
   * 2. Make sure the media doesn’t stop itself too soon.
   */
/* line 48, node_modules/inuitcss/objects/_objects.crop.scss */
.o-crop__content {
  position: absolute;
  top: 0;
  /* [1] */
  left: 0;
  /* [1] */
  max-width: none;
  /* [2] */
}

/**
   * We can position the media in different locations within the cropping area.
   */
/* line 61, node_modules/inuitcss/objects/_objects.crop.scss */
.o-crop__content--left-top {
  left: 0;
}

/* line 65, node_modules/inuitcss/objects/_objects.crop.scss */
.o-crop__content--left-center {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* line 70, node_modules/inuitcss/objects/_objects.crop.scss */
.o-crop__content--left-bottom {
  top: auto;
  bottom: 0;
}

/* line 75, node_modules/inuitcss/objects/_objects.crop.scss */
.o-crop__content--right-top {
  right: 0;
  left: auto;
}

/* line 80, node_modules/inuitcss/objects/_objects.crop.scss */
.o-crop__content--right-center {
  top: 50%;
  right: 0;
  left: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* line 87, node_modules/inuitcss/objects/_objects.crop.scss */
.o-crop__content--right-bottom {
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
}

/* line 94, node_modules/inuitcss/objects/_objects.crop.scss */
.o-crop__content--center-top {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* line 99, node_modules/inuitcss/objects/_objects.crop.scss */
.o-crop__content--center,
.o-crop__content--center-center {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* line 106, node_modules/inuitcss/objects/_objects.crop.scss */
.o-crop__content--center-bottom {
  top: auto;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* Crop-ratio variants
   ========================================================================== */
/**
 * Generate a series of crop classes to be used like so:
 *
 *   <div class="o-crop  o-crop--golden-ratio">
 *
 */
/* line 139, node_modules/inuitcss/objects/_objects.crop.scss */
.o-crop--2\:1 {
  padding-bottom: 50%;
}

/* line 139, node_modules/inuitcss/objects/_objects.crop.scss */
.o-crop--4\:3 {
  padding-bottom: 75%;
}

/* line 139, node_modules/inuitcss/objects/_objects.crop.scss */
.o-crop--16\:9 {
  padding-bottom: 56.25%;
}

/* Fill modifier
   ========================================================================== */
/**
 * Content stretches to fill it's container while maintaining aspect-ratio.
 */
/* line 160, node_modules/inuitcss/objects/_objects.crop.scss */
.o-crop--fill > .o-crop__content {
  min-height: 100%;
  min-width: 100%;
}

/* ==========================================================================
   #TABLE
   ========================================================================== */
/**
 * A simple object for manipulating the structure of HTML `table`s.
 */
/* line 9, node_modules/inuitcss/objects/_objects.table.scss */
.o-table {
  width: 100%;
}

/* Equal-width table cells
   ========================================================================== */
/**
 * `table-layout: fixed` forces all cells within a table to occupy the same
 * width as each other. This also has performance benefits: because the browser
 * does not need to (re)calculate cell dimensions based on content it discovers,
 * the table can be rendered very quickly. Further reading:
 * https://developer.mozilla.org/en-US/docs/Web/CSS/table-layout#Values
 */
/* line 28, node_modules/inuitcss/objects/_objects.table.scss */
.o-table--fixed {
  table-layout: fixed;
}

/* Size variants
   ========================================================================== */
/* line 41, node_modules/inuitcss/objects/_objects.table.scss */
.o-table--tiny th,
.o-table--tiny td {
  padding: 6px;
}

/* line 51, node_modules/inuitcss/objects/_objects.table.scss */
.o-table--small th,
.o-table--small td {
  padding: 12px;
}

/* line 61, node_modules/inuitcss/objects/_objects.table.scss */
.o-table--large th,
.o-table--large td {
  padding: 48px;
}

/* line 71, node_modules/inuitcss/objects/_objects.table.scss */
.o-table--huge th,
.o-table--huge td {
  padding: 96px;
}

/* ==========================================================================
   #PACK
   ========================================================================== */
/**
 * The pack object simply causes any number of elements pack up horizontally to
 * automatically fill an equal, fluid width of their parent.
 *
 * 1. Fill all available space.
 * 2. Remove any leftover styling from lists.
 * 3. Cause children to be automatically equally sized.
 */
/* line 14, node_modules/inuitcss/objects/_objects.pack.scss */
.o-pack {
  width: 100%;
  /* [1] */
  margin-left: 0;
  /* [2] */
  display: table;
  table-layout: fixed;
  /* [3] */
}

/**
   * 1. Cause children to adopt table-like structure.
   * 2. Default item alignment is with the tops of each other.
   */
/* line 26, node_modules/inuitcss/objects/_objects.pack.scss */
.o-pack__item {
  display: table-cell;
  /* [1] */
  vertical-align: top;
  /* [2] */
  /* Vertical alignment variants
       ====================================================================== */
}

/* line 34, node_modules/inuitcss/objects/_objects.pack.scss */
.o-pack--middle > .o-pack__item {
  vertical-align: middle;
}

/* line 38, node_modules/inuitcss/objects/_objects.pack.scss */
.o-pack--bottom > .o-pack__item {
  vertical-align: bottom;
}

/* Unequal-width items
   ========================================================================== */
/* line 51, node_modules/inuitcss/objects/_objects.pack.scss */
.o-pack--auto {
  table-layout: auto;
}

/* Size variants
   ========================================================================== */
/* line 62, node_modules/inuitcss/objects/_objects.pack.scss */
.o-pack--tiny {
  border-spacing: 6px;
}

/* line 66, node_modules/inuitcss/objects/_objects.pack.scss */
.o-pack--small {
  border-spacing: 12px;
}

/* line 70, node_modules/inuitcss/objects/_objects.pack.scss */
.o-pack--default {
  border-spacing: 24px;
}

/* line 74, node_modules/inuitcss/objects/_objects.pack.scss */
.o-pack--large {
  border-spacing: 48px;
}

/* line 78, node_modules/inuitcss/objects/_objects.pack.scss */
.o-pack--huge {
  border-spacing: 96px;
}

/* Reversed order packs
   ========================================================================== */
/* line 89, node_modules/inuitcss/objects/_objects.pack.scss */
.o-pack--reverse {
  direction: rtl;
}

/* line 92, node_modules/inuitcss/objects/_objects.pack.scss */
.o-pack--reverse > .o-pack__item {
  direction: ltr;
}

/* ==========================================================================
   #HORIZONTAL RULES Object
============================================================================= */
/* line 5, app/assets/stylesheets/2018-nextgen-ui/objects/_horizontal-rules.scss */
.o-hr {
  background-color: #888888;
  border: none;
  height: 1px;
  margin: 24px 0;
}

/* ==========================================================================
   #ICONS
   ========================================================================== */
/* line 5, app/assets/stylesheets/2018-nextgen-ui/objects/_icons.scss */
.o-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  vertical-align: middle;
}

/* line 15, app/assets/stylesheets/2018-nextgen-ui/objects/_icons.scss */
.o-icon-wrap,
.o-with-icon {
  display: inline-block;
  vertical-align: middle;
}

/* line 22, app/assets/stylesheets/2018-nextgen-ui/objects/_icons.scss */
.o-icon--2x {
  font-size: 2em;
}

/* ==========================================
   ACTIONABLE VARIANT - Set @ 40px
   These are a set size for actionable icons
   meant to stay at an optimized size even
   on touch-screen devices
========================================== */
/* line 34, app/assets/stylesheets/2018-nextgen-ui/objects/_icons.scss */
.o-icon--actionable-40px {
  height: 40px;
  width: 40px;
}

/* ==========================================
   ACTIONABLE VARIANT - Set @ 30px
   These are a set size for actionable icons
   meant to stay at an optimized size even
   on touch-screen devices
========================================== */
/* line 46, app/assets/stylesheets/2018-nextgen-ui/objects/_icons.scss */
.o-icon--actionable-30px {
  height: 30px;
  width: 30px;
}

/* ==========================================
Single-colored icons can be modified like so:
.o-icon--name {
  font-size: 32px;
  color: red;
}
========================================== */
@media (min-width: 40em) {
  /* line 1, app/assets/stylesheets/2018-nextgen-ui/objects/_layout-modifiers.scss */
  .o-layout--to-large {
    margin-left: -36px;
  }
  /* line 6, app/assets/stylesheets/2018-nextgen-ui/objects/_layout-modifiers.scss */
  .o-layout--to-large > .o-layout__item {
    padding-left: 36px;
  }
}

@media (min-width: 61.25em) {
  /* line 1, app/assets/stylesheets/2018-nextgen-ui/objects/_layout-modifiers.scss */
  .o-layout--to-large {
    margin-left: -48px;
  }
  /* line 14, app/assets/stylesheets/2018-nextgen-ui/objects/_layout-modifiers.scss */
  .o-layout--to-large > .o-layout__item {
    padding-left: 48px;
  }
}

@media (min-width: 40em) {
  /* line 21, app/assets/stylesheets/2018-nextgen-ui/objects/_layout-modifiers.scss */
  .o-layout--to-huge {
    margin-left: -36px;
  }
  /* line 26, app/assets/stylesheets/2018-nextgen-ui/objects/_layout-modifiers.scss */
  .o-layout--to-huge > .o-layout__item {
    padding-left: 36px;
  }
}

@media (min-width: 61.25em) {
  /* line 21, app/assets/stylesheets/2018-nextgen-ui/objects/_layout-modifiers.scss */
  .o-layout--to-huge {
    margin-left: -48px;
  }
  /* line 34, app/assets/stylesheets/2018-nextgen-ui/objects/_layout-modifiers.scss */
  .o-layout--to-huge > .o-layout__item {
    padding-left: 48px;
  }
}

@media (min-width: 71.875em) {
  /* line 21, app/assets/stylesheets/2018-nextgen-ui/objects/_layout-modifiers.scss */
  .o-layout--to-huge {
    margin-left: -96px;
  }
  /* line 42, app/assets/stylesheets/2018-nextgen-ui/objects/_layout-modifiers.scss */
  .o-layout--to-huge > .o-layout__item {
    padding-left: 96px;
  }
}

/* line 49, app/assets/stylesheets/2018-nextgen-ui/objects/_layout-modifiers.scss */
.o-layout--flex {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
}

/* ==========================================================================
   #SYSTEM MESSAGES
============================================================================= */
/* line 5, app/assets/stylesheets/2018-nextgen-ui/objects/_messages.scss */
.o-message {
  background-clip: padding-box;
  background-color: #e6e6e6;
  border: 1px solid #666666;
  border-radius: 6px;
  padding: 24px;
}

/* line 13, app/assets/stylesheets/2018-nextgen-ui/objects/_messages.scss */
.o-message--positive {
  background-color: #e0f1fd;
  border-color: #50b0f4;
}

/* line 18, app/assets/stylesheets/2018-nextgen-ui/objects/_messages.scss */
.o-message--success {
  background-color: #eff4d8;
  border-color: #b7cd4c;
}

/* line 23, app/assets/stylesheets/2018-nextgen-ui/objects/_messages.scss */
.o-message--alert {
  background-color: #fff7d7;
  border-color: #ffd63e;
}

/* line 28, app/assets/stylesheets/2018-nextgen-ui/objects/_messages.scss */
.o-message--warn {
  background-color: #fde3e1;
  border-color: #ee3124;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/objects/_gigya.scss */
.gy-account-label {
  color: #4d4d4d;
  cursor: arrow;
  display: block;
  font-size: .875rem;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 0;
}

/* line 12, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget .cx-side-button-group {
  z-index: 101 !important;
}

@media only screen and (min-width: 850px) {
  /* line 12, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
  .cx-widget .cx-side-button-group {
    top: 25%;
  }
}

/* line 21, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget table {
  background: none;
  border-style: none;
}

/* line 25, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget table tr:nth-of-type(2n) {
  background: none;
}

/* line 30, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi table label {
  color: #ffffff !important;
}

/* line 37, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi {
  color: #ffffff;
  background-color: #383838;
  scrollbar-face-color: #A3A8AE;
  scrollbar-track-color: #212529;
  scrollbar-arrow-color: #A3A8AE;
  font-family: "futura-pt", Helvetica, Arial, sans-serif;
}

/* line 45, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-theme {
  background-color: #383838;
  color: #ffffff;
  border-color: #666666 !important;
}

/* line 50, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-overlay {
  background-color: #383838;
}

/* line 53, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-svg-icon-tone1 {
  fill: #E1E723;
}

/* line 56, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-svg-icon-tone2 {
  fill: #8C8C8C;
}

/* line 59, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-svg-icon-shadow1 {
  fill: #000000;
  opacity: 0.2;
}

/* line 63, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-svg-icon-shadow2 {
  fill: #000000;
  opacity: 0.1;
}

/* line 67, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi * {
  border-color: #666666;
}

/* line 70, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-titlebar .cx-title {
  color: #E1E723;
}

/* line 73, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-buttons-window-control .cx-svg-icon-tone1 {
  fill: rgba(225, 231, 35, 0.5);
}

/* line 76, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-input-icon-overlay .cx-svg-icon-tone1 {
  fill: #98A7B8;
}

/* line 79, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi label {
  color: #ffffff;
}

/* line 82, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi a {
  color: #ffffff;
}

/* line 85, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi a:hover {
  color: #ffffff;
}

/* line 88, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-icon-alert-circle {
  color: #F53131;
}

/* line 91, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-footer, .cx-widget.cx-theme-ryobi .cx-branding {
  color: #404040;
}

/* line 94, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-footer *, .cx-widget.cx-theme-ryobi .cx-branding * {
  fill: #404040;
}

/* line 97, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-form-control {
  background-color: #666666;
  color: #ffffff;
}

/* line 101, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-form-control.cx-error {
  border-color: #F53131 !important;
}

/* line 104, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.95);
}
.cx-widget.cx-theme-ryobi .cx-form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.95);
}
.cx-widget.cx-theme-ryobi .cx-form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.95);
}
.cx-widget.cx-theme-ryobi .cx-form-control::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.95);
}
.cx-widget.cx-theme-ryobi .cx-form-control::placeholder {
  color: rgba(255, 255, 255, 0.95);
}

/* line 107, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-form-control:-moz-placeholder {
  color: rgba(255, 255, 255, 0.95);
}

/* line 110, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.95);
}

/* line 113, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.95);
}

/* line 116, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.95);
}

/* line 119, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi input:focus, .cx-widget.cx-theme-ryobi textarea:focus, .cx-widget.cx-theme-ryobi .cx-btn:focus, .cx-widget.cx-theme-ryobi .cx-button-group button:focus, .cx-widget.cx-theme-ryobi .cx-form-control:not(.cx-error):focus {
  border-color: #E1E723 !important;
}

/* line 122, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi input, .cx-widget.cx-theme-ryobi select, .cx-widget.cx-theme-ryobi textarea {
  background-color: #666666;
  color: #ffffff;
  border-color: #888;
}

/* line 127, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-btn-default {
  background: none;
  border-color: #222529 !important;
  color: #ffffff;
  background-color: #222529;
}

/* line 133, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-btn.cx-disabled {
  background: #CCCCCC;
}

/* line 136, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-btn-primary {
  color: #383838;
  border-color: #E1E723 !important;
  background: #E1E723;
}

/* line 141, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-button-group .cx-btn-primary:focus, .cx-widget.cx-theme-ryobi .cx-btn-primary:focus {
  border-color: #E1E723 !important;
}

/* line 144, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-ac-dropdown-menu {
  background: #383838;
  border-color: #222529 !important;
}

/* line 148, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-ac-suggestion:hover, .cx-widget.cx-theme-ryobi .cx-ac-suggestion.cx-active {
  background-color: #75A8FF;
  color: #ffffff;
}

/* line 152, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi ::-webkit-scrollbar-thumb {
  background: #A3A8AE;
}

/* line 155, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-smokescreen {
  background-color: #383838;
  opacity: 0.7;
}

/* line 159, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-dialog-container .cx-dialog {
  background-color: #383838;
  border-color: #222529 !important;
}

/* line 163, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-theme-background {
  background-color: #383838;
}

/* line 166, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-theme-border {
  border: 1px solid #666666 !important;
}

/* line 169, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-theme-text {
  color: #ffffff;
}

/* line 172, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-theme-icon-interactive1 svg .cx-svg-icon-tone1 {
  fill: #5081E1;
}

/* line 175, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-theme-icon-positive svg .cx-svg-icon-tone1 {
  fill: #4AC764;
}

/* line 178, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-theme-icon-negative svg .cx-svg-icon-tone1 {
  fill: #F53131;
}

/* line 181, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-theme-icon-warning svg .cx-svg-icon-tone1 {
  fill: #F8A740;
}

/* line 184, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-warning {
  color: #F53131 !important;
}

/* line 187, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-warning .cx-icon svg * {
  fill: #F53131 !important;
}

/* line 190, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-countdown {
  color: #ffffff;
}

/* line 193, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-countdown .cx-icon svg * {
  fill: #ffffff;
}

/* line 197, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-alert > .cx-wrapper {
  background-color: #383838;
  border-color: #222529;
  color: #ffffff;
}

/* line 202, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-transcript .cx-filename, .cx-widget.cx-theme-ryobi .cx-transcript .cx-filesize, .cx-widget.cx-theme-ryobi .cx-transcript .cx-name {
  color: #383838 !important;
}

/* line 205, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-transcript .cx-message-text {
  color: #383838;
}

/* line 208, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-transcript .cx-system .cx-message-text, .cx-widget.cx-theme-ryobi .cx-transcript .cx-system .cx-time {
  color: #ffffff;
}

/* line 211, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-transcript .cx-message .cx-name {
  font-weight: 600;
}

/* line 214, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-transcript .cx-message.cx-them .cx-bubble {
  background-color: #E1E723;
}

/* line 217, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-transcript .cx-message.cx-them .cx-bubble-arrow svg * {
  fill: #E1E723;
}

/* line 220, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-transcript .cx-message.cx-you .cx-bubble {
  background-color: #ffffff;
}

/* line 223, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-transcript .cx-message.cx-you .cx-bubble-arrow svg * {
  fill: #ffffff;
}

/* line 226, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-transcript .cx-time {
  color: #383838;
}

/* line 229, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi.cx-disabled .cx-input-container {
  background: #666666;
  pointer-events: none;
}

/* line 233, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi.cx-desktop .cx-input-focus {
  box-shadow: 0 2px 2px #E1E723;
  border-color: #E1E723 !important;
}

/* line 239, app/assets/stylesheets/2018-nextgen-ui/components/_webchat.scss */
.cx-widget.cx-theme-ryobi .cx-chat-button-label {
  color: #E1E723;
  font-size: 1.5rem;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_heading.scss */
.o-heading {
  -webkit-font-smoothing: antialiased;
  line-height: 1.15;
  color: #666666;
  font-family: "futura-pt", Helvetica, Arial, sans-serif;
}

/* line 8, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_heading.scss */
.o-heading--light {
  color: #ffffff;
}

/* line 12, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_heading.scss */
.o-heading--italic {
  font-style: italic;
}

/* line 16, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_heading.scss */
.o-heading--uppercase {
  text-transform: uppercase;
}

/* line 20, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_heading.scss */
.o-heading--thin {
  font-weight: 400;
}

/* line 24, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_heading.scss */
.o-heading--medium {
  font-weight: 500;
}

/* line 28, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_heading.scss */
.o-heading--bold {
  font-weight: 700;
}

/* line 32, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_heading.scss */
.o-heading--large {
  font-size: 2.75rem;
}

/* line 36, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_heading.scss */
.o-heading--text-shadow {
  text-shadow: 0 2px 8px #000000;
}

/* line 40, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_heading.scss */
.o-heading--inline {
  display: inline-block;
  vertical-align: middle;
}

/* line 45, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_heading.scss */
.o-heading--compressed {
  letter-spacing: -.15rem;
}

/* line 49, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_heading.scss */
.o-heading--blue {
  color: #50b0f4;
}

/* line 53, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_heading.scss */
.o-heading--gray {
  color: #aaaaaa;
}

/* line 57, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_heading.scss */
.o-heading--dark-gray {
  color: #888888;
}

/* line 61, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_heading.scss */
.o-heading--inherit {
  color: inherit;
}

/* line 65, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_heading.scss */
.o-heading--h1 {
  font-size: 2.25rem;
}

/* line 69, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_heading.scss */
.o-heading--h2 {
  font-size: 1.75rem;
}

/* line 73, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_heading.scss */
.o-heading--h3 {
  font-size: 1.5rem;
}

/* line 77, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_heading.scss */
.o-heading--h4 {
  font-size: 1.25rem;
}

/* line 81, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_heading.scss */
.o-heading--h5 {
  font-size: 1.125rem;
}

/* line 85, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_heading.scss */
.o-heading--h6 {
  font-size: 1rem;
}

/* ==========================================================================
   #BUTTONS
   ========================================================================== */
/* line 7, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button {
  -webkit-transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
  background-color: #50b0f4;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  font: inherit;
  font-size: 1rem;
  text-transform: uppercase;
  border: 1px solid transparent;
  outline: none;
  cursor: pointer;
  text-align: center;
  font-weight: 500;
  border-radius: 6px;
}

/* line 23, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button:hover, .o-button:focus {
  color: #ffffff;
  background-color: #b7cd4c;
}

/* line 29, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button[disabled] {
  opacity: 0.5;
  background-color: #aaaaaa;
}

/* line 33, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button[disabled]:hover, .o-button[disabled]:focus {
  background-color: #aaaaaa;
  cursor: default;
}

/* line 41, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button--green {
  background-color: #E1E723;
  color: #000000;
}

/* line 45, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button--green:hover, .o-button--green:focus {
  background-color: #000000;
  color: #ffffff;
}

/* line 52, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button--gray {
  background-color: #f1f1f1;
  color: #50b0f4;
}

/* line 56, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button--gray:hover, .o-button--gray:focus {
  background-color: #50b0f4;
  color: #ffffff;
}

/* line 63, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button--transparent {
  background-color: transparent;
  color: #50b0f4;
}

/* line 67, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button--transparent:hover, .o-button--transparent:focus {
  background-color: #f1f1f1;
}

/* line 73, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button--dark,
.o-button--ghost {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid #E1E723;
  box-shadow: 0 0 0px rgba(225, 231, 35, 0);
  color: #E1E723;
  font-weight: 500;
}

/* line 81, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button--dark:hover, .o-button--dark:focus,
.o-button--ghost:hover,
.o-button--ghost:focus {
  background-color: rgba(225, 231, 35, 0.95);
  border-color: #E1E723;
  box-shadow: 0 0 24px rgba(225, 231, 35, 0.5);
  color: #000000;
}

/* line 91, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button--dark {
  background-color: #222222;
  border-color: #222222;
}

/* line 96, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button-group {
  margin: 0.5rem 0;
}

/* line 99, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button-group .o-button {
  margin-bottom: 0.25rem;
  margin-right: 0.25rem;
}

/* line 103, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button-group .o-button:last-child {
  margin-right: 0;
}

/* line 108, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button-group .o-button--full-width {
  margin-left: 0;
}

@media (min-width: 40em) {
  /* line 113, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
  .o-button--large {
    font-size: 1.25rem;
  }
}

/* line 119, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button--long {
  padding: 0.5rem 3rem;
}

/* line 123, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button--shadow {
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.64);
}

/* line 127, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button--destroy {
  background-color: transparent;
  color: #ee3124;
  font-weight: 500;
  text-transform: none;
}

/* line 133, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button--destroy:focus, .o-button--destroy:hover {
  background-color: #f1f1f1;
}

/* line 139, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button--destroy-heavy {
  background-color: #ee3124;
}

/* line 142, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button--destroy-heavy:focus, .o-button--destroy-heavy:hover {
  background-color: #000000;
  color: #ee3124;
}

/* line 149, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button--full-width {
  width: 100%;
}

/* line 154, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button--toggle .o-icon {
  -webkit-transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 2px;
  margin: auto;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

/* line 169, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
input:checked + .o-button--toggle, .o-button--toggle.is-active {
  background-color: #50b0f4;
  color: #ffffff;
}

/* line 174, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
input:checked + .o-button--toggle .o-icon, .o-button--toggle.is-active .o-icon {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* line 182, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
input:checked + .o-button--toggle {
  background-color: #50b0f4;
  color: #ffffff;
}

/* line 186, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
input:checked + .o-button--toggle .o-icon {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* line 195, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-unbutton,
.o-button--bare {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0;
  border: 0;
  cursor: pointer;
}

/* line 205, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-unbutton:focus, .o-unbutton:hover,
.o-button--bare:focus,
.o-button--bare:hover {
  background-color: transparent;
}

/* line 211, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-unbutton {
  color: inherit;
}

/* line 215, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button--bare {
  color: #50b0f4;
}

/* line 218, app/assets/stylesheets/2018-nextgen-ui/objects/_buttons.scss */
.o-button--bare:focus, .o-button--bare:hover {
  color: #b7cd4c;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_link.scss */
.o-link {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  -webkit-transition: color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* line 4, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_link.scss */
.o-link:hover {
  color: #b7cd4c;
}

/* line 9, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_link.scss */
.o-link--blue {
  color: #50b0f4;
}

/* line 13, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_link.scss */
.o-link--destroy {
  color: #ee3124;
}

/* line 16, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_link.scss */
.o-link--destroy:hover {
  color: #f25e53;
}

/* line 21, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_link.scss */
.o-link--light {
  color: #ffffff;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_list-bare.scss */
.o-list-bare--indented {
  margin-left: 1rem;
}

/* line 5, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_list-bare.scss */
.o-list-bare--indented-large {
  margin-left: 1rem;
}

@media (min-width: 61.25em) {
  /* line 5, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_list-bare.scss */
  .o-list-bare--indented-large {
    margin-left: 5rem;
  }
}

/* line 15, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_list-bare.scss */
.o-list-bare--bordered-bottom .o-list-bare__item {
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

/* line 20, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_list-bare.scss */
.o-list-bare--bordered-bottom .o-list-bare__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

/* line 27, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_list-bare.scss */
.o-list-bare--bordered {
  margin-top: .5rem;
}

@media (min-width: 61.25em) {
  /* line 27, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_list-bare.scss */
  .o-list-bare--bordered {
    margin-left: 4rem;
  }
}

/* line 34, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_list-bare.scss */
.o-list-bare--bordered .o-list-bare__item {
  padding-left: 1rem;
  position: relative;
}

/* line 38, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_list-bare.scss */
.o-list-bare--bordered .o-list-bare__item:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -2px;
  width: 2px;
  height: 100%;
  background-color: rgba(80, 176, 244, 0.25);
}

/* line 49, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_list-bare.scss */
.o-list-bare--bordered .o-list-bare__item.belongs-to-user:after {
  left: -3px;
  width: 4px;
  background-color: #e1e723;
}

/* line 57, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_list-bare.scss */
.o-list-bare__item__image {
  cursor: pointer;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_list-inline.scss */
.o-list-inline--delimited {
  font-size: 0;
}

/* line 4, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_list-inline.scss */
.o-list-inline--delimited .o-list-inline__item {
  font-size: 1rem;
  border-left: 1px solid transparent;
  border-right: 1px solid #888888;
  padding-left: .5rem;
  padding-right: .5rem;
}

/* line 11, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_list-inline.scss */
.o-list-inline--delimited .o-list-inline__item:first-child {
  padding-left: 0;
  border-left: 0;
}

/* line 16, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_list-inline.scss */
.o-list-inline--delimited .o-list-inline__item:last-child {
  border-right: 1px solid transparent;
  padding-right: 0;
}

/* line 25, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_list-inline.scss */
.o-list-inline--medium .o-list-inline__item {
  margin-right: 1.5rem;
}

/* line 28, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_list-inline.scss */
.o-list-inline--medium .o-list-inline__item:last-child {
  margin-right: 0;
}

/* line 36, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_list-inline.scss */
.o-list-inline--middle .o-list-inline__item {
  vertical-align: middle;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_media.scss */
.o-media__img--avatar {
  width: 60px;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
.o-input {
  width: 100%;
  display: block;
  margin-bottom: 1rem;
  position: relative;
}

/* line 7, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
.o-input .o-button {
  line-height: 1.15;
  font-size: 1rem;
  border: 2px solid transparent;
}

/* line 15, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
.o-input--checkbox {
  margin: .25rem 0;
}

/* line 19, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
.o-input--inline {
  display: inline-block;
  width: auto;
}

/* line 24, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
.o-input__label {
  display: block;
  text-transform: uppercase;
}

/* line 28, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
.o-input--inline .o-input__label {
  display: inline-block;
  vertical-align: middle;
  margin-right: .5rem;
}

/* line 34, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
.o-input--light .o-input__label {
  color: #ffffff;
}

/* line 38, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
.o-input--checkbox .o-input__label {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 50px);
}

/* line 45, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
.o-input__field, body .chosen-container-multi {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  /* easeOutQuart */
  -webkit-transition: 0.25s border-color cubic-bezier(0.165, 0.84, 0.44, 1),  0.25s background-color cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.25s border-color cubic-bezier(0.165, 0.84, 0.44, 1),  0.25s background-color cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
  width: 100%;
  outline: none;
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
  padding: .5rem;
  color: #666666;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05) inset;
  border: 2px solid #e6e6e6;
  border-radius: 4px;
  background-color: #ffffff;
  font-size: 1rem;
}

/* line 61, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
.o-input__field:focus, body .chosen-container-multi:focus {
  border-color: #b7cd4c;
}

/* line 65, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
.o-input--inline .o-input__field, .o-input--inline body .chosen-container-multi {
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

/* line 71, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
.o-input--textarea .o-input__field, .o-input--textarea body .chosen-container-multi {
  width: 100%;
  min-height: 150px;
  resize: none;
}

/* line 77, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
.o-input--file .o-input__field, .o-input--file body .chosen-container-multi {
  border: 0;
  box-shadow: none;
  padding: 0;
}

/* line 83, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
.o-input--select .o-input__field, .o-input--select body .chosen-container-multi {
  background-color: #f1f1f1;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 30px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
}

/* line 91, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
.o-input--display-only .o-input__field, .o-input--display-only body .chosen-container-multi {
  border-radius: 0;
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid #e6e6e6;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

/* line 101, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
.o-input__field .chosen-choices, .o-input__field .chosen-search-input, body .chosen-container-multi .chosen-choices, body .chosen-container-multi .chosen-search-input {
  outline: none;
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
  background-image: none;
  box-shadow: none;
}

/* line 110, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
.o-input__field[type="checkbox"], body .chosen-container-multi[type="checkbox"] {
  vertical-align: middle;
  -webkit-appearance: checkbox;
}

/* line 116, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
.o-input__input-wrapper {
  position: relative;
}

/* line 119, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
.o-input--inline .o-input__input-wrapper {
  display: inline-block;
  vertical-align: middle;
}

/* line 125, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
.o-input--select {
  cursor: pointer;
}

/* line 128, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
.o-input--select .o-icon {
  width: 28px;
  height: 28px;
  margin: auto;
  pointer-events: none;
}

/* line 135, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
.o-input--select .o-input__input-wrapper .o-icon {
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
}

/* line 143, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
.o-input--select.o-input--display-only .o-icon {
  display: none;
}

/* line 150, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
body .chosen-container-multi .chosen-choices li {
  display: inline-block;
  list-style: none;
  vertical-align: bottom;
  float: none;
}

/* line 156, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
body .chosen-container-multi .chosen-choices li.search-choice {
  font-size: 1rem;
  background-color: #888888;
  color: #ffffff;
  border: 0;
  background-image: none;
  box-shadow: none;
  padding: 1rem 2rem 1rem .5rem;
  position: relative;
  border-radius: 7px;
}

/* line 167, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
body .chosen-container-multi .chosen-choices li.search-choice:after {
  content: "×";
  display: block;
  position: absolute;
  top: 50%;
  right: .5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 2rem;
  color: #ffffff;
  pointer-events: none;
}

/* line 179, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
body .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  opacity: 0;
  top: 0;
  right: 0;
  width: 2rem;
  height: 100%;
}

/* line 189, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
.o-input--list-add__list {
  margin-bottom: .5rem;
}

/* line 193, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_input.scss */
.o-input--list-add__button {
  margin-top: .5rem;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_spec-table.scss */
.o-spec-table {
  width: auto;
  margin: 0;
}

/* line 6, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_spec-table.scss */
.o-spec-table__key {
  padding-right: .5rem;
}

/* line 10, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_spec-table.scss */
.o-spec-table__value {
  padding-left: .5rem;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_bubble-text.scss */
.o-bubble-text {
  display: inline-block;
  list-style: none;
  vertical-align: bottom;
  float: none;
  font-size: 1rem;
  background-color: #888888;
  color: #ffffff;
  border: 0;
  background-image: none;
  box-shadow: none;
  padding: 1rem 2rem 1rem .5rem;
  position: relative;
  border-radius: 7px;
  margin-bottom: .2rem;
  margin-right: .2rem;
}

/* line 18, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_bubble-text.scss */
.o-bubble-text:last-child {
  margin-right: 0;
}

/* line 23, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_bubble-text.scss */
.o-bubble-text__text {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}

/* line 30, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_bubble-text.scss */
.o-bubble-text__destroy {
  display: block;
  position: absolute;
  top: 50%;
  right: .5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
  padding: 0;
}

/* line 42, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_bubble-text.scss */
.o-input--list-add__hidden-field {
  display: none;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_loading-spinner.scss */
.o-loading-spinner {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  /* easeOutQuart */
  -webkit-transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),  visibiity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),  visibiity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.75);
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  padding: 1rem;
}

/* line 13, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_loading-spinner.scss */
.o-loading-spinner.is-active {
  visibility: visible;
  opacity: 1;
}

/* line 19, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_loading-spinner.scss */
.o-loading-spinner__spinner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  max-height: 90%;
  -webkit-transform: translateZ(0);
  -webkit-border-radius: 0;
  -webkit-backface-visibility: hidden;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_error-message.scss */
.o-error-message {
  color: #ee3124;
  display: none;
}

/* line 5, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_error-message.scss */
.o-error-message.is-showing {
  display: block;
}

/* line 10, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_error-message.scss */
.o-error-message--subscribe {
  display: none;
  background-color: #ee3124;
  color: white;
  font-weight: 400;
  margin: 12px 0;
  padding: 24px;
  text-align: center;
  border-radius: 6px;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_generic-video.scss */
.o-generic-video {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

/* line 8, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_generic-video.scss */
.o-generic-video__video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

@keyframes flare_pulsate {
  0% {
    opacity: .6;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
  }
  100% {
    opacity: .6;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes flare_pulsate {
  0% {
    opacity: .6;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
  }
  100% {
    opacity: .6;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* line 36, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_flare.scss */
.o-flare {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  /* easeOutQuart */
  -webkit-transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),  -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),  -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),  transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),  transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),  -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  height: 0;
  padding-top: 100%;
  border-radius: 100%;
  box-shadow: 0 0 4px 3px white;
  background-color: #ffffff;
  opacity: .6;
}

/* line 46, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_flare.scss */
.o-flare.is-pulsing {
  animation: flare_pulsate 3.5s infinite;
  -moz-animation: flare_pulsate 3.5s infinite;
  -webkit-animation: flare_pulsate 3.5s infinite;
  -o-animation: flare_pulsate 3.5s infinite;
}

/* line 54, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_flare.scss */
.o-flare--ryobi-green {
  box-shadow: 0 0 4px 3px #e1e723;
  background-color: rgba(238, 241, 127, 0.65);
}

/* line 59, app/assets/stylesheets/2018-nextgen-ui/../nation/objects/_flare.scss */
.o-flare--gold {
  box-shadow: 0 0 4px 3px #ffd63e;
  background-color: rgba(255, 236, 164, 0.65);
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/components/_global-header.scss */
.c-global-header {
  background-color: transparent;
  color: #666666;
  font-family: "futura-pt", Helvetica, Arial, sans-serif;
  position: -moz-sticky;
  position: -webkit-sticky;
  position: sticky;
  top: -48px;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 5000;
}

@media (min-width: 40em) and (max-width: 53.115em) {
  /* line 1, app/assets/stylesheets/2018-nextgen-ui/components/_global-header.scss */
  .c-global-header {
    top: -65px;
  }
}

@media (max-width: 39.99em) {
  /* line 1, app/assets/stylesheets/2018-nextgen-ui/components/_global-header.scss */
  .c-global-header {
    top: -57px;
  }
}

/* line 24, app/assets/stylesheets/2018-nextgen-ui/components/_global-header.scss */
.c-global-header__aux {
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.65);
  color: #E1E723;
  height: 48px;
}

/* line 31, app/assets/stylesheets/2018-nextgen-ui/components/_global-header.scss */
.c-global-auxnav__list {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row nowrap;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: end;
          justify-content: flex-end;
  margin: 0;
  padding: 0;
  height: 48px;
}

/* line 41, app/assets/stylesheets/2018-nextgen-ui/components/_global-header.scss */
.c-global-auxnav__item {
  display: block;
  list-style: none;
  height: 100%;
}

@media (min-width: 53.125em) {
  /* line 41, app/assets/stylesheets/2018-nextgen-ui/components/_global-header.scss */
  .c-global-auxnav__item {
    margin-left: 24px;
  }
}

@media (min-width: 53.125em) {
  /* line 53, app/assets/stylesheets/2018-nextgen-ui/components/_global-header.scss */
  .c-global-auxnav__item--sign-in .o-nav-dropdown {
    left: auto;
    top: 100%;
  }
}

/* line 60, app/assets/stylesheets/2018-nextgen-ui/components/_global-header.scss */
.c-global-auxnav__link {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  color: currentColor;
  display: block;
  font-size: .875em;
  font-weight: 400;
  margin-bottom: 0;
  padding: 0;
  text-transform: uppercase;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row nowrap;
  -webkit-box-align: center;
          align-items: center;
  height: 100%;
}

/* line 78, app/assets/stylesheets/2018-nextgen-ui/components/_global-header.scss */
.c-global-auxnav__link:focus, .c-global-auxnav__link:hover {
  color: #50b0f4;
  outline: none;
}

/* line 85, app/assets/stylesheets/2018-nextgen-ui/components/_global-header.scss */
.has-notifications:before {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  /* easeOutQuart */
  -webkit-transition: 0.25s border-color cubic-bezier(0.165, 0.84, 0.44, 1),  0.25s background-color cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.25s border-color cubic-bezier(0.165, 0.84, 0.44, 1),  0.25s background-color cubic-bezier(0.165, 0.84, 0.44, 1);
  content: '';
  display: inline-block;
  float: left;
  width: 17px;
  height: 17px;
  position: relative;
  background-color: #E1E723;
  border-radius: 100%;
  z-index: 200;
  pointer-events: none;
  animation: pulse_hotspot 2.5s infinite;
  -moz-animation: pulse_hotspot 2.5s infinite;
  -webkit-animation: pulse_hotspot 2.5s infinite;
  -o-animation: pulse_hotspot 2.5s infinite;
}

/* line 104, app/assets/stylesheets/2018-nextgen-ui/components/_global-header.scss */
.has-notifications-li:before {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  /* easeOutQuart */
  -webkit-transition: 0.25s border-color cubic-bezier(0.165, 0.84, 0.44, 1),  0.25s background-color cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.25s border-color cubic-bezier(0.165, 0.84, 0.44, 1),  0.25s background-color cubic-bezier(0.165, 0.84, 0.44, 1);
  content: '';
  display: inline-block;
  float: left;
  width: 17px;
  height: 17px;
  left: 14px;
  top: 10px;
  position: relative;
  background-color: #E1E723;
  border-radius: 100%;
  z-index: 200;
  pointer-events: none;
  animation: pulse_hotspot 2.5s infinite;
  -moz-animation: pulse_hotspot 2.5s infinite;
  -webkit-animation: pulse_hotspot 2.5s infinite;
  -o-animation: pulse_hotspot 2.5s infinite;
}

/* line 125, app/assets/stylesheets/2018-nextgen-ui/components/_global-header.scss */
.c-global-header__nav {
  background-color: #E1E723;
  color: #000000;
  margin-bottom: 0;
}

/* line 132, app/assets/stylesheets/2018-nextgen-ui/components/_global-header.scss */
.c-global-header__brand-logo {
  color: #ffffff;
  font-style: normal;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  height: 2em;
  width: 100%;
  display: inline-block;
  vertical-align: middle;
}

@media (min-width: 40em) {
  /* line 132, app/assets/stylesheets/2018-nextgen-ui/components/_global-header.scss */
  .c-global-header__brand-logo {
    height: 2.5em;
  }
}

@media (min-width: 61.25em) {
  /* line 132, app/assets/stylesheets/2018-nextgen-ui/components/_global-header.scss */
  .c-global-header__brand-logo {
    height: 3em;
  }
}

@media (min-width: 71.875em) {
  /* line 132, app/assets/stylesheets/2018-nextgen-ui/components/_global-header.scss */
  .c-global-header__brand-logo {
    height: 3.375em;
  }
}

/* line 156, app/assets/stylesheets/2018-nextgen-ui/components/_global-header.scss */
.o-list-undo {
  margin: 0;
  padding: 0;
}

/* line 160, app/assets/stylesheets/2018-nextgen-ui/components/_global-header.scss */
.o-list-undo > li {
  list-style: none;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav.scss */
.c-global-navbar {
  position: relative;
  text-transform: uppercase;
  z-index: 600;
}

@media (min-width: 53.125em) and (max-width: 71.865em) {
  /* line 6, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav.scss */
  .c-global-navbar .c-global-navbar__extra-text {
    display: none;
  }
}

@media (max-width: 53.115em) {
  /* line 12, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav.scss */
  .c-global-navbar .c-global-navbar__extra-text--reverse {
    display: none;
  }
}

@media (min-width: 71.875em) {
  /* line 12, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav.scss */
  .c-global-navbar .c-global-navbar__extra-text--reverse {
    display: none;
  }
}

/* line 23, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav.scss */
.c-global-nav__homelink {
  display: block;
  flex-shrink: 0;
  position: relative;
  z-index: 700;
}

/* line 33, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav.scss */
.c-global-navbar__link {
  cursor: pointer;
  display: block;
  font-weight: 500;
  text-transform: uppercase;
}

/* line 39, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav.scss */
.c-global-navbar__link:focus, .c-global-navbar__link:hover {
  color: #50b0f4;
}

/* line 45, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav.scss */
.c-global-navbar__item {
  white-space: nowrap;
}

/* line 49, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav.scss */
.has-nav-dropdown {
  position: relative;
}

/* line 53, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav.scss */
.o-nav-dropdown {
  min-width: 200px;
  padding: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

/* line 63, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav.scss */
.o-nav-dropdown a {
  display: block;
}

/* line 67, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav.scss */
.has-nav-dropdown:focus > .o-nav-dropdown,
.has-nav-dropdown:hover > .o-nav-dropdown,
a:focus + .o-nav-dropdown,
a:hover + .o-nav-dropdown {
  max-height: 100vh;
  opacity: 1;
  padding-top: 24px;
  padding-bottom: 24px;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  z-index: 3000;
}

/* line 80, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav.scss */
.c-nav-dropdown {
  background-color: rgba(34, 34, 34, 0.95);
  min-width: 200px;
  padding: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

/* line 91, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav.scss */
.c-global-navbar__item:focus > .c-nav-dropdown,
.c-global-navbar__item:hover > .c-nav-dropdown,
.c-global-navbar__link:focus + .c-nav-dropdown,
.c-global-navbar__link:hover + .c-nav-dropdown {
  max-height: 100vh;
  opacity: 1;
  padding-top: 24px;
  padding-bottom: 24px;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

/* line 102, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav.scss */
.c-nav-dropdown a {
  color: #ffffff;
  padding: 6px 36px;
  white-space: normal;
}

/* line 107, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav.scss */
.c-nav-dropdown a:focus, .c-nav-dropdown a:hover {
  color: #50b0f4;
}

/* line 114, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav.scss */
.c-nav-dropdown__link {
  display: block;
}

/* line 118, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav.scss */
.c-global-navbar__subtitle {
  color: #E1E723;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 0;
  padding: 6px 36px;
}

@media (max-width: 53.115em) {
  /* line 2, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .c-global-navbar {
    background-color: rgba(0, 0, 0, 0.95);
    font-weight: 400;
  }
  /* line 7, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .c-global-nav__homelink {
    padding: 12px;
  }
  /* line 11, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .c-global-navbar__main {
    background-color: #E1E723;
    border-top: 1px solid #888888;
    color: #000000;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
  }
  /* line 22, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .c-nav-dropdown__link--help-plus__image {
    display: none;
  }
  /* line 26, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .c-global-header__aux,
  .c-global-navbar__link > .o-icon:not(.o-icon--mobile-disclosure),
  .c-global-auxnav__textlabel,
  .c-nav-promo-cluster,
  .c-global-auxnav__item--language {
    display: none;
  }
  /* line 36, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .c-global-auxnav__item--sign-in .o-nav-dropdown {
    position: absolute;
    left: auto;
    right: -12px;
    top: 100%;
  }
  /* line 46, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .c-global-navbar__list--tools {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row nowrap;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
            align-items: center;
    position: relative;
  }
  /* line 54, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .c-global-navbar__list--site {
    background-color: #222222;
    background-color: rgba(34, 34, 34, 0.975);
    color: #ffffff;
    display: block;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-flow: column nowrap;
    opacity: 1;
    pointer-events: none;
    position: absolute;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    overflow-x: auto;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
    z-index: -1;
  }
  /* line 75, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .c-global-navbar__list--site > .c-global-navbar__item:first-child {
    padding-top: 12px;
  }
  /* line 79, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .c-global-navbar__list--site .c-global-navbar__link {
    color: inherit;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row nowrap;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
            align-items: center;
    padding: 6px 12px 6px 24px;
    height: 44px;
  }
  /* line 90, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .c-global-navbar__list--site .c-global-navbar__link:hover + .c-nav-dropdown,
  .c-global-navbar__list--site .c-global-navbar__link + .c-nav-dropdown {
    padding-top: 0;
    padding-bottom: 0;
    position: absolute;
    top: 53px;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
    z-index: -1;
    overflow-y: auto;
  }
  /* line 109, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .c-global-navbar__list--site .c-global-navbar__link.is-active + .c-nav-dropdown, .c-global-navbar__list--site .c-global-navbar__link:active + .c-nav-dropdown, .c-global-navbar__list--site .c-global-navbar__link:focus + .c-nav-dropdown {
    max-height: 100vh;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition-delay: 0.25s;
            transition-delay: 0.25s;
    z-index: 300;
  }
  /* line 119, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .c-global-navbar__list--site .has-nav-dropdown {
    position: static;
  }
  /* line 122, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .c-global-navbar__list--site .has-nav-dropdown > .c-global-navbar_link,
  .c-global-navbar__list--site .has-nav-dropdown > .c-nav-dropdown__link {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row nowrap;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
            align-items: center;
    padding-right: 12px;
  }
  /* line 130, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .c-global-navbar__list--site .has-nav-dropdown > .c-global-navbar_link.is-active .o-icon--mobile-disclosure,
  .c-global-navbar__list--site .has-nav-dropdown > .c-nav-dropdown__link.is-active .o-icon--mobile-disclosure {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  /* line 137, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .c-nav-dropdown--primary {
    background-color: #222222;
  }
  /* line 140, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .c-nav-dropdown--primary .c-global-navbar__mobile-header {
    background-color: #222222;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
  }
  /* line 153, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .c-nav-dropdown--primary .c-nav-dropdown__link.is-active + .c-nav-dropdown, .c-nav-dropdown--primary .c-nav-dropdown__link:focus + .c-nav-dropdown {
    max-height: 100vh;
    opacity: 1;
  }
  /* line 160, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .c-nav-dropdown--primary .c-nav-dropdown {
    background-color: rgba(170, 170, 170, 0.2);
  }
  /* line 165, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .c-nav-dropdown--secondary {
    border-top: 1px solid #222222;
  }
  /* line 169, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .c-mobile-navheader {
    border-bottom: 1px solid #000000;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row nowrap;
    -webkit-box-align: space-between;
            align-items: space-between;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: 0;
            order: -1;
  }
  /* line 177, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .c-mobile-navheader .c-mobile-navheader__link {
    color: #ffffff;
    -webkit-box-flex: 1;
            flex-grow: 1;
    padding: 12px 12px 12px 24px;
    width: 49%;
  }
  /* line 184, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .c-mobile-navheader .c-mobile-navheader__link--close {
    -webkit-box-pack: end;
            justify-content: flex-end;
  }
  /* line 188, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .c-mobile-navheader .c-mobile-navheader__link--back {
    font-weight: 600;
  }
  /*html*/
  /* line 196, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .has-global-mobile-menu-open,
  .has-global-mobile-menu-open body {
    height: 100%;
    overflow: hidden;
  }
  /* line 202, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-mobile.scss */
  .has-global-mobile-menu-open .c-global-navbar__list--site {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
    position: fixed;
    z-index: 700;
  }
}

/* ==========================================================================
   #DESKTOP VARIANT of #GLOBAL NAVBAR
============================================================================= */
@media (min-width: 53.125em) {
  /* line 6, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-global-navbar {
    -webkit-transition: height .3s ease;
    transition: height .3s ease;
    height: 60px;
  }
  /* line 10, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .js-is-sticky--change .c-global-navbar {
    height: 60px;
  }
  /* line 15, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-global-navbar__wrapper,
  .c-global-navbar__list,
  .c-global-navbar__item,
  .c-global-navbar__link {
    height: 100%;
  }
  /* line 24, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-global-navbar__wrapper {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row nowrap;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  /* line 31, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-global-nav__homelink {
    -webkit-transition: all 250ms ease;
    transition: all 250ms ease;
    width: 141.45px;
  }
  /* line 35, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .js-is-sticky--change .c-global-nav__homelink {
    width: 100px;
  }
  /* line 40, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-global-navbar__main,
  .c-global-navbar__list {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row nowrap;
    -webkit-box-flex: 1;
            flex-grow: 1;
    -webkit-box-pack: justify;
            justify-content: space-between;
    height: 100%;
  }
  /* line 50, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-global-navbar__main {
    margin-left: 24px;
    position: relative;
  }
}

@media (min-width: 53.125em) and (min-width: 71.875em) {
  /* line 50, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-global-navbar__main {
    margin-left: 24px;
  }
}

@media (min-width: 53.125em) {
  /* line 59, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-global-navbar__link {
    color: currentColor;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row nowrap;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    padding: 12px 24px;
    -webkit-transition: color .35s ease;
    transition: color .35s ease;
  }
  /* line 69, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-global-navbar__item:focus > .c-global-navbar__link,
  .c-global-navbar__item:hover > .c-global-navbar__link, .c-global-navbar__link:focus, .c-global-navbar__link:hover {
    color: #000000;
  }
  /* line 83, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-global-navbar__item--menu,
  .c-global-navbar__mobile-header,
  .o-icon--mobile-disclosure {
    display: none;
  }
  /* line 89, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-global-navbar__item--search {
    margin-left: auto;
  }
  /* line 94, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .js-is-sticky--change .c-global-navbar__item--search .c-global-search__textlabel {
    display: none;
  }
  /* line 100, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-global-navbar__item--auxnav {
    display: none;
    -webkit-box-align: center;
            align-items: center;
  }
  /* line 104, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-global-navbar__item--auxnav .c-global-auxnav__textlabel {
    display: none;
  }
  /* line 108, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .js-is-sticky--change .c-global-navbar__item--auxnav {
    display: inline-block;
    display: -webkit-box;
    display: flex;
  }
  /* line 115, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-nav-dropdown--primary .has-nav-dropdown {
    position: static;
  }
  /* line 119, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-nav-dropdown--support {
    width: 500px;
  }
  /* line 123, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-nav-dropdown__link--no-padding {
    padding: 0 !important;
  }
  /* line 127, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-nav-dropdown__link--help-plus__image {
    max-width: 200px;
    position: absolute;
    left: 280px;
  }
  /* line 133, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-nav-dropdown {
    background-color: #222222;
    background-color: rgba(34, 34, 34, 0.95);
    min-width: 200px;
    padding: 0;
    position: absolute;
    top: 100%;
    left: -12px;
    right: -12px;
    z-index: 100;
    -webkit-transition: all 0.2s ease, z-index 0ms;
    transition: all 0.2s ease, z-index 0ms;
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
  }
  /* line 151, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-global-navbar__item:focus > .c-nav-dropdown,
  .c-global-navbar__item:hover > .c-nav-dropdown,
  .c-global-navbar__link:focus + .c-nav-dropdown,
  .c-global-navbar__link:hover + .c-nav-dropdown {
    max-height: 100vh;
    opacity: 1;
    overflow: visible;
    padding-top: 24px;
    padding-bottom: 24px;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    z-index: 110;
  }
  /* line 164, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-nav-dropdown .c-nav-dropdown__link {
    color: #ffffff;
    font-weight: 500;
    padding: 6px 36px;
    white-space: normal;
  }
  /* line 170, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-nav-dropdown .c-nav-dropdown__link::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -4px;
    width: 6px;
    height: 100%;
    z-index: 100;
    pointer-events: none;
  }
  /* line 182, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-nav-dropdown .c-nav-dropdown__link:focus, .c-nav-dropdown .c-nav-dropdown__link:hover {
    color: #50b0f4;
  }
  /* line 186, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-nav-dropdown .c-nav-dropdown__link:focus::after, .c-nav-dropdown .c-nav-dropdown__link:hover::after {
    pointer-events: auto;
  }
  /* line 193, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-nav-dropdown--secondary {
    top: 0;
    left: 100%;
    left: calc(100% + 2px);
    right: auto;
    width: 62vw;
    max-width: 900px;
  }
  /* line 201, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-nav-dropdown--secondary .c-nav-dropdown__link {
    position: relative;
    white-space: normal;
  }
  /* line 205, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-nav-dropdown--secondary .c-nav-dropdown__link::before {
    background-color: #50b0f4;
    background-clip: padding-box;
    border-radius: 2px;
    content: '';
    height: 65%;
    height: calc(100% - 22px);
    min-height: 1em;
    opacity: 0;
    width: 3px;
    position: absolute;
    left: 24px;
    display: inline-block;
    vertical-align: baseline;
    line-height: inherit;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
  }
  /* line 227, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-nav-dropdown--secondary .c-nav-dropdown__link:focus::before, .c-nav-dropdown--secondary .c-nav-dropdown__link:hover::before {
    opacity: 1;
  }
  @supports ((-webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%)) or (clip-path: polygon(100% 0, 0 50%, 100% 100%))) {
    /* line 235, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
    .c-nav-dropdown--secondary .c-nav-dropdown__link:focus::after, .c-nav-dropdown--secondary .c-nav-dropdown__link:hover::after {
      -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
              clip-path: polygon(100% 0, 0 50%, 100% 100%);
      width: 65%;
      height: 750%;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
    }
  }
  @supports not ((-webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%)) or (clip-path: polygon(100% 0, 0 50%, 100% 100%))) {
    /* line 246, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
    .c-nav-dropdown--secondary .c-nav-dropdown__link:focus::after, .c-nav-dropdown--secondary .c-nav-dropdown__link:hover::after {
      height: 250px;
      width: 250px;
      top: 50%;
      -webkit-transform: rotate(-45deg) translateY(-176.775px);
              transform: rotate(-45deg) translateY(-176.775px);
      right: -85%;
    }
  }
  /* line 257, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  li:focus > .c-nav-dropdown--secondary,
  li:hover > .c-nav-dropdown--secondary,
  a:focus + .c-nav-dropdown--secondary,
  a:hover + .c-nav-dropdown--secondary {
    max-height: 100vh;
    min-height: 18.75em;
    opacity: 1;
    padding-top: 24px;
    padding-bottom: 24px;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  /* line 270, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-nav-dropdown-secondary--diy {
    top: 0;
    left: 100%;
    left: calc(100% + 2px);
    right: auto;
    width: 62vw;
    max-width: 250px;
  }
  /* line 278, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-nav-dropdown-secondary--diy .c-nav-dropdown__link {
    position: relative;
    white-space: nowrap;
  }
  /* line 282, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-nav-dropdown-secondary--diy .c-nav-dropdown__link::before {
    background-color: #50b0f4;
    background-clip: padding-box;
    border-radius: 2px;
    content: '';
    height: 65%;
    height: calc(100% - 22px);
    min-height: 1em;
    opacity: 0;
    width: 3px;
    position: absolute;
    left: 24px;
    display: inline-block;
    vertical-align: baseline;
    line-height: inherit;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
  }
  /* line 304, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-nav-dropdown-secondary--diy .c-nav-dropdown__link:focus::before, .c-nav-dropdown-secondary--diy .c-nav-dropdown__link:hover::before {
    opacity: 1;
  }
  /* line 310, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  li:focus > .c-nav-dropdown-secondary--diy,
  li:hover > .c-nav-dropdown-secondary--diy,
  a:focus + .c-nav-dropdown-secondary--diy,
  a:hover + .c-nav-dropdown-secondary--diy {
    max-height: 100vh;
    opacity: 1;
    padding-top: 24px;
    padding-bottom: 24px;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  /* line 323, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-global-nav__list--level-2 {
    float: left;
  }
  /* line 327, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-global-nav__list--level-2,
  .c-nav-dropdown--tertiary {
    width: 50%;
  }
}

@media (min-width: 53.125em) and (min-width: 61.25em) {
  /* line 327, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-global-nav__list--level-2,
  .c-nav-dropdown--tertiary {
    width: 33.333333%;
  }
}

@media (min-width: 53.125em) {
  /* line 336, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-nav-dropdown--tertiary {
    background-color: transparent;
    opacity: 0;
    min-height: 100%;
    padding-top: 24px;
    position: absolute;
    left: 50%;
    top: 0;
    z-index: -1;
    pointer-events: none;
  }
}

@media (min-width: 53.125em) and (min-width: 61.25em) {
  /* line 336, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-nav-dropdown--tertiary {
    left: 33.333333%;
  }
}

@media (min-width: 53.125em) {
  /* line 351, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  li:focus > .c-nav-dropdown--tertiary,
  li:hover > .c-nav-dropdown--tertiary,
  a:focus + .c-nav-dropdown--tertiary,
  a:hover + .c-nav-dropdown--tertiary {
    max-height: 100vh;
    opacity: 1;
    pointer-events: auto;
    z-index: 101;
  }
  /* line 362, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  li:hover > .c-nav-dropdown__link {
    color: #50b0f4;
  }
  /* line 366, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-global-navbar__promo-grid {
    display: none;
  }
}

@media (min-width: 53.125em) and (min-width: 61.25em) {
  /* line 366, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-global-navbar__promo-grid {
    display: block;
    float: right;
    max-width: 340px;
    padding-right: 24px;
    width: 33.333333%;
  }
}

@media (min-width: 53.125em) {
  /* line 377, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-global-navbar__promo-grid .c-promo-grid__link {
    padding: 0 !important;
  }
  /* line 382, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-global-navbar__promo-grid--diy {
    display: none;
  }
}

@media (min-width: 53.125em) and (min-width: 61.25em) {
  /* line 382, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-global-navbar__promo-grid--diy {
    display: block;
    max-width: 350px;
    float: right;
    padding-right: 24px;
    width: 224px;
  }
}

@media (min-width: 53.125em) {
  /* line 393, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-global-navbar__promo-grid--diy .c-promo-grid__link {
    padding: 0 !important;
  }
  /* line 398, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-global-nav__back-item {
    display: none;
  }
}

@media screen and (min-width: 53.125em) and (max-height: 50em) {
  /* line 403, app/assets/stylesheets/2018-nextgen-ui/components/global-nav/_global-nav-desktop.scss */
  .c-nav-dropdown__link {
    font-size: 0.75em;
  }
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/components/_global-search.scss */
.c-global-search {
  color: currentColor;
  cursor: pointer;
  display: block;
  font-weight: 500;
  text-transform: uppercase;
}

@media (min-width: 53.125em) {
  /* line 1, app/assets/stylesheets/2018-nextgen-ui/components/_global-search.scss */
  .c-global-search {
    padding-right: 0;
    height: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row nowrap;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
  }
}

/* line 17, app/assets/stylesheets/2018-nextgen-ui/components/_global-search.scss */
.c-global-search:focus, .c-global-search:hover {
  color: #000000;
}

/* line 23, app/assets/stylesheets/2018-nextgen-ui/components/_global-search.scss */
.c-global-search__label {
  cursor: pointer;
}

/* line 27, app/assets/stylesheets/2018-nextgen-ui/components/_global-search.scss */
.c-global-search__submit,
.c-global-search__cancel {
  background: transparent;
  border: none;
  color: #666666;
  display: block;
  font-size: 1.125em;
  line-height: 1;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
  -webkit-transition-delay: .25s;
          transition-delay: .25s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  z-index: -1;
}

/* line 45, app/assets/stylesheets/2018-nextgen-ui/components/_global-search.scss */
.c-global-search__submit:focus, .c-global-search__submit:hover,
.c-global-search__cancel:focus,
.c-global-search__cancel:hover {
  cursor: pointer;
  outline: none;
}

@media (min-width: 53.125em) {
  /* line 27, app/assets/stylesheets/2018-nextgen-ui/components/_global-search.scss */
  .c-global-search__submit,
  .c-global-search__cancel {
    font-size: 2em;
  }
}

/* line 56, app/assets/stylesheets/2018-nextgen-ui/components/_global-search.scss */
.c-global-search__submit {
  left: 0;
  height: 100%;
  width: 2.25em;
}

/* line 61, app/assets/stylesheets/2018-nextgen-ui/components/_global-search.scss */
.c-global-search__submit::after {
  content: '';
  display: block;
  border-right: 1px solid #f1f1f1;
  position: absolute;
  top: 1px;
  right: 0;
  bottom: 1px;
  -webkit-transition: inherit;
  transition: inherit;
}

/* line 72, app/assets/stylesheets/2018-nextgen-ui/components/_global-search.scss */
.c-global-search__submit:focus, .c-global-search__submit:hover {
  background-color: #50b0f4;
  border-right-color: transparent;
  color: #ffffff;
  outline: none;
}

/* line 79, app/assets/stylesheets/2018-nextgen-ui/components/_global-search.scss */
.c-global-search__submit:focus::after, .c-global-search__submit:hover::after {
  border-right-color: transparent;
}

/* line 85, app/assets/stylesheets/2018-nextgen-ui/components/_global-search.scss */
.c-global-search__cancel {
  color: #666666;
  height: 1em;
  width: 1em;
  right: 12px;
}

/* line 91, app/assets/stylesheets/2018-nextgen-ui/components/_global-search.scss */
.c-global-search__cancel:focus, .c-global-search__cancel:hover {
  color: #50b0f4;
}

/* line 98, app/assets/stylesheets/2018-nextgen-ui/components/_global-search.scss */
.c-global-search .c-global-search__input {
  background-color: #ffffff;
  border: none;
  display: block;
  font-family: "futura-pt", Helvetica, Arial, sans-serif;
  margin-bottom: 0;
  padding: 12px 48px 12px 3em;
  -webkit-transition: all .35s ease, z-index 0s linear;
  transition: all .35s ease, z-index 0s linear;
  -webkit-transition-delay: .25s, .4s;
          transition-delay: .25s, .4s;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  font-size: 1em;
  text-align: left;
  z-index: -1;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

@media (min-width: 53.125em) {
  /* line 98, app/assets/stylesheets/2018-nextgen-ui/components/_global-search.scss */
  .c-global-search .c-global-search__input {
    font-size: 1.5em;
    padding-left: 4em;
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }
}

/* line 129, app/assets/stylesheets/2018-nextgen-ui/components/_global-search.scss */
.c-global-search .c-global-search__input:focus {
  border: 1px solid #50b0f4;
  box-shadow: none;
  outline: none;
  opacity: 1;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition-delay: .15s, 0s;
          transition-delay: .15s, 0s;
  z-index: 600;
}

/* line 138, app/assets/stylesheets/2018-nextgen-ui/components/_global-search.scss */
.c-global-search .c-global-search__input:focus ~ .c-global-search__submit,
.c-global-search .c-global-search__input:focus ~ .c-global-search__cancel {
  opacity: 1;
  -webkit-transition-delay: .35s;
          transition-delay: .35s;
  z-index: 601;
}

/* line 145, app/assets/stylesheets/2018-nextgen-ui/components/_global-search.scss */
.c-global-search .c-global-search__input:focus ~ .c-global-search__decoration {
  cursor: default;
  opacity: 1;
  pointer-events: auto;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  z-index: 599;
}

/* line 156, app/assets/stylesheets/2018-nextgen-ui/components/_global-search.scss */
.c-global-search__decoration {
  background: rgba(241, 241, 241, 0.95);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(241, 241, 241, 0.95)), to(rgba(230, 230, 230, 0.985)));
  background: linear-gradient(rgba(241, 241, 241, 0.95), rgba(230, 230, 230, 0.985));
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
  -webkit-transition-delay: .25s;
          transition-delay: .25s;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/components/_global-main.scss */
.c-global-main {
  background-color: #ffffff;
  min-height: 50vh;
}

/* line 7, app/assets/stylesheets/2018-nextgen-ui/components/_global-main.scss */
.system-alert--container {
  background-size: 40px 40px;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, transparent 75%, transparent);
  width: 100%;
  color: #fff;
  padding: 15px;
  font-size: 10pt;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  -webkit-animation: animate-bg 5s linear infinite;
          animation: animate-bg 5s linear infinite;
  background-color: #000000;
}

@-webkit-keyframes animate-bg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -80px 0;
  }
}

@keyframes animate-bg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -80px 0;
  }
}

/* ==========================================================================
   #GLOBAL FOOTER
============================================================================= */
/* line 8, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
.c-global-footer {
  font-family: "futura-pt", Helvetica, Arial, sans-serif;
}

/* line 11, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
.c-global-footer .o-basic-header,
.c-global-footer .o-input-label {
  color: #000000;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 12px;
}

@media (min-width: 40em) {
  /* line 8, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
  .c-global-footer {
    text-align: left;
  }
}

/* line 25, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
.c-global-footer,
.c-global-footer .o-basic-header {
  color: #000000;
  font-size: 0.875rem;
}

/* line 32, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
.c-global-footer .o-text-link:focus, .c-global-footer .o-text-link:hover {
  color: #50b0f4;
}

/* line 38, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
.c-global-footer .o-sm-icon {
  background-color: transparent;
  color: currentColor;
  display: block;
  height: 30px;
  width: 30px;
}

/* line 45, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
.c-global-footer .o-sm-icon > svg {
  height: 100%;
  width: 100%;
  fill: currentColor;
}

/* line 52, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
.c-global-footer .o-legal {
  font-size: 0.75em;
}

/* line 56, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
.c-global-footer .o-select,
.c-global-footer .o-text-input,
.c-global-footer .o-btn {
  width: 100%;
}

/* line 62, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
.c-global-footer .o-select,
.c-global-footer .o-text-input {
  margin-bottom: 12px;
}

/* line 68, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
.c-global-footer__primary {
  background-color: #E1E723;
  color: #000000;
  padding-top: 12px;
  padding-bottom: 12px;
}

@media (min-width: 28.125em) {
  /* line 68, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
  .c-global-footer__primary {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

@media (min-width: 40em) {
  /* line 68, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
  .c-global-footer__primary {
    line-height: 1.5;
    padding-top: 36px;
  }
}

@media (max-width: 61.24em) {
  /* line 85, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
  .c-global-footer__primary > .o-wrapper {
    max-width: 35rem;
  }
}

/* line 91, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
.c-global-footer__form-lockup {
  margin-bottom: 24px;
}

@media (min-width: 61.25em) {
  /* line 91, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
  .c-global-footer__form-lockup {
    margin-bottom: 0;
  }
}

/* line 103, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
.c-global-footer-nav__sublist {
  padding-bottom: 24px;
}

@media (max-width: 61.24em) {
  /* line 103, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
  .c-global-footer-nav__sublist {
    padding-bottom: 0;
  }
}

/* line 110, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
.c-global-footer-nav__sublist.is-active {
  max-height: 100%;
}

/* line 115, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
.c-global-footer__logo-social {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 12px;
  text-align: center;
}

@media (max-width: 28.115em) {
  /* line 123, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
  .c-global-footer__logo-social .c-global-footer__social-links {
    display: none;
  }
}

/* line 130, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
.c-global-footer__social-links--mobile {
  margin: 0 auto 24px;
  text-align: center;
}

@media (min-width: 28.125em) {
  /* line 130, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
  .c-global-footer__social-links--mobile {
    display: none;
  }
}

/* line 139, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
.c-global-footer__logo {
  margin-right: auto;
}

@media (max-width: 28.115em) {
  /* line 139, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
  .c-global-footer__logo {
    margin-left: auto;
  }
}

/* line 147, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
.c-global-footer__text-link {
  color: currentColor;
  font-weight: 400;
}

/* line 151, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
.c-global-footer__text-link:focus, .c-global-footer__text-link:hover {
  color: #50b0f4;
}

/* ==========================================================================
   #DISCLOSURE @ Mobile
============================================================================= */
@media (max-width: 61.24em) {
  /* line 161, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
  .c-disclosure\@until-desktop {
    cursor: pointer;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row nowrap;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
            align-items: center;
  }
}

/* line 171, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
.c-disclosure__target\@until-desktop {
  overflow: hidden;
}

@media (max-width: 61.24em) {
  /* line 171, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
  .c-disclosure__target\@until-desktop {
    max-height: 0px;
  }
}

/* line 179, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
.c-global-footer__secondary {
  background-color: #000000;
  color: #ffffff;
  font-weight: 500;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
}

@media (min-width: 40em) {
  /* line 179, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
  .c-global-footer__secondary {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

@media (min-width: 61.25em) {
  /* line 179, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
  .c-global-footer__secondary {
    text-align: left;
  }
}

/* line 197, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
.c-global-footer__logo {
  display: block;
  width: 100px;
}

/* line 202, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
.c-homedepot-footer-lockup {
  text-align: center;
}

@media (min-width: 61.25em) {
  /* line 202, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
  .c-homedepot-footer-lockup {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row nowrap;
    -webkit-box-align: center;
            align-items: center;
    float: right;
    text-align: right;
  }
}

@media (min-width: 71.875em) {
  /* line 202, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
  .c-homedepot-footer-lockup {
    margin-top: -60px;
  }
}

/* line 219, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
.c-homedepot-footer-lockup__title {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 12px;
  z-index: 2;
}

/* line 225, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
.c-homedepot-footer-lockup__title .o-supmark {
  font-size: 0.35em;
  top: -1.25em;
}

@media (min-width: 61.25em) {
  /* line 219, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
  .c-homedepot-footer-lockup__title {
    line-height: 1.1;
    margin-right: 24px;
    margin-bottom: 0;
  }
  /* line 235, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
  .c-homedepot-footer-lockup__title .c-global-footer__text-link {
    display: block;
  }
}

/* line 241, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer.scss */
.c-homedepot-footer-lockup__img {
  z-index: 3;
}

/* ==========================================================================
   #GLOBAL FOOTER SIGNUP FORM
============================================================================= */
/* line 5, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer-form.scss */
.c-global-footer-form {
  background-clip: padding-box;
  background-color: rgba(255, 255, 255, 0.24);
  border: 1px solid #000000;
  border-radius: 24px;
  padding: 24px;
}

@media (max-width: 28.115em) {
  /* line 5, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer-form.scss */
  .c-global-footer-form {
    margin-left: -12px;
    margin-right: -12px;
  }
}

/* line 22, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer-form.scss */
.c-global-footer-form .o-button {
  background-color: #000000;
  color: #ffffff;
}

/* line 27, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer-form.scss */
.c-global-footer-form .o-button:focus, .c-global-footer-form .o-button:hover {
  color: #E1E723;
}

/* line 33, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer-form.scss */
.c-global-footer-form .o-input-label {
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
}

/* line 39, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer-form.scss */
.c-global-footer-form .o-select,
.c-global-footer-form .o-text-input {
  border-color: #000000;
  border-style: solid;
  border-radius: 6px;
  border-width: 1px;
  display: inline-block;
  font-family: inherit;
  font-size: 1em;
  line-height: 1;
  height: auto;
  padding: 12px;
}

/* line 53, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer-form.scss */
.c-global-footer-form .o-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* line 57, app/assets/stylesheets/2018-nextgen-ui/components/_global-footer-form.scss */
.c-global-footer-form .o-select option {
  line-height: inherit;
  padding: 0 12px;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
a {
  color: inherit;
  text-decoration: inherit;
}

/* line 5, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.cursor-pointer {
  cursor: pointer;
}

/* line 8, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.hidden {
  display: none;
}

/* line 11, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.bg-oil-black {
  background-color: #0c0c0c;
}

/* line 14, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.z-40 {
  z-index: 40;
}

/* line 17, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.z-140 {
  z-index: 140;
}

/* line 20, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.top-0 {
  top: 0;
}

/* line 23, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.sticky {
  position: -webkit-sticky;
  position: sticky;
}

/* line 26, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.duration-300 {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

/* line 29, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.p-4 {
  padding: 1rem;
}

/* line 32, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.items-center {
  -webkit-box-align: center;
          align-items: center;
}

/* line 35, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.flex {
  display: -webkit-box;
  display: flex;
}

/* line 38, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

/* line 41, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.w-1\/5 {
  width: 20%;
}

/* line 44, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.w-3\/5 {
  width: 60%;
}

/* line 47, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.w-1\/3 {
  width: 33.333333%;
}

/* line 50, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.text-white {
  color: #fff;
}

/* line 54, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.text-almost-white {
  color: #fdfdfd;
}

/* line 57, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.text-left {
  text-align: left;
}

/* line 60, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.text-lithium-green {
  color: #e1e723;
}

/* line 63, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.text-oil-black {
  color: #0c0c0c;
}

/* line 66, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.text-center {
  text-align: center;
}

/* line 69, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.justify-center {
  -webkit-box-pack: center;
          justify-content: center;
}

/* line 72, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.justify-start {
  -webkit-box-pack: start;
          justify-content: flex-start;
}

/* line 75, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.justify-end {
  -webkit-box-pack: end;
          justify-content: flex-end;
}

/* line 78, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.justify-between {
  -webkit-box-pack: justify;
          justify-content: space-between;
}

/* line 81, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.w-8 {
  width: 2rem;
}

/* line 84, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.h-8 {
  height: 2rem;
}

/* line 87, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.relative {
  position: relative;
}

/* line 90, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
button, [role=button] {
  cursor: pointer;
}

/* line 94, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
header button, header input[type=button], header input[type=reset], header input[type=submit], footer button, footer input[type=button], footer input[type=reset], footer input[type=submit] {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

/* line 101, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
button, select {
  text-transform: none;
}

/* line 104, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
button, input, optgroup, select, textarea {
  font-family: inherit;
  -webkit-font-feature-settings: inherit;
          font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
  border: none;
}

/* line 120, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
}

/* line 124, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.body-sm {
  margin-bottom: 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

/* line 131, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.body-lg {
  margin-bottom: 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

/* line 138, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.headline-md {
  margin-bottom: 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

/* line 145, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.font-medium {
  font-weight: 500;
}

/* line 148, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.font-normal {
  font-weight: 400;
}

/* line 151, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.font-roboto {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

/* line 155, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.font-futura {
  font-family: "futura-pt", sans-serif;
}

/* line 158, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.fill-white {
  fill: #fff;
}

/* line 161, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.w-7 {
  width: 1.75rem;
}

/* line 164, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.h-7 {
  height: 1.75rem;
}

/* line 167, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.w-\[140px\] {
  width: 140px;
}

/* line 170, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.h-\[37px\] {
  height: 37px;
}

/* line 173, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.flex-grow {
  -webkit-box-flex: 1;
          flex-grow: 1;
}

/* line 176, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.mr-2 {
  margin-right: 0.5rem;
}

/* line 179, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.pt-4 {
  padding-top: 1rem;
}

/* line 182, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.h-20 {
  height: 5rem;
}

/* line 185, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* line 189, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.w-full {
  width: 100%;
}

/* line 192, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.overflow-hidden {
  overflow: hidden;
}

/* line 195, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.aa-Autocomplete, .aa-DetachedFormContainer, .aa-Panel {
  background-color: #fff;
  color: #262627;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
  height: 44px;
  margin: 0;
  padding: 0;
  text-align: left;
}

/* line 207, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.predictive-search-form.aa-Form,
.predictive-search .aa-DetachedSearchButton {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  margin-bottom: 0;
  border-radius: 0;
  border-width: 0px;
}

/* line 217, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.aa-Autocomplete *, .aa-DetachedFormContainer *, .aa-Panel * {
  box-sizing: border-box;
}

/* line 220, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.aa-DetachedSearchButton {
  -webkit-box-align: center;
          align-items: center;
  background-color: #fff;
  border: 1px solid rgba(128, 126, 163, 0.8);
  border-radius: 3px;
  color: #807ea399;
  cursor: pointer;
  display: -webkit-box;
  display: flex;
  font: inherit;
  font-family: inherit;
  font-size: 16px;
  height: 44px;
  margin: 0;
  padding: 0 5.5px;
  position: relative;
  text-align: left;
  width: 100%;
}

/* line 238, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
button.aa-DetachedSearchButton:hover, button.aa-DetachedSearchButton:focus {
  background-color: #fff;
}

/* line 241, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.aa-DetachedSearchButtonIcon {
  -webkit-box-align: center;
          align-items: center;
  color: #3e34d3;
  cursor: auto;
  display: -webkit-box;
  display: flex;
  flex-shrink: 0;
  height: 100%;
  -webkit-box-pack: center;
          justify-content: center;
  width: 36px;
}

/* line 251, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.aa-SubmitButton:before,
.aa-DetachedSearchButtonIcon:before {
  padding-top: 3px;
  content: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' height='18' width='17' viewBox='0 0 18 17'%3E%3Ctitle%3ESearch%3C/title%3E%3Cpath fillRule='evenodd' clipRule='evenodd' d='M11.4711 10.5542L11.1968 10.3072C12.1568 9.26435 12.7348 7.91043 12.7348 6.43759C12.7348 3.15343 9.88416 0.491333 6.3674 0.491333C2.85064 0.491333 0 3.15343 0 6.43759C0 9.72175 2.85064 12.3838 6.3674 12.3838C7.94456 12.3838 9.39436 11.8441 10.5111 10.9476L10.7756 11.2037V11.9264L14.993 15.857C15.3763 16.2142 15.9706 16.214 16.3535 15.8564C16.7754 15.4624 16.7757 14.7937 16.3543 14.3994L12.245 10.5542H11.4711Z' fill='%230C0C0C' /%3E%3Cpath fillRule='evenodd' clipRule='evenodd' d='M1.95898 6.4375C1.95898 4.15963 3.92798 2.32086 6.36719 2.32086C8.80639 2.32086 10.7754 4.15963 10.7754 6.4375C10.7754 8.71537 8.80639 10.5541 6.36719 10.5541C3.92798 10.5541 1.95898 8.71537 1.95898 6.4375Z' fill='%23FDFDFD' /%3E%3C/svg%3E");
}

/* line 256, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.aa-SubmitIcon {
  display: none;
}

/* line 259, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.predictive-search .aa-Autocomplete .aa-DetachedSearchButtonPlaceholder {
  color: #747474;
}

/* line 262, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.rotate-45 {
  rotate: 45deg;
}

/* line 265, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.-translate-y-2\.5 {
  -webkit-transform: translate(0, -0.875rem);
          transform: translate(0, -0.875rem);
}

/* line 268, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.-translate-x-2\.5 {
  -webkit-transform: translate(-0.875rem, 0);
          transform: translate(-0.875rem, 0);
}

/* line 271, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.w-5 {
  width: 1.25rem;
}

/* line 274, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.h-5 {
  height: 1.25rem;
}

/* line 277, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.left-0 {
  left: 0;
}

/* line 280, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.absolute {
  position: absolute;
}

/* line 283, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.w-52 {
  width: 13rem;
}

/* line 286, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.h-14 {
  height: 3.5rem;
}

/* line 289, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.gap-6 {
  gap: 1.5rem;
}

/* line 292, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.gap-4 {
  gap: 1rem;
}

/* line 295, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.grid {
  display: grid;
}

/* line 298, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.fill-almost-white {
  fill: #fdfdfd;
}

/* line 301, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.hover\:fill-lithium-green:hover {
  fill: #e1e723;
}

/* line 304, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.mb-0 {
  margin-bottom: 0;
}

/* line 307, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.hover\:text-lithium-green:hover {
  color: #e1e723;
}

/* line 310, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.focus\:ring-lithium-green:focus {
  box-shadow: 0 0 0 0px #e1e723;
}

/* line 313, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.z-10 {
  z-index: 10;
}

/* line 316, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.list-none {
  list-style-type: none;
}

/* line 319, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.py-\[18px\] {
  padding-top: 18px;
  padding-bottom: 18px;
}

/* line 323, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.self-center {
  align-self: center;
}

/* line 326, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.inline-flex {
  display: -webkit-inline-box;
  display: inline-flex;
}

/* line 329, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.desktop-nav__item:first-of-type button {
  -webkit-box-pack: start;
          justify-content: flex-start;
}

/* line 332, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.desktop-nav__item button, .desktop-nav__item button:hover {
  background-color: transparent;
}

/* line 335, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.desktop-nav__link {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;
  background-color: transparent;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  color: #fdfdfd;
  border-bottom: 1px;
  font-weight: 500;
}

/* line 349, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.transition-colors {
  -webkit-transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
}

/* line 355, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.bg-white {
  background-color: #fff;
}

/* line 358, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.z-50 {
  z-index: 50;
}

/* line 361, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.bg-opacity-50 {
  opacity: 0.5;
}

/* line 364, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.bg-oil-black {
  background-color: #0c0c0c;
}

/* line 367, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* line 373, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.fixed {
  position: fixed;
}

/* line 376, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.max-w-full {
  max-width: 100%;
}

/* line 379, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.inset-y-0 {
  top: 0;
  bottom: 0;
}

/* line 383, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.border {
  border-width: 1px;
}

/* line 386, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.rounded {
  border-radius: 0.25rem;
}

/* line 389, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.overflow-clip {
  overflow: clip;
}

/* line 392, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.w-\[108\%\] {
  width: 108%;
}

/* line 395, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.top-10 {
  top: 2.5rem;
}

/* line 398, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.transition-all {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
}

/* line 403, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.shadow-xl {
  box-shadow: 0 0 #0000, 0 0 #0000, 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;
}

/* line 406, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.align-middle {
  vertical-align: middle;
}

/* line 410, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.bg-oil-black {
  background-color: #0c0c0c;
}

/* line 413, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.-rotate-90 {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/* line 416, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.max-w-lg {
  max-width: 32rem;
}

/* line 419, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.w-screen {
  width: 100vw;
}

/* line 422, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

/* line 426, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* line 430, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.pb-4 {
  padding-bottom: 1rem;
}

/* line 433, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* line 437, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.gap-4 {
  gap: 1rem;
}

/* line 440, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.ml-1 {
  margin-left: 0.25rem;
}

/* line 443, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.ml-2 {
  margin-left: 0.5rem;
}

/* line 446, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.w-24 {
  width: 24px;
}

/* line 449, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.h-24 {
  height: 24px;
}

/* line 452, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.uppercase {
  text-transform: uppercase;
}

/* line 455, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.p-spacer--16 {
  padding: 16px;
}

/* line 458, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.fill-almost-white {
  fill: #fdfdfd;
}

/* line 461, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.hover\:fill-lithium-green:hover {
  fill: #e1e723;
}

/* line 464, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.hover\:text-lithium-green:hover {
  color: #e1e723;
}

/* line 467, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.focus\:ring-lithium-green:focus {
  box-shadow: 0 0 0 0px #e1e723;
}

/* line 470, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.hover\:border-almost-white:hover {
  border-color: #fdfdfd;
}

/* line 473, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.hover\:border-b:hover,
.hover\:border-b-\[1px\]:hover {
  border-bottom-width: 1px;
}

/* line 477, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.p-spacer--8 {
  padding: 8px;
}

/* line 480, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.inline-block {
  display: inline-block;
}

/* line 483, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.overflow-y-auto {
  overflow-y: auto;
}

/* line 486, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.h-full {
  height: 100%;
}

/* line 489, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.flex-1 {
  -webkit-box-flex: 1;
          flex: 1 1 0%;
}

/* line 492, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.gap-spacer--8 {
  gap: 8px;
}

/* line 495, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* line 499, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* line 503, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.bg-lithium-green {
  background-color: #e1e723;
}

/* line 507, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
ol, ul, menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 512, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
ul.desktop-nav__list {
  margin-bottom: 0;
}

/* line 515, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.footer-nav ul, footer ul {
  margin-bottom: 0;
  margin-left: 0;
}

/* line 520, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.bg-oil-black {
  background-color: #0c0c0c;
}

/* line 524, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.leading-3 {
  line-height: 0.75rem;
}

/* line 527, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.leading-5 {
  line-height: 1.25rem;
}

/* line 530, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.mb-6 {
  margin-bottom: 1.5rem;
}

/* line 533, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.mb-8 {
  margin-bottom: 2rem;
}

/* line 536, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.mt-4 {
  margin-top: 1rem;
}

/* line 539, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.p-4 {
  padding: 1rem;
}

/* line 542, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.pl-1 {
  padding-left: 0.25rem;
}

/* line 545, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.pb-8 {
  padding-bottom: 2rem;
}

/* line 548, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.gap-y-8 {
  row-gap: 2rem;
}

/* line 551, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.gap-x-2 {
  -moz-column-gap: 0.5rem;
  -webkit-column-gap: 0.5rem;
          column-gap: 0.5rem;
}

/* line 555, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.gap-x-4 {
  -moz-column-gap: 1rem;
  -webkit-column-gap: 1rem;
          column-gap: 1rem;
}

/* line 559, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* line 562, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

/* line 565, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.col-span-12 {
  grid-column: span 12 / span 12;
}

/* line 568, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.w-\[54px\] {
  width: 54px;
}

/* line 571, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.h-\[54px\] {
  height: 54px;
}

/* line 574, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.w-\[150px\] {
  width: 150px;
}

/* line 577, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.h-\[43px\] {
  height: 43px;
}

/* line 580, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.h-\[37px\] {
  height: 37px;
}

/* line 583, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.h-\[560px\] {
  height: 560px;
}

/* line 586, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.w-spacer--24 {
  width: 24px;
}

/* line 589, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.h-spacer--24 {
  height: 24px;
}

/* line 592, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.mr-2 {
  margin-right: 0.5rem;
}

/* line 595, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.mr-3 {
  margin-right: 0.75rem;
}

/* line 598, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.pt-4 {
  padding-top: 1rem;
}

/* line 601, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.pt-8 {
  padding-top: 2rem;
}

/* line 604, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.h-10 {
  height: 2.5rem;
}

/* line 607, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* line 611, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.p-s6 {
  padding: 24px;
}

/* line 614, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.gap-6 {
  gap: 1.5rem;
}

/* line 617, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.gap-4 {
  gap: 1rem;
}

/* line 620, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.border-t {
  border-top: 1px solid #eef08b;
}

/* line 623, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.fill-almost-white {
  fill: #fdfdfd;
}

/* line 626, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.hover\:underline:hover {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

/* line 629, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.hover\:fill-lithium-green:hover {
  fill: #e1e723;
}

/* line 632, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.hover\:text-lithium-green:hover {
  color: #e1e723;
}

/* line 635, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.focus\:ring-lithium-green:focus {
  box-shadow: 0 0 0 0px #e1e723;
}

/* line 638, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.z-10 {
  z-index: 10;
}

/* line 641, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.list-none {
  list-style-type: none;
}

/* line 644, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.py-\[18px\] {
  padding-top: 18px;
  padding-bottom: 18px;
}

/* line 648, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.self-center {
  align-self: center;
}

/* line 651, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.inline-flex {
  display: -webkit-inline-box;
  display: inline-flex;
}

/* line 654, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.inline-block {
  display: inline-block;
}

/* line 657, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.footer-nav ul li:last-of-type {
  margin-bottom: 0;
}

/* line 660, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.footer-menu .footer-nav:last-child {
  grid-column: 1 / span 2;
}

/* line 663, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.footer-menu .footer-nav:nth-of-type(5) {
  grid-column: 1 / span 2;
}

/* line 666, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.c-global-footer-attv-embed {
  border: none;
  outline: none;
}

/* line 670, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.c-global-footer-attv-embed .c-btn {
  background: black;
  color: #e1e71b;
  font-family: "futura-pt", sans-serif;
}

/* line 675, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
.c-global-footer-attv-embed .c-btn:hover {
  border: 1px solid black;
}

@media (max-width: 80em) {
  /* line 681, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .c-global-navbar__list--site {
    color: #fff;
    display: block;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-flow: column nowrap;
    opacity: 1;
    pointer-events: none;
    position: absolute;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    overflow-x: auto;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
    z-index: -1;
  }
  /* line 701, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .has-global-mobile-menu-open,
  .has-global-mobile-menu-open body {
    height: 100%;
    overflow: hidden;
  }
  /* line 707, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .has-global-mobile-menu-open .c-global-navbar__list--site {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
    position: fixed;
    z-index: 700;
  }
}

@media (min-width: 32em) {
  /* line 719, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .sm\:py-spacer--8 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

@media (min-width: 48em) {
  /* line 725, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  /* line 729, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .md\:p-8 {
    padding: 2rem;
  }
  /* line 732, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .md\:gap-8 {
    gap: 2rem;
  }
  /* line 735, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .md\:w-full {
    width: 100%;
  }
  /* line 738, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .md\:col-span-6 {
    grid-column: span 6 / span 6;
  }
  /* line 741, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .md\:col-start-7 {
    grid-column-start: 7;
  }
  /* line 744, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .md\:col-span-6 {
    grid-column: span 6 / span 6;
  }
  /* line 747, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .md\:col-span-12 {
    grid-column: span 12 / span 12;
  }
  /* line 750, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .md\:col-start-1 {
    grid-column-start: 1;
  }
  /* line 753, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .md\:row-start-1 {
    grid-row-start: 1;
  }
  /* line 756, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .md\:self-center {
    align-self: center;
  }
  /* line 759, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .md\:mt-4 {
    margin-top: 1rem;
  }
  /* line 762, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .md\:justify-start {
    -webkit-box-pack: start;
            justify-content: flex-start;
  }
  /* line 765, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .md\:flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
            flex-direction: row-reverse;
  }
  /* line 768, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .md\:text-right {
    text-align: right;
  }
  /* line 771, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .shp-md\:h-\[560px\] {
    height: 560px;
  }
}

@media (min-width: 64em) {
  /* line 776, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .lg\:w-5 {
    width: 1.25rem;
  }
  /* line 779, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .lg\:h-5 {
    height: 1.25rem;
  }
  /* line 782, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .lg\:w-\[300px\] {
    width: 300px;
  }
  /* line 785, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .lg\:right-0 {
    right: 0;
  }
  /* line 788, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .body-lg {
    font-size: 16px;
    line-height: 20px;
  }
  /* line 792, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .lg\:col-span-5 {
    grid-column: span 5 / span 5;
  }
  /* line 795, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .lg\:col-span-7 {
    grid-column: span 7 / span 7;
  }
  /* line 798, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .lg\:mb-5 {
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 80em) {
  /* line 803, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:flex {
    display: -webkit-box;
    display: flex;
  }
  /* line 806, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:block {
    display: block;
  }
  /* line 809, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:w-1\/3 {
    width: 33.33%;
  }
  /* line 812, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:hidden {
    display: none;
  }
  /* line 815, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:items-center {
    -webkit-box-align: center;
            align-items: center;
  }
  /* line 818, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:mr-3 {
    margin-right: 0.75rem;
  }
  /* line 821, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:ml-0 {
    margin-left: 0;
  }
  /* line 824, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  /* line 828, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:w-\[390px\] {
    width: 390px;
  }
  /* line 831, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:leading-5 {
    line-height: 1.25rem;
  }
  /* line 834, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:mr-0 {
    margin-right: 0;
  }
  /* line 837, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:grid-rows-footer-xl {
    grid-template-rows: 99px 60px 55px auto auto auto;
  }
  /* line 840, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  /* line 843, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:col-span-4 {
    grid-column: span 4 / span 4;
  }
  /* line 846, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:col-span-6 {
    grid-column: span 6 / span 6;
  }
  /* line 849, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:col-span-8 {
    grid-column: span 8 / span 8;
  }
  /* line 852, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:col-start-9 {
    grid-column-start: 9;
  }
  /* line 855, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:col-start-3 {
    grid-column-start: 3;
  }
  /* line 858, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:row-start-1 {
    grid-row-start: 1;
  }
  /* line 861, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:row-end-7 {
    grid-row-end: 7;
  }
  /* line 864, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:row-end-6 {
    grid-row-end: 6;
  }
  /* line 867, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:row-start-2 {
    grid-row-start: 2;
  }
  /* line 870, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:row-start-6 {
    grid-row-start: 6;
  }
  /* line 873, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:auto-rows-fr {
    grid-auto-rows: minmax(0, 1fr);
  }
  /* line 876, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  /* line 879, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
  /* line 882, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:justify-between {
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  /* line 885, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
  /* line 888, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .xl\:text-left {
    text-align: left;
  }
  /* line 891, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .shp-xl\:h-\[514px\] {
    height: 514px;
  }
  /* line 894, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .footer-menu .footer-nav:nth-of-type(5) {
    grid-column: 3 / span 2;
    grid-row: 3 / 4;
  }
  /* line 898, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .footer-menu .footer-nav:last-child {
    grid-column: 1 / span 2;
    grid-row: 4 / 5;
  }
  /* line 902, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .footer-nav:first-of-type {
    grid-row: 1 / 4;
  }
  /* line 905, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .footer-nav:nth-of-type(2),
  .footer-nav:nth-of-type(3),
  .footer-nav:nth-of-type(4) {
    grid-row: 1 / 3;
  }
}

@media (min-width: 90em) {
  /* line 912, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .\32xl\:pt-6 {
    padding-top: 1.5rem;
  }
  /* line 915, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .\32xl\:container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    max-width: 90em;
  }
  /* line 921, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .\32xl\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  /* line 925, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .\32xl\:items-center {
    -webkit-box-align: center;
            align-items: center;
  }
  /* line 928, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .\32xl\:w-1\/4 {
    width: 25%;
  }
  /* line 931, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .\32xl\:w-1\/2 {
    width: 50%;
  }
  /* line 934, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .\32xl\:flex {
    display: -webkit-box;
    display: flex;
  }
  /* line 937, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .\32xl\:leading-4 {
    line-height: 1rem;
  }
  /* line 940, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .\32xl\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  /* line 943, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .\32xl\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  /* line 946, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .\32xl\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  /* line 949, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .\32xl\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  /* line 952, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .\32xl\:col-span-4 {
    grid-column: span 4 / span 4;
  }
  /* line 955, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .\32xl\:col-start-1 {
    grid-column-start: 1;
  }
  /* line 958, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .\32xl\:col-start-2 {
    grid-column-start: 2;
  }
  /* line 961, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .\32xl\:col-start-5 {
    grid-column-start: 5;
  }
  /* line 964, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .\32xl\:gap-x-7 {
    -moz-column-gap: 1.75rem;
    -webkit-column-gap: 1.75rem;
            column-gap: 1.75rem;
  }
  /* line 968, app/assets/stylesheets/2018-nextgen-ui/components/_global-shopify.scss */
  .\32xl\:gap-y-6 {
    row-gap: 1.5rem;
  }
}

/* line 3, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.c-card {
  position: relative;
  padding: .75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  margin-bottom: 1.5rem;
}

@media (min-width: 28.125em) {
  /* line 3, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
  .c-card {
    padding: 1.5rem;
  }
}

/* line 15, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.c-card__header {
  font-size: 0;
  margin-bottom: .5rem;
}

/* line 20, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.c-card__header__title,
.c-card__header__age {
  display: inline-block;
  vertical-align: bottom;
}

/* line 25, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.c-card--simple .c-card__header__title, .c-card--simple
.c-card__header__age {
  vertical-align: text-top;
  margin-top: .5rem;
  font-size: 1rem;
}

/* line 32, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.c-card__header__title {
  width: 100%;
  font-size: 1.2rem;
  line-height: 1.25;
  color: #444444;
}

@media (min-width: 28.125em) {
  /* line 32, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
  .c-card__header__title {
    font-size: 1.5rem;
  }
}

/* line 42, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.c-card--project .c-card__header__title {
  width: calc(100% - 50px);
}

/* line 46, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.c-card--simple .c-card__header__title {
  width: 100%;
}

/* line 50, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.c-card--user .c-card__header__title {
  font-size: 1rem;
}

@media (min-width: 28.125em) {
  /* line 50, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
  .c-card--user .c-card__header__title {
    font-size: 1.25rem;
  }
}

/* line 58, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.c-card__header__title .o-heading {
  font-size: inherit;
}

/* line 63, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.c-card__header__age {
  width: 50px;
  text-align: right;
  line-height: 1.5rem;
}

/* line 69, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.c-card__media {
  width: 100%;
  padding-top: 100%;
  background-color: #444444;
  background-position: center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  z-index: 2;
  display: block;
}

/* line 80, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.c-card__media.is-video {
  cursor: pointer;
}

/* line 83, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.p-nation--home .c-card__media.is-video {
  padding-top: 56.25%;
}

/* line 88, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.c-card__media.is-video:hover .c-card__media__play-icon .o-icon {
  background-color: #000000;
}

/* line 94, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.c-card__media iframe {
  max-width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

/* line 100, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.c-card__info {
  font-size: 0;
  padding-top: 1.5rem;
  padding-bottom: .75rem;
  margin-bottom: .75rem;
  border-bottom: 1px solid #e6e6e6;
  text-align: right;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

/* line 110, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.self-project .c-card__info, .c-card--user .c-card__info, .commenting-disabled .c-card__info {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* line 116, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.c-card__info * {
  font-size: 1rem;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}

/* line 123, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.c-card__info .c-card__info__user {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  width: 70%;
}

/* line 129, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.c-card__info .c-card__info-actions {
  text-align: right;
  font-size: 0;
  width: 30%;
  display: -webkit-box;
  display: flex;
  min-width: 120px;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

/* line 138, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.c-card__info .c-card__info__like-count {
  font-weight: bold;
  padding: .75rem;
}

/* line 143, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.c-card__info .c-card__info__avatar {
  width: 40px;
  height: 40px;
}

/* line 148, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.c-card__info .c-card__info__username {
  padding-left: 10px;
  padding-right: 10px;
  text-align: left;
}

/* line 154, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.c-card__info .c-card__info__follow {
  width: 40px;
}

/* line 158, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.c-card__info .c-card__info__like {
  width: 40px;
}

/* line 162, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card.scss */
.c-card--simple .c-card__info {
  padding-top: .5rem;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--simple {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  -webkit-transition: box-shadow 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: box-shadow 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: .5rem;
}

/* line 5, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--simple:hover {
  box-shadow: 0 2px 10px 3px rgba(80, 176, 244, 0.35);
}

/* line 11, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--project .o-icon {
  width: 40px;
  height: 40px;
}

/* line 20, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--project .o-icon--large {
  width: 90px;
  height: 90px;
}

/* line 25, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--project .o-icon--small {
  width: 30px;
  height: 30px;
}

/* line 31, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--project__comment-group {
  position: relative;
}

/* line 35, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--project__comment {
  width: 100%;
  outline: none;
  border: 0;
  resize: none;
  padding-left: 0.5rem;
}

/* line 43, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--project__comment-count {
  color: #50b0f4;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 3rem;
  height: 3rem;
  position: absolute;
  left: 0;
  top: -10px;
  cursor: pointer;
}

/* line 55, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--project__comment-count + .c-card--project__comment {
  padding-left: 2.75rem;
}

/* line 59, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--project__comment-count .o-icon {
  position: absolute;
  padding: 2px;
}

/* line 63, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--project__comment-count .o-icon:hover {
  background-color: transparent;
}

/* line 68, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--project__comment-count .o-icon--comment {
  display: none;
  width: 35px;
  height: 35px;
}

/* line 75, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--project__comment-count.is-active .o-icon--comment--outline {
  display: none;
}

/* line 79, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--project__comment-count.is-active .o-icon--comment {
  display: block;
}

/* line 85, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--project__comment-icon {
  position: absolute;
  left: 0;
  top: 0;
}

/* line 91, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--project__comment-count-text {
  font-size: 1rem;
  position: relative;
  top: -1px;
  pointer-events: none;
}

/* line 98, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--project__comments-list {
  border-top: 1px dashed #aaaaaa;
  overflow-y: scroll;
  max-height: 17rem;
  margin-top: 1rem;
  padding-top: 0.5rem;
}

/* line 106, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--project__comments {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  /* easeOutQuart */
  -webkit-transition: max-height 350ms cubic-bezier(0.165, 0.84, 0.44, 1),  opacity 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: max-height 350ms cubic-bezier(0.165, 0.84, 0.44, 1),  opacity 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  padding-left: 2.5rem;
  will-change: max-height, opacity;
}

/* line 114, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.is-comments-open .c-card--project__comments {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  /* easeOutQuart */
  -webkit-transition: max-height 500ms cubic-bezier(0.165, 0.84, 0.44, 1),  opacity 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: max-height 500ms cubic-bezier(0.165, 0.84, 0.44, 1),  opacity 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 1;
  max-height: 25rem;
}

/* line 120, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--project__comments .o-list-bare--indented-large {
  margin-left: 1rem;
}

@media (min-width: 61.25em) {
  /* line 120, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
  .c-card--project__comments .o-list-bare--indented-large {
    margin-left: 2rem;
  }
}

/* line 128, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--project__comments hr {
  display: none;
}

/* line 132, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--project__comments .o-heading--h4 {
  font-size: 1rem;
}

/* line 137, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--project__comment-submit {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  /* easeOutQuart */
  -webkit-transition: max-height 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  margin-top 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: max-height 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  margin-top 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
  max-height: 0;
  overflow: hidden;
  text-align: right;
}

/* line 144, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--project__comment-submit.is-visible {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  margin-top: 10px;
  max-height: 45px;
}

/* line 151, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--project__comment-submit__buttons {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  /* easeOutQuart */
  -webkit-transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0;
          transition-delay: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  position: relative;
}

/* line 158, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--project__comment-submit.is-visible .c-card--project__comment-submit__buttons {
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* line 165, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--project__more-actions {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  -webkit-transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  bottom: .75rem;
  right: .75rem;
  opacity: 1;
  visibility: visible;
}

@media (min-width: 28.125em) {
  /* line 165, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
  .c-card--project__more-actions {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

/* line 178, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card--project__more-actions.is-hidden {
  opacity: 0;
  visibility: hidden;
}

/* line 184, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card__media__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) ;
          transform: translate(-50%, -50%) ;
}

/* line 187, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card__media__play-icon .o-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.75);
  border: 3px solid #E1E723;
  border-radius: 100%;
  pointer-events: none;
}

/* line 195, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card__media__play-icon .o-icon svg {
  fill: #E1E723;
}

/* line 201, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card__how-to-logo {
  width: 90px;
  position: absolute;
  top: 10px;
  left: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

/* line 212, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_project.scss */
.c-card__media__audio-toggle {
  display: none;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_list.scss */
.c-card--list__item {
  margin-bottom: .5rem;
}

/* line 5, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_list.scss */
.c-card--list__item__action {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  -webkit-transition: background-color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background-color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
}

/* line 9, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_list.scss */
.c-card--list__item__action:hover {
  background-color: #f1f1f1;
}

/* line 13, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_card_list.scss */
.c-card--list__item__action .o-link {
  position: relative;
  top: .05rem;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel.scss */
.c-carousel {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  -webkit-transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  display: inline-block;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  font-size: 0;
}

/* line 10, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel.scss */
.c-carousel.is-visible {
  opacity: 1;
  visibility: visible;
}

/* line 15, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel.scss */
.c-carousel .o-layout__item:last-child .c-carousel__nav__bar {
  border-right: none;
}

/* line 20, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel.scss */
.c-carousel__slide {
  width: 100%;
  height: 100%;
  position: relative;
}

/* line 26, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel.scss */
.c-carousel__nav-arrow {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  -webkit-transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 1;
  cursor: pointer;
}

/* line 31, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel.scss */
.c-carousel__nav-arrow.is-disabled {
  opacity: .35;
  cursor: default;
}

/* line 37, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel.scss */
.c-carousel__slide--video-wrapper {
  width: 100%;
}

/* line 43, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel.scss */
.slick-slide, .slick-slide * {
  outline: none !important;
}

/* line 50, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel.scss */
.slick-initialized .slick-track {
  display: -webkit-box;
  display: flex;
}

/* line 53, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel.scss */
.slick-initialized .slick-track .slick-slide {
  display: -webkit-box;
  display: flex;
  height: auto;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}

/* line 15, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-dots.scss */
.c-carousel--dots {
  position: relative;
}

/* line 19, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-dots.scss */
.slick-slider {
  position: relative;
}

/* line 23, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-dots.scss */
.slick-dots {
  position: absolute;
  bottom: -45px;
  list-style: none;
  display: block;
  text-align: center;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* line 33, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-dots.scss */
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

/* line 42, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-dots.scss */
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

/* line 55, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-dots.scss */
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

/* line 59, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-dots.scss */
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

/* line 64, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-dots.scss */
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 82, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-dots.scss */
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-listing.scss */
.slick-slider .slick-list {
  overflow: hidden;
}

/* line 5, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-listing.scss */
.c-carousel--listing {
  position: relative;
  vertical-align: top;
}

/* line 11, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-listing.scss */
.c-carousel__pill-arrow.slick-arrow {
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-radius: 100%;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
  height: 48px;
  width: 48px;
  border: none;
  font-size: 48px;
  line-height: 45px;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  padding: 0;
  position: absolute;
  z-index: 99;
}

/* line 29, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-listing.scss */
.c-carousel__pill-arrow.slick-arrow:focus, .c-carousel__pill-arrow.slick-arrow:hover {
  cursor: pointer;
  background-color: #000000;
  color: #E1E723;
}

/* line 36, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-listing.scss */
.c-carousel__pill-arrow.slick-arrow:focus {
  box-shadow: 0 0 12px rgba(225, 231, 35, 0.24);
}

/* line 40, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-listing.scss */
.c-carousel__pill-arrow.slick-arrow:hover {
  box-shadow: 0 0 18px rgba(225, 231, 35, 0.36);
  -webkit-transform: translateY(-50%) scale(1.2);
          transform: translateY(-50%) scale(1.2);
}

/* line 45, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-listing.scss */
.c-carousel__pill-arrow.slick-arrow:active {
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
}

/* line 50, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-listing.scss */
.c-carousel__pill-arrow.slick-arrow .o-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* line 57, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-listing.scss */
.c-carousel__pill-arrow.slick-prev {
  border-top-left-radius: 0%;
  border-bottom-left-radius: 0%;
  left: -24px;
}

@media (max-width: 87.5em) {
  /* line 63, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-listing.scss */
  .o-wrapper--from-flush .c-carousel__pill-arrow.slick-prev {
    left: 0;
  }
}

@media (min-width: 87.5em) {
  /* line 57, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-listing.scss */
  .c-carousel__pill-arrow.slick-prev {
    border-top-left-radius: 100%;
    border-bottom-left-radius: 100%;
  }
}

@media (min-width: 90em) {
  /* line 57, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-listing.scss */
  .c-carousel__pill-arrow.slick-prev {
    left: -60px;
  }
}

/* line 77, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-listing.scss */
.c-carousel__pill-arrow.slick-prev .o-icon {
  left: -1px;
}

/* line 82, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-listing.scss */
.c-carousel__pill-arrow.slick-next {
  border-top-right-radius: 0%;
  border-bottom-right-radius: 0%;
  right: -24px;
}

@media (max-width: 87.5em) {
  /* line 88, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-listing.scss */
  .o-wrapper--from-flush .c-carousel__pill-arrow.slick-next {
    right: 0;
  }
}

@media (min-width: 87.5em) {
  /* line 82, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-listing.scss */
  .c-carousel__pill-arrow.slick-next {
    border-top-right-radius: 100%;
    border-bottom-right-radius: 100%;
  }
}

@media (min-width: 90em) {
  /* line 82, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-listing.scss */
  .c-carousel__pill-arrow.slick-next {
    right: -60px;
  }
}

/* line 102, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-listing.scss */
.c-carousel__pill-arrow.slick-next .o-icon {
  right: -1px;
}

/* line 108, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-listing.scss */
.c-carousel--dark {
  background-color: #444444;
  color: #ffffff;
}

/* line 112, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-listing.scss */
.c-carousel--dark .slick-arrow {
  background-color: rgba(0, 0, 0, 0.95);
  color: #E1E723;
}

/* line 116, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-listing.scss */
.c-carousel--dark .slick-arrow:focus, .c-carousel--dark .slick-arrow:hover {
  cursor: pointer;
  background-color: #E1E723;
  color: #000000;
}

/* line 130, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-listing.scss */
.c-carousel--to-huge .c-carousel__slide {
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 40em) {
  /* line 136, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-listing.scss */
  .c-carousel--to-huge .c-carousel__slide {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (min-width: 71.875em) {
  /* line 150, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-listing.scss */
  .c-carousel--to-huge .c-carousel__slide {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* line 157, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-listing.scss */
.slick-initialized .slick-track .slick-slide {
  -webkit-box-align: baseline;
          align-items: baseline;
}

/* line 5, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_media_banner.scss */
.c-carousel--media-banner .c-carousel__nav {
  width: 100%;
  height: 15px;
  margin-left: auto;
  margin-right: auto;
  max-width: 45.5rem;
}

/* line 13, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_media_banner.scss */
.c-carousel--media-banner .c-carousel__nav__bar {
  height: 15px;
  cursor: pointer;
  border-right: 2px solid transparent;
}

/* line 18, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_media_banner.scss */
.c-carousel--media-banner .c-carousel__nav__bar:after {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  /* easeOutQuart */
  -webkit-transition: background-color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  height 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background-color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  height 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  content: '';
  display: block;
  background-color: #e6e6e6;
  height: 10px;
}

/* line 26, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_media_banner.scss */
.c-carousel--media-banner .c-carousel__nav__bar.is-active:after {
  background-color: #E1E723;
  height: 15px;
}

/* line 31, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_media_banner.scss */
.c-carousel--media-banner .c-carousel__nav__bar:not(.is-active):hover:after {
  background-color: #f1f496;
}

/* ==========================================================================
   #MEDIA BANNER CAROUSEL Overrides
============================================================================= */
/* line 6, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-media-banner.scss */
.c-carousel--media-banner .o-button--ghost {
  background-color: rgba(34, 34, 34, 0.95);
}

/* line 9, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-media-banner.scss */
.c-carousel--media-banner .o-button--ghost:focus, .c-carousel--media-banner .o-button--ghost:hover {
  background-color: #E1E723;
}

/* line 18, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-media-banner.scss */
.c-carousel__nav--dots,
.c-carousel--media-banner .c-carousel__nav--dots {
  bottom: 12px;
  max-width: none;
  position: absolute;
  z-index: 200;
}

/* line 27, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-media-banner.scss */
.c-carousel__nav--dots .c-carousel__nav__bar {
  padding-left: 6px;
  padding-right: 6px;
}

/* line 31, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-media-banner.scss */
.c-carousel__nav--dots .c-carousel__nav__bar::after, .c-carousel__nav--dots .c-carousel__nav__bar.is-active::after {
  background-clip: padding-box;
  border-radius: 50%;
  display: block;
  height: 12px;
  width: 12px;
}

/* line 40, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-media-banner.scss */
.c-carousel__nav--dots .c-carousel__nav__bar::after {
  opacity: 0.75;
}

/* line 44, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-media-banner.scss */
.c-carousel__nav--dots .c-carousel__nav__bar.is-active::after {
  opacity: 1;
}

/* line 49, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-media-banner.scss */
.c-carousel__nav--dots .c-carousel__nav-list {
  margin-bottom: 0;
  text-align: center;
}

/* line 55, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-media-banner.scss */
.c-media-banner {
  height: 100%;
}

/* line 59, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-media-banner.scss */
.c-media-banner__content__overlay-image {
  -webkit-filter: drop-shadow(0px 2px 12px rgba(0, 0, 0, 0.75));
          filter: drop-shadow(0px 2px 12px rgba(0, 0, 0, 0.75));
  display: block;
  max-width: 444px;
  margin-bottom: 12px;
  width: 60%;
}

@media (min-width: 40em) {
  /* line 59, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-media-banner.scss */
  .c-media-banner__content__overlay-image {
    margin-bottom: 24px;
    width: 35%;
  }
}

/* line 73, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-media-banner.scss */
.c-media-banner--hp-decorator .c-media-banner__content {
  z-index: 2;
}

/* line 77, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-media-banner.scss */
.c-media-banner--hp-decorator::after {
  background: url("/assets/media-banners/decorators/HOME_mediabannerRIVER.svg") no-repeat center bottom;
  background-size: cover;
  content: '';
  display: block;
  pointer-events: none;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 96px;
  z-index: 1;
}

@media (max-width: 39.99em) {
  /* line 77, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-media-banner.scss */
  .c-media-banner--hp-decorator::after {
    background-position-x: -288px;
  }
}

@media (min-width: 61.25em) {
  /* line 77, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-media-banner.scss */
  .c-media-banner--hp-decorator::after {
    padding-top: 6.779661017%;
  }
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
.c-carousel--lightbox {
  width: auto;
  position: relative;
  display: block;
  margin-bottom: 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
}

@media (min-width: 40em) {
  /* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
  .c-carousel--lightbox {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* line 15, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
.c-carousel--lightbox .c-carousel__slides {
  background-color: #000000;
  cursor: pointer;
}

/* line 19, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
.c-carousel--lightbox .c-carousel__slides .o-icon {
  width: 35px;
  height: 35px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  border-width: 3px;
}

/* line 28, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
.c-carousel--lightbox .c-carousel__slides:hover .o-icon {
  background-color: #50b0f4;
}

/* line 33, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
.c-carousel--lightbox .c-carousel__nav {
  width: 100%;
  white-space: nowrap;
  margin-top: .75rem;
}

/* line 38, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
.c-carousel--lightbox .c-carousel__nav .o-list-inline {
  width: calc(100% - 104px);
  display: inline-block;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translate3d(0, 0, 0);
  vertical-align: middle;
  position: relative;
}

/* line 49, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
.c-carousel--lightbox .c-carousel__nav .o-list-inline__item {
  margin-right: .75rem;
  position: relative;
}

/* line 53, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
.c-carousel--lightbox .c-carousel__nav .o-list-inline__item:last-child {
  margin-right: 0;
}

/* line 57, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
.c-carousel--lightbox .c-carousel__nav .o-list-inline__item .o-icon {
  display: none;
  width: 40px;
  height: 40px;
  pointer-events: none;
}

/* line 66, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
.c-carousel--lightbox .c-carousel__nav .o-list-inline__item--video .o-icon {
  display: inline-block;
}

/* line 71, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
.c-carousel--lightbox .c-carousel__nav .c-carousel__nav-arrow {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  -webkit-transition: background-color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background-color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 90px;
  background-color: #e6e6e6;
  vertical-align: top;
}

/* line 77, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
.c-carousel--lightbox .c-carousel__nav .c-carousel__nav-arrow:first-child {
  margin-right: .75rem;
}

/* line 81, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
.c-carousel--lightbox .c-carousel__nav .c-carousel__nav-arrow:last-child {
  margin-left: .75rem;
}

/* line 85, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
.c-carousel--lightbox .c-carousel__nav .c-carousel__nav-arrow svg {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  -webkit-transition: fill 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: fill 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  fill: #50b0f4;
}

/* line 90, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
.c-carousel--lightbox .c-carousel__nav .c-carousel__nav-arrow.is-disabled svg {
  fill: #888888;
}

/* line 94, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
.c-carousel--lightbox .c-carousel__nav .c-carousel__nav-arrow:not(.is-disabled):hover {
  background-color: #E1E723;
}

/* line 97, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
.c-carousel--lightbox .c-carousel__nav .c-carousel__nav-arrow:not(.is-disabled):hover svg {
  fill: #ffffff;
}

/* line 104, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
.c-carousel--lightbox .c-carousel__nav-thumbnail {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  -webkit-transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 90px;
  border: 3px solid #e6e6e6;
  opacity: .5;
  cursor: pointer;
}

/* line 111, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
.c-carousel--lightbox .c-carousel__nav-thumbnail:hover {
  opacity: 1;
}

/* line 115, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
.c-carousel--lightbox .c-carousel__nav-thumbnail.is-active {
  border-color: #50b0f4;
  opacity: 1;
}

/* line 120, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
.c-carousel--lightbox .c-carousel__nav-thumbnail img {
  height: 100%;
}

/* line 126, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
.c-carousel--lightbox--video-only {
  width: 100%;
  max-width: none;
}

/* line 130, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
.c-carousel--lightbox--video-only.c-carousel--lightbox {
  margin-left: 0;
  margin-right: 0;
}

/* line 135, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
.c-carousel--lightbox--video-only .c-carousel__slide--video-wrapper {
  height: 0;
  padding-top: 56.25%;
}

/* line 139, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_carousel_lightbox.scss */
.c-carousel--lightbox--video-only .c-carousel__slide--video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   #CAROUSEL VIEW HEADER
============================================================================= */
/* line 7, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-view-header.scss */
.c-carousel--view-header .c-carousel__slide,
.c-carousel--view-header .c-media-banner {
  max-height: 75vw;
}

@media (min-width: 40em) {
  /* line 7, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-view-header.scss */
  .c-carousel--view-header .c-carousel__slide,
  .c-carousel--view-header .c-media-banner {
    max-height: 34.66666667vw;
  }
}

/* line 16, app/assets/stylesheets/2018-nextgen-ui/components/_carousel-view-header.scss */
.c-carousel--view-header .slick-list {
  background-color: #000000;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top-wrapper {
  background-color: #222222;
}

/* line 5, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top__logo {
  width: 100%;
  background-color: #444444;
  display: block;
}

/* line 11, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top__logo__image {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 1em;
  display: block;
}

@media (min-width: 61.25em) {
  /* line 11, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__logo__image {
    padding: 2em 1em;
  }
}

/* line 23, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top__actions {
  text-align: right;
  padding-top: .5rem;
  padding-bottom: .5rem;
  height: 56px;
  background-color: #222222;
  position: relative;
  z-index: 3;
  width: 100%;
}

@media (min-width: 40em) {
  /* line 23, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__actions {
    height: auto;
  }
  /* line 36, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__actions.is-fixed {
    position: static;
  }
}

@media (max-width: 39.99em) {
  /* line 42, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__actions-menu {
    -webkit-backface-visibility: hidden;
    /* easeOutQuart */
    -webkit-transition: 0.25s top cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 0.25s top cubic-bezier(0.165, 0.84, 0.44, 1);
    padding-top: .5rem;
    padding-bottom: .5rem;
    display: block;
    width: 100%;
    height: 56px;
    background-color: #222222;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
  }
  /* line 56, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__actions-menu.is-fixed {
    position: fixed;
    top: -60px;
    z-index: 7;
  }
  /* line 61, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__actions-menu.is-fixed.is-visible {
    top: 0;
  }
}

/* line 68, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top__action {
  margin-right: .5rem;
  vertical-align: middle;
  font-size: 0;
  position: relative;
}

@media (min-width: 28.125em) {
  /* line 68, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__action {
    margin-right: 1rem;
  }
}

/* line 80, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top__action:hover .o-icon {
  background-color: #50b0f4;
}

/* line 86, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top__actions__text {
  display: none;
  vertical-align: middle;
  margin-left: .5rem;
  color: #ffffff;
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 1.25rem;
}

/* line 96, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top__action--menu-toggle {
  float: left;
  margin-left: .5rem;
}

@media (min-width: 53.125em) {
  /* line 96, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__action--menu-toggle {
    display: none;
  }
}

@media (min-width: 53.125em) {
  /* line 107, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__action--add-project .c-nav-top__actions__text {
    display: inline-block;
  }
}

/* line 116, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top__action--notifications.has-notifications:after {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  /* easeOutQuart */
  -webkit-transition: 0.25s border-color cubic-bezier(0.165, 0.84, 0.44, 1),  0.25s background-color cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.25s border-color cubic-bezier(0.165, 0.84, 0.44, 1),  0.25s background-color cubic-bezier(0.165, 0.84, 0.44, 1);
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #E1E723;
  border: 3px solid #222222;
  border-radius: 100%;
  z-index: 6;
  pointer-events: none;
  z-index: 6;
}

/* line 133, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top__action--notifications.has-notifications:before {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  /* easeOutQuart */
  -webkit-transition: 0.25s border-color cubic-bezier(0.165, 0.84, 0.44, 1),  0.25s background-color cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.25s border-color cubic-bezier(0.165, 0.84, 0.44, 1),  0.25s background-color cubic-bezier(0.165, 0.84, 0.44, 1);
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #E1E723;
  border-radius: 100%;
  z-index: 6;
  pointer-events: none;
  z-index: 7;
  animation: pulse_hotspot 2.5s infinite;
  -moz-animation: pulse_hotspot 2.5s infinite;
  -webkit-animation: pulse_hotspot 2.5s infinite;
  -o-animation: pulse_hotspot 2.5s infinite;
}

/* line 155, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top__action--notifications:hover.has-notifications:after {
  border-color: #50b0f4;
  background-color: #ffffff;
}

@media (min-width: 61.25em) {
  /* line 165, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__action--search .o-icon:before, .c-nav-top__action--search .o-icon:after {
    display: none;
  }
}

/* line 170, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top__action--search .c-nav-top__actions__text {
  border: 0;
  border-bottom: 1px dashed #888888;
  margin-left: 0;
  background-color: transparent;
  outline: 0;
  width: 270px;
  padding: 0;
  position: relative;
  bottom: -1px;
}

@media (min-width: 61.25em) {
  /* line 170, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__action--search .c-nav-top__actions__text {
    display: inline-block;
  }
}

/* line 185, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top__action--search .c-nav-top__actions__text:focus {
  border-color: #50b0f4;
}

@media (min-width: 61.25em) {
  /* line 192, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__action--search:hover .o-icon, .c-nav-top__action--search:focus .o-icon {
    background-color: transparent;
  }
}

/* line 199, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top__action--search:hover .c-nav-top__actions__text, .c-nav-top__action--search:focus .c-nav-top__actions__text {
  border-color: #50b0f4;
}

/* line 205, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top__submenu {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  /* easeOutQuart */
  /* easeOutQuart */
  -webkit-transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  top 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  visibility 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  top 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  visibility 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: absolute;
  top: 110%;
  right: 0;
  background-color: #444444;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 4;
  font-size: 0;
  white-space: nowrap;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  height: calc(100vh - 185px);
  overflow: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

/* line 226, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top__submenu.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  top: 90%;
}

@media (min-width: 40em) {
  /* line 205, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__submenu {
    width: auto;
    right: 2%;
    height: auto;
  }
}

/* line 239, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top__submenu.c-nav-top__submenu--within-page {
  display: inline-block;
  position: static;
  -webkit-transform: none;
          transform: none;
  background-color: #ffffff;
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  width: 100%;
  height: auto;
  white-space: normal;
}

/* line 253, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top__submenu__box {
  width: 100%;
  padding: 1.5rem;
  font-size: 1rem;
  white-space: normal;
}

/* line 259, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top__submenu__box .o-icon {
  top: -.25rem;
}

@media (min-width: 40em) {
  /* line 253, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__submenu__box {
    width: auto;
    display: inline-block;
    vertical-align: top;
  }
  /* line 268, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__submenu--user-gateway .c-nav-top__submenu__box {
    width: 325px;
  }
}

/* line 275, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top__submenu--user-gateway .c-nav-top__submenu__box:first-child {
  border-bottom: 1px solid #000000;
}

@media (min-width: 40em) {
  /* line 275, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__submenu--user-gateway .c-nav-top__submenu__box:first-child {
    border-bottom: 0;
    border-right: 1px solid #000000;
  }
}

@media (min-width: 40em) {
  /* line 285, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__submenu--within-page .c-nav-top__submenu__box {
    width: 50%;
  }
}

@media (min-width: 53.125em) {
  /* line 285, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__submenu--within-page .c-nav-top__submenu__box {
    width: 100%;
  }
}

@media (min-width: 61.25em) {
  /* line 285, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__submenu--within-page .c-nav-top__submenu__box {
    width: 50%;
  }
}

/* line 299, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top__submenu--within-page .c-nav-top__submenu__box:first-child {
  border-bottom: 1px solid #e6e6e6;
}

@media (min-width: 40em) {
  /* line 299, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__submenu--within-page .c-nav-top__submenu__box:first-child {
    border-right: 1px solid #e6e6e6;
    border-bottom: 0;
  }
}

@media (min-width: 53.125em) {
  /* line 299, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__submenu--within-page .c-nav-top__submenu__box:first-child {
    border-right: 0;
    border-bottom: 1px solid #e6e6e6;
  }
}

@media (min-width: 61.25em) {
  /* line 299, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__submenu--within-page .c-nav-top__submenu__box:first-child {
    border-right: 1px solid #e6e6e6;
    border-bottom: 0;
  }
}

/* line 319, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top__submenu--notifications .c-nav-top__submenu__box {
  overflow-y: auto;
  padding-bottom: 70px;
  max-height: 100%;
}

@media (min-width: 40em) {
  /* line 319, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__submenu--notifications .c-nav-top__submenu__box {
    max-height: 350px;
  }
}

/* line 330, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top__submenu--notifications {
  max-width: 600px;
}

/* line 333, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top__submenu--notifications .c-nav-top__submenu-footer-link {
  display: block;
  width: 100%;
  padding: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  border-top: 2px solid #222222;
  background-color: #444444;
}

@media (min-width: 61.25em) {
  /* line 345, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__submenu--search {
    display: none;
  }
}

/* line 350, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top__submenu--search .o-input__field {
  width: 100%;
}

@media (min-width: 40em) {
  /* line 350, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__submenu--search .o-input__field {
    width: 350px;
  }
}

/* line 359, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
.c-nav-top__actions__search-form {
  display: inline-block;
  width: 100%;
}

@media (min-width: 40em) {
  /* line 359, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-top.scss */
  .c-nav-top__actions__search-form {
    width: auto;
  }
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
.c-nav-side-wrapper {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  /* easeOutQuart */
  -webkit-transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  z-index: 10;
}

/* line 13, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
.c-nav-side-wrapper.is-active {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  -webkit-transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

/* line 19, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
.c-nav-side-wrapper hr {
  background-color: #151515;
}

@media (min-width: 53.125em) {
  /* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
  .c-nav-side-wrapper {
    -webkit-backface-visibility: hidden;
    -webkit-transition: none;
    transition: none;
    width: auto;
    height: auto;
    -webkit-transform: none;
            transform: none;
    position: static;
    background-color: transparent;
    opacity: 1;
  }
  /* line 32, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
  .c-nav-side-wrapper.is-active {
    -webkit-transform: none;
            transform: none;
    background-color: transparent;
  }
  /* line 37, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
  .c-nav-side-wrapper.is-fixed {
    position: fixed;
    max-height: 100%;
    overflow-y: auto;
    padding-bottom: 2rem;
  }
  /* line 44, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
  .c-nav-side-wrapper hr {
    background-color: #e6e6e6;
  }
}

/* line 51, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
.c-nav-side-wrapper--alt {
  top: 0;
  display: none;
}

@media (min-width: 28.125em) {
  /* line 51, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
  .c-nav-side-wrapper--alt {
    display: block;
  }
}

@media (min-width: 53.125em) {
  /* line 51, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
  .c-nav-side-wrapper--alt {
    display: none;
  }
}

@media (min-width: 61.25em) {
  /* line 51, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
  .c-nav-side-wrapper--alt {
    display: block;
  }
  /* line 66, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
  .c-nav-side-wrapper--alt.is-fixed {
    position: fixed;
  }
}

/* line 72, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
.c-nav-side {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: calc(100% - 80px);
  height: 100%;
  padding: 1rem;
  background-color: rgba(34, 34, 34, 0.95);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  overflow: scroll;
  padding-bottom: 50px;
}

@media (min-width: 53.125em) {
  /* line 72, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
  .c-nav-side {
    width: 100%;
    padding-bottom: 0;
    background-color: transparent;
    -webkit-transform: none;
            transform: none;
    overflow: visible;
  }
}

/* line 90, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
.c-nav-side-wrapper.is-active .c-nav-side {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* line 95, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
.c-nav-side__nav-item {
  color: #ffffff;
  display: block;
  position: relative;
}

@media (min-width: 53.125em) {
  /* line 95, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
  .c-nav-side__nav-item {
    color: #666666;
  }
}

/* line 104, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
.c-nav-side__nav-item:after {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  /* easeOutQuart */
  -webkit-transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  content: '';
  position: absolute;
  top: 0;
  left: -14px;
  width: 4px;
  height: 100%;
  background-color: #50b0f4;
  opacity: 0;
  border-radius: 2px;
}

/* line 117, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
.c-nav-side__nav-item:hover {
  color: #50b0f4;
}

/* line 120, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
.c-nav-side__nav-item:hover:after {
  opacity: 1;
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
}

/* line 125, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
.c-nav-side__nav-item:hover .c-nav-side__nav-item__right-aligned-icon {
  right: -10px;
}

/* line 129, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
.c-nav-side__nav-item:hover svg {
  fill: #50b0f4;
}

/* line 134, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
.c-nav-side__nav-item.is-active {
  color: #50b0f4;
}

/* line 138, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
.c-nav-side__nav-item .o-heading {
  color: inherit;
}

/* line 144, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
.c-nav-side__avatar {
  width: 60px;
  display: inline-block;
  vertical-align: middle;
}

/* line 150, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
.c-nav-side__username {
  display: inline-block;
  vertical-align: middle;
  color: #50b0f4;
  margin-left: .5rem;
  max-width: 100%;
}

/* line 158, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
.c-nav-side__nav-item__right-aligned-icon {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  -webkit-transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}

/* line 166, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
.c-nav-side__nav-item__right-aligned-icon .o-icon:hover {
  background-color: transparent;
}

/* line 170, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_nav-side.scss */
.c-nav-side__nav-item__right-aligned-icon svg {
  fill: #666666;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_back-to-top.scss */
.c-back-to-top {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  /* easeOutQuart */
  /* easeOutQuart */
  -webkit-transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  visibility 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  visibility 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  visibility 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  visibility 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
  background-color: #444444;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  cursor: pointer;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  z-index: 5;
}

/* line 16, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_back-to-top.scss */
.c-back-to-top.is-visible {
  opacity: .85;
  visibility: visible;
  pointer-events: all;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* line 23, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_back-to-top.scss */
.c-back-to-top:hover {
  opacity: 1;
}

/* line 27, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_back-to-top.scss */
.c-back-to-top.is-active {
  -webkit-transform: translate(0, -0.5rem);
          transform: translate(0, -0.5rem);
  opacity: 1;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.4);
}

/* line 34, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_back-to-top.scss */
.c-back-to-top__text {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  -webkit-transition: width 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: width 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding-left: 0;
  color: #b7cd4c;
  width: 0;
  overflow: hidden;
}

/* line 41, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_back-to-top.scss */
.c-back-to-top.is-active .c-back-to-top__text {
  width: 121px;
  padding-left: 10px;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-banner.scss */
.c-media-banner {
  width: 100%;
  display: inline-block;
  margin: 0 auto;
  position: relative;
  text-align: right;
}

/* line 8, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-banner.scss */
.c-media-banner.c-media-banner--left {
  text-align: left;
}

/* line 12, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-banner.scss */
.c-media-banner.c-media-banner--center {
  text-align: center;
}

/* line 17, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-banner.scss */
.c-media-banner__media {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 40em) {
  /* line 22, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-banner.scss */
  .c-media-banner__media--mobile {
    display: none !important;
  }
}

@media (max-width: 39.98438em) {
  /* line 28, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-banner.scss */
  .c-media-banner__media--desktop {
    display: none !important;
  }
}

/* line 34, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-banner.scss */
.c-media-banner__content {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  /* easeOutQuart */
  -webkit-transition: opacity 0.7s cubic-bezier(0.165, 0.84, 0.44, 1),  -webkit-transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.7s cubic-bezier(0.165, 0.84, 0.44, 1),  -webkit-transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.7s cubic-bezier(0.165, 0.84, 0.44, 1),  transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.7s cubic-bezier(0.165, 0.84, 0.44, 1),  transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1),  -webkit-transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) ;
          transform: translate(-50%, -50%) ;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  -webkit-transition-delay: .6s;
          transition-delay: .6s;
  width: 100%;
  padding: 1em;
  font-size: 1rem;
  z-index: 1;
  opacity: 0;
}

/* line 45, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-banner.scss */
.slick-current .c-media-banner__content, .c-media-banner.is-visible .c-media-banner__content {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (min-width: 40em) {
  /* line 34, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-banner.scss */
  .c-media-banner__content {
    padding: 2em;
  }
}

/* line 55, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-banner.scss */
.c-media-banner__content__title {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: .25rem;
}

@media (min-width: 40em) {
  /* line 55, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-banner.scss */
  .c-media-banner__content__title {
    font-size: 3rem;
  }
}

@media (min-width: 61.25em) {
  /* line 55, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-banner.scss */
  .c-media-banner__content__title {
    font-size: 4rem;
  }
}

/* line 69, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-banner.scss */
.c-media-banner__content__subtitle {
  font-size: 1rem;
}

@media (min-width: 40em) {
  /* line 69, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-banner.scss */
  .c-media-banner__content__subtitle {
    font-size: 1.5rem;
  }
}

@media (min-width: 61.25em) {
  /* line 69, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-banner.scss */
  .c-media-banner__content__subtitle {
    font-size: 2rem;
  }
}

/* line 81, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-banner.scss */
.c-media-banner__content__paragraph {
  max-width: 560px;
  display: inline-block;
}

@media (min-width: 40em) {
  /* line 3, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_content-padding.scss */
  .c-content-padding {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 53.125em) {
  /* line 3, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_content-padding.scss */
  .c-content-padding {
    padding-left: 0;
    padding-right: 1rem;
  }
}

@media (min-width: 61.25em) {
  /* line 3, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_content-padding.scss */
  .c-content-padding {
    padding-left: 0;
    padding-right: 1.5rem;
  }
}

@media (max-width: 39.99em) {
  /* line 20, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_content-padding.scss */
  .c-content-padding--pad-mobile {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 61.24em) {
  /* line 28, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_content-padding.scss */
  .c-content-padding--pad-top {
    padding-top: 2rem;
  }
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_page-title.scss */
.c-page-title {
  padding: 0 1rem;
  margin-top: .5rem;
  margin-bottom: 2rem;
}

@media (min-width: 28.125em) {
  /* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_page-title.scss */
  .c-page-title {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-top: 2rem;
  }
}

@media (min-width: 40em) {
  /* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_page-title.scss */
  .c-page-title {
    padding-left: 0;
    padding-right: 0;
  }
}

/* line 17, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_page-title.scss */
.c-page-title h1 {
  font-size: 2.25rem;
}

/* line 21, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_page-title.scss */
.c-content-padding--pad-mobile .c-page-title {
  padding-left: 0;
}

/* line 26, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_page-title.scss */
.c-page-title--project-feed {
  position: relative;
}

/* line 29, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_page-title.scss */
.c-page-title--project-feed .o-icon--cast {
  display: none;
}

@media (min-width: 28.125em) {
  /* line 29, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_page-title.scss */
  .c-page-title--project-feed .o-icon--cast {
    display: inline-block;
  }
}

/* line 37, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_page-title.scss */
.c-page-title--project-feed .o-icon--settings {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

/* line 3, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
.c-modal {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  /* easeOutQuart */
  -webkit-transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  visibility 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  visibility 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.85);
  visibility: hidden;
  opacity: 0;
  z-index: 23;
  pointer-events: none;
  text-align: center;
  padding: 1em;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* line 20, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
.c-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

@media (min-width: 28.125em) {
  /* line 3, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
  .c-modal {
    position: fixed;
  }
}

/* line 31, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
.c-modal__inner {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  -webkit-transition: height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: auto;
  display: inline-block;
  max-width: 87.5rem;
  position: relative;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.85);
  -webkit-backface-visibility: hidden;
  background-color: #ffffff;
  overflow: hidden;
}

@media (min-width: 53.125em) {
  /* line 31, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
  .c-modal__inner {
    margin-top: 10vh;
  }
}

/* line 46, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
.c-modal--project-preview .c-modal__inner {
  max-width: 940px;
  width: 100%;
}

/* line 51, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
.c-modal--limit-width .c-modal__inner {
  max-width: 640px;
  width: 100%;
}

/* line 56, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
.c-modal__inner .c-modal--video {
  max-width: 100%;
}

/* line 61, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
.c-modal__action-bar {
  background-color: #666666;
  overflow: hidden;
  top: 0;
  left: 0;
}

/* line 67, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
.c-modal__action-bar:after {
  content: "";
  display: table;
  clear: both;
}

/* line 74, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
.c-modal__action--left {
  float: left;
}

/* line 78, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
.c-modal__action--right {
  float: right;
}

/* line 84, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
.c-modal__action--close:hover {
  background-color: #E1E723;
}

/* line 87, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
.c-modal__action--close:hover svg {
  fill: #666666;
}

/* line 93, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
.c-modal__header {
  background-color: #E1E723;
  color: #666666;
  padding-left: 1rem;
  padding-right: .5rem;
  padding-bottom: .5rem;
}

@media (min-width: 40em) {
  /* line 93, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
  .c-modal__header {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

/* line 107, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
.c-modal__header-icon {
  width: 50px;
  height: 50px;
  display: none;
}

@media (min-width: 28.125em) {
  /* line 107, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
  .c-modal__header-icon {
    display: inline-block;
  }
}

@media (min-width: 40em) {
  /* line 107, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
  .c-modal__header-icon {
    width: 100px;
    height: 100px;
  }
}

/* line 122, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
.c-modal__header-content {
  display: inline-block;
  vertical-align: middle;
}

@media (min-width: 28.125em) {
  /* line 122, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
  .c-modal__header-content {
    width: calc(100% - 110px);
  }
}

/* line 131, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
.c-modal__header-content-title {
  line-height: 1;
}

/* line 135, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
.c-modal__header-content-subtitle {
  display: none;
}

/* line 139, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
.c-modal__content {
  padding: 2rem 1rem;
  max-width: 100%;
}

@media (min-width: 40em) {
  /* line 139, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
  .c-modal__content {
    padding: 2.5rem;
  }
}

/* line 150, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
.c-modal--video .c-modal__media {
  width: 600px;
  height: 0;
  padding-top: 56.25%;
  position: relative;
  max-width: 100%;
}

/* line 157, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
.c-modal--video .c-modal__media iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 171, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
.c-modal--theme-green .c-modal__action-bar {
  background-color: #E1E723;
}

/* line 177, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
.c-modal--theme-green .c-modal__action--close svg {
  fill: #666666;
}

/* line 181, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
.c-modal--theme-green .c-modal__action--close:hover {
  background-color: #666666;
}

/* line 184, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
.c-modal--theme-green .c-modal__action--close:hover svg {
  fill: #E1E723;
}

/* line 191, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_media.scss */
.c-modal__preview {
  max-width: 200px;
  margin: 0 auto;
  margin-bottom: 1em;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_welcome.scss */
.c-welcome {
  max-width: 100%;
}

/* line 5, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_welcome.scss */
.c-welcome__sign-up-form {
  width: 100%;
}

/* line 9, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_welcome.scss */
.c-welcome__section {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  /* easeOutQuart */
  /* easeOutQuart */
  -webkit-transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),  visibility 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),  height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),  visibility 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),  height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-width: 840px;
  visibility: hidden;
  opacity: 0;
}

/* line 15, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_welcome.scss */
.c-welcome__section.is-active {
  visibility: visible;
  opacity: 1;
}

/* line 21, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_welcome.scss */
.c-category {
  display: none;
}

/* line 27, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_welcome.scss */
.c-welcome__slideshow.slick-initialized .slick-slide {
  float: none;
  display: inline-block;
  vertical-align: middle;
}

/* line 33, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_welcome.scss */
.c-welcome__slideshow__slide img {
  max-width: 300px;
  margin: 0 auto;
  margin-bottom: 1rem;
}

@media (min-width: 40em) {
  /* line 33, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_welcome.scss */
  .c-welcome__slideshow__slide img {
    max-width: none;
    margin-bottom: 0;
  }
}

/* line 44, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_welcome.scss */
.c-welcome__footer {
  position: relative;
}

/* line 48, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_welcome.scss */
.c-welcome__slideshow__nav {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: auto;
  height: 5px;
}

@media (min-width: 40em) {
  /* line 48, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_welcome.scss */
  .c-welcome__slideshow__nav {
    width: 140px;
    right: 0;
  }
}

/* line 63, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_welcome.scss */
.c-welcome__slideshow__nav .slick-dots {
  list-style: none;
  margin: 0;
  font-size: 0;
}

/* line 68, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_welcome.scss */
.c-welcome__slideshow__nav .slick-dots li {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  /* easeOutQuart */
  -webkit-transition: background-color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background-color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background-color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background-color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1),  -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #e6e6e6;
  border-radius: 100%;
  margin: 0 4px;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  cursor: pointer;
}

/* line 79, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_welcome.scss */
.c-welcome__slideshow__nav .slick-dots li:hover {
  background-color: #98d0f9;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* line 84, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_modal_welcome.scss */
.c-welcome__slideshow__nav .slick-dots li.slick-active {
  background-color: #50b0f4;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_social-share.scss */
.c-social-share {
  text-align: center;
}

@media (min-width: 40em) {
  /* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_social-share.scss */
  .c-social-share {
    text-align: left;
  }
}

/* line 9, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_social-share.scss */
.c-social-share__text {
  padding-right: .35rem;
}

/* line 13, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_social-share.scss */
.c-social-share__action {
  margin-right: .15rem;
}

/* line 16, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_social-share.scss */
.c-social-share__action:last-child {
  margin-right: 0;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_social-links.scss */
.c-social-links {
  display: inline-block;
}

/* line 4, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_social-links.scss */
.c-social-links .o-icon {
  width: 46px;
  height: 46px;
  padding: 0;
}

/* line 13, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_social-links.scss */
.c-social-links--light .o-icon svg {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  -webkit-transition: fill 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: fill 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  fill: #ffffff;
}

/* line 19, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_social-links.scss */
.c-social-links--light:hover .o-icon svg {
  fill: #888888;
}

/* line 23, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_social-links.scss */
.c-social-links--light:hover .o-icon:hover svg {
  fill: #ffffff;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_expandable-list.scss */
.c-expandable-list {
  background-color: #f1f1f1;
  padding: 1em;
  margin-left: -1rem;
  margin-right: -1rem;
}

@media (min-width: 40em) {
  /* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_expandable-list.scss */
  .c-expandable-list {
    padding: 1.25rem;
    margin-left: 0;
    margin-right: 0;
  }
}

/* line 13, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_expandable-list.scss */
.c-expandable-list:not(.is-expanded) {
  cursor: pointer;
}

/* line 16, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_expandable-list.scss */
.c-expandable-list:not(.is-expanded):hover .o-heading {
  color: #50b0f4;
}

/* line 22, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_expandable-list.scss */
.c-expandable-list__item {
  border-bottom: 1px solid #e6e6e6;
  padding: 1.25rem 0;
}

/* line 26, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_expandable-list.scss */
.c-expandable-list__item:first-child {
  padding-top: 0;
}

/* line 30, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_expandable-list.scss */
.c-expandable-list__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

/* line 36, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_expandable-list.scss */
.c-expandable-list__item--title {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  -webkit-transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding-bottom: 0;
  border-bottom: 0;
  cursor: pointer;
}

/* line 42, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_expandable-list.scss */
.c-expandable-list.is-expanded .c-expandable-list__item--title {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e6e6e6;
}

/* line 46, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_expandable-list.scss */
.c-expandable-list.is-expanded .c-expandable-list__item--title .o-heading {
  color: #50b0f4;
}

/* line 52, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_expandable-list.scss */
.c-expandable-list__item--title-inner {
  position: relative;
}

/* line 55, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_expandable-list.scss */
.c-expandable-list__item--title-inner .o-heading {
  width: calc(100% - 40px);
}

/* line 59, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_expandable-list.scss */
.c-expandable-list__item--title-inner .o-icon {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  min-height: 40px;
}

/* line 67, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_expandable-list.scss */
.c-expandable-list.is-expanded .c-expandable-list__item--title-inner .o-icon {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

/* line 73, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_expandable-list.scss */
.c-expandable-list__item--content {
  height: 0;
  overflow: hidden;
}

/* line 77, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_expandable-list.scss */
.c-expandable-list__item--content > .o-list-bare {
  padding-top: 1.25rem;
}

/* line 81, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_expandable-list.scss */
.c-expandable-list.is-expanded .c-expandable-list__item--content {
  height: auto;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/components/_article-stub.scss */
.c-article-stub {
  background-color: #444444;
  color: #ffffff;
  display: block;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column nowrap;
  font-size: 1rem;
  height: 100%;
  overflow: hidden;
  width: 100%;
}

/* line 14, app/assets/stylesheets/2018-nextgen-ui/components/_article-stub.scss */
.c-article-stub__link {
  display: block;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column nowrap;
  height: 100%;
}

@media (min-width: 53.125em) {
  /* line 14, app/assets/stylesheets/2018-nextgen-ui/components/_article-stub.scss */
  .c-article-stub__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
            align-items: center;
  }
}

/* line 27, app/assets/stylesheets/2018-nextgen-ui/components/_article-stub.scss */
.c-article-stub__figure,
.c-article-stub__body {
  -webkit-box-flex: 1;
          flex-grow: 1;
  width: 100%;
}

@media (min-width: 53.125em) {
  /* line 27, app/assets/stylesheets/2018-nextgen-ui/components/_article-stub.scss */
  .c-article-stub__figure,
  .c-article-stub__body {
    width: 50%;
  }
}

/* line 37, app/assets/stylesheets/2018-nextgen-ui/components/_article-stub.scss */
.c-article-stub__figure {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
          justify-content: center;
  text-transform: uppercase;
  padding-top: 60%;
}

@media (min-width: 40em) {
  /* line 37, app/assets/stylesheets/2018-nextgen-ui/components/_article-stub.scss */
  .c-article-stub__figure {
    padding-top: 50%;
  }
}

@media (min-width: 53.125em) {
  /* line 37, app/assets/stylesheets/2018-nextgen-ui/components/_article-stub.scss */
  .c-article-stub__figure {
    padding-top: 0;
  }
}

@media (min-width: 61.25em) {
  /* line 37, app/assets/stylesheets/2018-nextgen-ui/components/_article-stub.scss */
  .c-article-stub__figure {
    min-height: 24rem;
  }
}

/* line 61, app/assets/stylesheets/2018-nextgen-ui/components/_article-stub.scss */
.c-article-stub__body {
  color: #ffffff;
  flex-shrink: 0;
  text-align: center;
  padding: 24px 12px;
}

@media (min-width: 28.125em) {
  /* line 61, app/assets/stylesheets/2018-nextgen-ui/components/_article-stub.scss */
  .c-article-stub__body {
    padding: 36px 24px;
  }
}

@media (min-width: 53.125em) {
  /* line 61, app/assets/stylesheets/2018-nextgen-ui/components/_article-stub.scss */
  .c-article-stub__body {
    padding: 48px;
    text-align: left;
  }
}

/* line 76, app/assets/stylesheets/2018-nextgen-ui/components/_article-stub.scss */
.c-article-stub__body > *:last-child {
  margin-bottom: 0;
}

/* line 81, app/assets/stylesheets/2018-nextgen-ui/components/_article-stub.scss */
.c-article-stub__header {
  color: #ffffff;
}

/* line 85, app/assets/stylesheets/2018-nextgen-ui/components/_article-stub.scss */
.c-article-stub__title,
.c-article-stub__subtitle {
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* line 92, app/assets/stylesheets/2018-nextgen-ui/components/_article-stub.scss */
.c-article-stub__title {
  font-size: 2em;
}

/* line 96, app/assets/stylesheets/2018-nextgen-ui/components/_article-stub.scss */
.c-article-stub__subtitle {
  font-size: 1.25em;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/components/_breadcrumbs.scss */
.c-breadcrumb {
  display: -webkit-box;
  display: flex;
  padding: 1em 0;
  font-size: 0.75em;
  vertical-align: middle;
}

@media (max-width: 28.115em) {
  /* line 1, app/assets/stylesheets/2018-nextgen-ui/components/_breadcrumbs.scss */
  .c-breadcrumb {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row wrap;
  }
}

/* line 13, app/assets/stylesheets/2018-nextgen-ui/components/_breadcrumbs.scss */
.c-breadcrumb__item,
.c-breadcrumb__item a {
  color: #dddddd;
  text-transform: uppercase;
}

/* line 19, app/assets/stylesheets/2018-nextgen-ui/components/_breadcrumbs.scss */
.c-breadcrumb__item {
  margin-right: 3px;
}

/* line 23, app/assets/stylesheets/2018-nextgen-ui/components/_breadcrumbs.scss */
.c-breadcrumb__item--last a:hover,
.c-breadcrumb__item a:hover {
  color: #b7cd4c;
}

/* line 28, app/assets/stylesheets/2018-nextgen-ui/components/_breadcrumbs.scss */
.c-breadcrumb__item--last {
  color: #999999;
  text-transform: uppercase;
}

/* line 33, app/assets/stylesheets/2018-nextgen-ui/components/_breadcrumbs.scss */
.c-breadcrumb__item--last a {
  color: #dddddd;
}

/* line 37, app/assets/stylesheets/2018-nextgen-ui/components/_breadcrumbs.scss */
.c-breadcrumb__headline {
  margin-bottom: 0;
}

/* line 41, app/assets/stylesheets/2018-nextgen-ui/components/_breadcrumbs.scss */
.c-breadcrumb__list {
  list-style: none;
  margin: 0;
  line-height: 1;
}

/* line 47, app/assets/stylesheets/2018-nextgen-ui/components/_breadcrumbs.scss */
.c-breadcrumb__list-item {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
}

/* line 53, app/assets/stylesheets/2018-nextgen-ui/components/_breadcrumbs.scss */
.c-breadcrumb--product {
  color: #000000;
}

/* line 57, app/assets/stylesheets/2018-nextgen-ui/components/_breadcrumbs.scss */
.c-breadcrumb--product .c-breadcrumb__item,
.c-breadcrumb--product .c-breadcrumb__item a {
  color: currentColor;
  text-transform: uppercase;
}

@media screen and (min-width: 50em) {
  /* line 65, app/assets/stylesheets/2018-nextgen-ui/components/_breadcrumbs.scss */
  .c-breadcrumb {
    padding-left: 0;
    text-align: left;
  }
}

/* ==========================================================================
   #PRODUCT ITEM COMPONENT
============================================================================= */
/* line 5, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card {
  -webkit-box-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
  font-size: 1rem;
  width: 100%;
  height: 100%;
}

/* line 15, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__link {
  color: inherit;
  position: relative;
  margin-bottom: auto;
}

/* line 20, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__link:focus, .c-enhanced-card__link:hover {
  color: #000000;
}

/* line 24, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__link:focus .c-enhanced-card__figure, .c-enhanced-card__link:hover .c-enhanced-card__figure {
  border-color: inherit;
  border-color: #E1E723;
}

/* line 29, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__link:focus .c-enhanced-card__image, .c-enhanced-card__link:hover .c-enhanced-card__image {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

/* line 35, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__figure {
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

/* line 44, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__image {
  padding: 1em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  width: 100%;
}

/* line 51, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__content {
  height: 56px;
  margin-top: 24px;
  position: relative;
}

/* line 57, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__actions {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row nowrap;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

/* line 65, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__actions .o-btn {
  color: #50b0f4;
  font-size: 1.5em;
  line-height: 1rem;
}

/* line 70, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__actions .o-btn:focus, .c-enhanced-card__actions .o-btn:hover {
  background-color: #f1f1f1;
}

/* line 77, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__actions .c-contextual-menu__item .o-icon {
  height: 30px;
  width: 30px;
}

/* line 84, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__name {
  font-size: 1em;
  margin-bottom: 0;
  text-transform: uppercase;
}

/* line 90, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__model {
  font-weight: 300;
  font-size: 0.875em;
  margin-bottom: auto;
}

/* line 96, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__footer {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding-top: 12px;
  /* --- ps mobile button and was price fix 08/18/2020 --- */
  /* --- end updated styles for btn and original price fix --- */
  /* --- overrides for extra ps padding etc on btn 09/09/2020  --- */
  /* --- end overrides 09/09/2020 --- */
}

@media (max-width: 71.865em) {
  /* line 102, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
  .c-enhanced-card__footer .ps-widget,
  .c-enhanced-card__footer .ps-online-tab,
  .c-enhanced-card__footer .ps-online-sellers,
  .c-enhanced-card__footer .ps-online-seller-select .ps-grocery-seller {
    max-width: 90px !important;
    min-width: unset;
    min-height: 24px !important;
    max-height: 24px !important;
  }
}

/* line 114, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__footer .ps-widget {
  width: auto;
}

@media (min-width: 71.875em) {
  /* line 114, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
  .c-enhanced-card__footer .ps-widget {
    max-height: 36px !important;
  }
}

/* line 121, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__footer button.ps-online-buy-button.unavailable,
.c-enhanced-card__footer button.ps-online-buy-button.available {
  padding-left: 42px !important;
}

@media (max-width: 71.865em) {
  /* line 121, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
  .c-enhanced-card__footer button.ps-online-buy-button.unavailable,
  .c-enhanced-card__footer button.ps-online-buy-button.available {
    font-size: 12px !important;
    font-size: 0.75rem !important;
    line-height: 1.5 !important;
    min-height: 24px !important;
    min-width: 90px !important;
  }
}

/* line 132, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__footer button.ps-online-buy-button.unavailable,
.c-enhanced-card__footer button.ps-online-buy-button.available {
  border: 3px solid #222;
  background-color: #222;
  border-radius: 6px;
  color: #e1e723;
}

/* line 139, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__footer button.ps-online-buy-button.unavailable:focus, .c-enhanced-card__footer button.ps-online-buy-button.unavailable:hover,
.c-enhanced-card__footer button.ps-online-buy-button.available:focus,
.c-enhanced-card__footer button.ps-online-buy-button.available:hover {
  background-color: #e1e723;
  border: 3px solid #e1e723;
  border-radius: 6px;
  color: #222;
}

/* line 148, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__footer button.ps-online-buy-button > span,
.c-enhanced-card__footer button.ps-online-buy-button.available > small,
.c-enhanced-card__footer button.ps-online-buy-button.unavailable > small {
  font-size: 13px !important;
  font-size: 0.8125rem !important;
  line-height: 1.84615 !important;
}

@media (max-width: 71.865em) {
  /* line 148, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
  .c-enhanced-card__footer button.ps-online-buy-button > span,
  .c-enhanced-card__footer button.ps-online-buy-button.available > small,
  .c-enhanced-card__footer button.ps-online-buy-button.unavailable > small {
    font-size: 12px !important;
    font-size: 0.75rem !important;
    line-height: 1.5 !important;
  }
}

/* line 159, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__footer .ps-online-seller-select > div > div > div > span > span.ps-originalprice,
.c-enhanced-card__footer div[data-online-store] > div > div > div > span > span.ps-originalprice,
.c-enhanced-card__footer div.ps-online-seller > div > div > div > span > span.ps-originalprice {
  -webkit-text-decoration-line: line-through !important;
          text-decoration-line: line-through !important;
}

/* line 169, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__footer .ps-online-seller-select {
  padding-right: 0;
}

/* line 173, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__footer .ps-online-seller-select > div {
  padding: 0;
  box-shadow: none;
}

/* line 177, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__footer .ps-online-seller-select > div:hover {
  box-shadow: none;
  background-color: transparent;
}

/* line 183, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__footer .ps-online-seller-select > div > div {
  padding: 0;
  box-shadow: none;
}

/* line 188, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__footer .ps-online-seller-select > div > div > div:first-of-type {
  padding: 0;
}

/* line 192, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__footer .ps-online-seller-select > div > div > div:last-of-type {
  padding: 0;
}

/* line 196, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__footer button.ps-online-buy-button.unavailable {
  padding: 0.5em;
}

/* line 202, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__footer .ps-satellite-price .ps-price {
  font-size: 1em;
  line-height: 1;
}

/* line 207, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__footer .c-enhanced-card__footer-buy-btn {
  position: relative;
  font-size: 12px;
  color: #222222;
  background-color: #e6e6e6;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-right: 6px;
  padding-left: 32px;
  margin-right: 6px;
}

/* line 218, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__footer .c-enhanced-card__footer-buy-btn .icon--home-depot {
  content: url(/assets/fpo/logo-homedepot.svg);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: inline-block;
  height: 100%;
}

/* line 229, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__footer .c-enhanced-card__footer-learn-btn {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  padding: 6px;
  background-color: #666666;
}

/* line 238, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__footer-help-plus {
  height: 24px;
}

@media (max-width: 39.99em) {
  /* line 242, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
  .c-dropdown__cat-select {
    display: none;
  }
}

/* line 248, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
div.ps-wtb-content div.ps-online-tab .ps-no-results {
  display: none !important;
}

/* line 252, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__stars {
  margin-top: auto;
  padding-bottom: 12px;
  font-size: 0;
  border-bottom: 1px solid #e6e6e6;
  line-height: 16px;
  min-height: 36px;
}

/* line 260, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__stars span {
  display: inline-block;
}

/* line 264, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__stars .c-stars__container {
  position: relative;
}

/* line 268, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__stars .c-stars__indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  white-space: nowrap;
  overflow: hidden;
}

/* line 278, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__stars .c-stars {
  font-size: 14px;
}

/* line 282, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__stars .c-stars__review-count {
  font-size: 12px;
  margin-left: 1em;
  color: #b7cd4c;
}

/* line 287, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__stars .c-stars__review-count > span {
  font-size: 150%;
}

/* line 292, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__stars .c-stars--green {
  color: #b7cd4c;
}

/* line 296, app/assets/stylesheets/2018-nextgen-ui/components/_enhanced-card.scss */
.c-enhanced-card__stars .c-stars--light {
  color: #e6e6e6;
}

/* ==========================================================================
   #HP Glassbreak
============================================================================= */
/* line 5, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak {
  background-color: rgba(0, 0, 0, 0.75);
  background-size: cover;
  color: #E1E723;
  display: none;
  text-align: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
  pointer-events: none;
}

/* line 25, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak::before {
  background: rgba(255, 255, 255, 0.1) url("/assets/hp-glassbreak/cracks.svg") no-repeat center center;
  background-size: cover;
  content: "";
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

/* line 38, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak h1,
.c-hp-glassbreak h2 {
  color: inherit;
}

/* line 44, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak__inner {
  max-width: 87.5rem;
  width: 90%;
}

/* line 49, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak__title,
.c-hp-glassbreak__subtitle {
  font-size: 7vw;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 400;
}

@media (min-width: 40em) {
  /* line 49, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
  .c-hp-glassbreak__title,
  .c-hp-glassbreak__subtitle {
    font-size: 4vw;
  }
}

@media (min-width: 81.25em) {
  /* line 49, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
  .c-hp-glassbreak__title,
  .c-hp-glassbreak__subtitle {
    font-size: 3rem;
  }
}

/* line 65, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak__title {
  margin-bottom: 1em;
}

/* line 69, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak__phrase-01,
.c-hp-glassbreak__phrase-05 {
  display: inline-block;
}

/* line 74, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak__phrase-01 {
  margin-bottom: 1em;
}

/* line 84, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak__phrase-05 {
  margin-bottom: 0.5em;
}

/* line 88, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak__phrase-06 {
  display: block;
  margin: 0 auto;
  height: 2em;
}

/* line 96, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.o-inline-block {
  display: inline-block;
}

/* line 100, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.o-button--hp {
  background: #c4c5c7 url("/assets/hp-glassbreak/button.svg") no-repeat center center;
  background-size: 100%;
  box-shadow: 0px 2px 1em rgba(0, 0, 0, 0.5);
  color: #000000;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

/* line 107, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.o-button--hp:hover, .o-button--hp:focus {
  background-color: #fff;
  background-size: 125%;
  box-shadow: 0px 2px 1em rgba(255, 255, 255, 0.5);
}

/* line 115, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak .o-icon {
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

/* line 119, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak .c-hp-glassbreak__close {
  color: #ffffff;
  font-size: 3rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2100;
}

/* line 127, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak .c-hp-glassbreak__close:hover, .c-hp-glassbreak .c-hp-glassbreak__close:focus {
  background-color: transparent;
  color: #E1E723;
}

/* ==========================================================================
   #STATES
============================================================================= */
/* line 139, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak__phrase-02,
.c-hp-glassbreak__phrase-03,
.c-hp-glassbreak__phrase-04 {
  will-change: transform;
}

/* line 145, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak::before,
.c-hp-glassbreak__phrase-01,
.c-hp-glassbreak__subtitle,
.c-hp-glassbreak__cta {
  will-change: opacity;
}

/* line 154, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.js .c-hp-glassbreak {
  display: -webkit-box;
  display: flex;
  opacity: 0;
  pointer-events: none;
  visibility: visible;
  z-index: 99999;
}

/* line 162, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.js .c-hp-glassbreak::before {
  -webkit-clip-path: circle(30%);
          clip-path: circle(30%);
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

/* line 169, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.js .c-hp-glassbreak__phrase-02 {
  -webkit-transform: translate(10vw, -150vh) scale(10);
          transform: translate(10vw, -150vh) scale(10);
}

/* line 173, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.js .c-hp-glassbreak__phrase-03 {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

/* line 177, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.js .c-hp-glassbreak__phrase-04 {
  opacity: 0;
  -webkit-transform: translateX(-100vw);
          transform: translateX(-100vw);
}

/* line 182, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.js .c-hp-glassbreak::before,
.js .c-hp-glassbreak__phrase-01,
.js .c-hp-glassbreak__subtitle,
.js .c-hp-glassbreak__cta {
  opacity: 0;
}

/* line 191, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak.is-active {
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

/* line 202, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak.is-active .c-hp-glassbreak__phrase-01,
.c-hp-glassbreak.is-active .c-hp-glassbreak__subtitle,
.c-hp-glassbreak.is-active .c-hp-glassbreak__cta {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

/* line 208, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak.is-active .o-inline-block {
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

/* line 213, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak.is-active .c-hp-glassbreak__phrase-01 {
  opacity: 1;
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

/* line 219, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak.is-active .c-hp-glassbreak__phrase-02 {
  -webkit-transform: translate(0vw, 0vh) scale(1);
          transform: translate(0vw, 0vh) scale(1);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-in;
          transition-timing-function: ease-in;
}

/* line 228, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak.is-active::before {
  -webkit-clip-path: circle(100%);
          clip-path: circle(100%);
  opacity: 0.65;
  -webkit-transition-delay: 1.45s;
          transition-delay: 1.45s;
}

/* line 234, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak.is-active .c-hp-glassbreak__phrase-03 {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition-delay: 2.25s;
          transition-delay: 2.25s;
}

/* line 239, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak.is-active .c-hp-glassbreak__phrase-04 {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition-delay: 2.35s;
          transition-delay: 2.35s;
}

/* line 245, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak.is-active .c-hp-glassbreak__subtitle {
  opacity: 1;
  -webkit-transition-delay: 2.5s;
          transition-delay: 2.5s;
}

/* line 250, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak.is-active .c-hp-glassbreak__cta {
  opacity: 1;
  -webkit-transition-delay: 2.75s;
          transition-delay: 2.75s;
}

/* line 257, app/assets/stylesheets/2018-nextgen-ui/components/_hp-glassbreak.scss */
.c-hp-glassbreak.is-dismissed {
  display: none;
}

@-webkit-keyframes revealCracks {
  0% {
    -webkit-clip-path: circle(20%);
            clip-path: circle(20%);
  }
  100% {
    -webkit-clip-path: circle(100%);
            clip-path: circle(100%);
  }
}

@keyframes revealCracks {
  0% {
    -webkit-clip-path: circle(20%);
            clip-path: circle(20%);
  }
  100% {
    -webkit-clip-path: circle(100%);
            clip-path: circle(100%);
  }
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/components/_homepage-categories-section.scss */
.c-homepage-categories-section {
  background-color: #f1f1f1;
  border-top: 12px solid #E1E723;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.scss */
.c-inview-navigator__nav-wrapper {
  margin-left: auto;
  margin-right: auto;
}

/* line 6, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.scss */
.c-inview-navigator__nav {
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  width: 100%;
  max-width: inherit;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  z-index: 100;
  /*height: 50px;*/
  overflow: hidden;
  position: relative;
  list-style: none;
}

/* line 21, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.scss */
.c-inview-navigator__nav::after {
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
  content: "\203A";
  position: absolute;
  width: 35px;
  height: 50px;
  top: 0;
  right: 0;
  line-height: 2.1em;
  font-size: 1.5rem;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  pointer-events: none;
}

/* line 36, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.scss */
.c-inview-navigator__nav.is-open::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/* line 40, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.scss */
.c-inview-navigator.is-sticking .c-inview-navigator__nav {
  position: fixed;
  /*top: 0;*/
  right: 0;
  bottom: auto;
  left: 0;
  margin: auto;
}

/* line 49, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.scss */
.c-inview-navigator.at-end .c-inview-navigator__nav {
  position: absolute;
  top: auto;
  bottom: 0;
}

/* line 55, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.scss */
.c-inview-navigator__nav__item {
  -webkit-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
  padding: 0;
  cursor: pointer;
  text-align: right;
  padding: 0 1em;
  padding-right: 2em;
  width: 100%;
  position: relative;
}

/* line 66, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.scss */
.c-inview-navigator__nav__item a {
  display: inline-block;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

@media (min-width: 768px) {
  /* line 77, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.scss */
  .c-inview-navigator__nav {
    display: table;
    table-layout: fixed;
    padding: 0;
  }
  /* line 83, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.scss */
  .c-inview-navigator__nav::after {
    display: none;
  }
  /* line 87, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.scss */
  .c-inview-navigator__nav__item {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 0;
    position: static;
    width: auto;
  }
}

/* line 3, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.theme.scss */
.c-inview-navigator__nav-wrapper {
  background-color: #222222;
  width: inherit;
  min-height: 40px;
  max-width: 84.5rem;
}

/* line 10, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.theme.scss */
.c-inview-navigator__nav {
  background-color: #222222;
  height: 40px;
}

@media (min-width: 40em) {
  /* line 10, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.theme.scss */
  .c-inview-navigator__nav {
    max-height: 40px;
  }
}

@media (min-width: 53.125em) {
  /* line 10, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.theme.scss */
  .c-inview-navigator__nav {
    box-shadow: -50vw 0px 0px #222222, 50vw 0px 0px #222222;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row nowrap;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
            align-items: center;
  }
}

/* line 27, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.theme.scss */
.c-inview-navigator__nav::after {
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
  content: "\203A";
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  right: 0;
  line-height: 40px;
  text-align: center;
  font-size: 1.5rem;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  pointer-events: none;
}

/* line 43, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.theme.scss */
.c-inview-navigator__nav.is-open::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/* line 47, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.theme.scss */
.c-inview-navigator__nav__item {
  /*transition: background-color .25s ease-in-out;
  padding: 0;
  cursor: pointer;
  text-align: right;
  padding: 0 1em;
  padding-right: 2em;
  width: 100%;
  position: relative;*/
}

/* line 58, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.theme.scss */
.c-inview-navigator__nav__item a {
  color: #E1E723;
  font-size: 0.875em;
  text-transform: uppercase;
  line-height: 40px;
  height: 40px;
}

@media (min-width: 61.25em) {
  /* line 58, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.theme.scss */
  .c-inview-navigator__nav__item a {
    font-size: 1.25rem;
  }
}

/* line 70, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.theme.scss */
.c-inview-navigator__nav__item:hover {
  background-color: rgba(255, 255, 255, 0.35);
}

/* line 74, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.theme.scss */
.c-inview-navigator__nav__item.is-active {
  background-color: #E1E723;
}

/* line 77, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.theme.scss */
.c-inview-navigator__nav__item.is-active a {
  color: #000000;
}

@media (min-width: 53.125em) {
  /* line 91, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.theme.scss */
  .c-inview-navigator {
    overflow: visible;
  }
  /* line 94, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.theme.scss */
  .c-inview-navigator::before {
    background-color: #222222;
    content: "";
    display: block;
    position: fixed;
    right: 0;
    left: 0;
    height: 40px;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
    -webkit-transition: opacity 0.1s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.1s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, opacity 0.1s ease;
    transition: transform 0.3s ease, opacity 0.1s ease, -webkit-transform 0.3s ease;
    z-index: 1;
  }
  /* line 109, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.theme.scss */
  .c-inview-navigator__nav__item {
    -webkit-box-flex: 1;
            flex-grow: 1;
  }
  /* line 114, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.theme.scss */
  .c-inview-navigator.is-sticking::before {
    opacity: 0;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  /* line 122, app/assets/stylesheets/2018-nextgen-ui/components/_inview-navigator.theme.scss */
  .c-inview-navigator.at-end::before {
    opacity: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/components/_popout.scss */
.c-popout-container {
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 5px;
  width: 320px;
  position: fixed;
  top: 106px;
  right: -340px;
  -webkit-transition: all 0.7s ease-in;
  transition: all 0.7s ease-in;
  visibility: hidden;
}

/* line 14, app/assets/stylesheets/2018-nextgen-ui/components/_popout.scss */
.c-popout-container.is-active {
  top: 106px;
  right: 0;
  visibility: visible;
}

@media (min-width: 20em) {
  /* line 14, app/assets/stylesheets/2018-nextgen-ui/components/_popout.scss */
  .c-popout-container.is-active {
    right: 1px;
  }
}

@media (min-width: 28.125em) {
  /* line 14, app/assets/stylesheets/2018-nextgen-ui/components/_popout.scss */
  .c-popout-container.is-active {
    right: 6px;
  }
}

@media (min-width: 40em) {
  /* line 14, app/assets/stylesheets/2018-nextgen-ui/components/_popout.scss */
  .c-popout-container.is-active {
    top: 116px;
  }
}

/* line 33, app/assets/stylesheets/2018-nextgen-ui/components/_popout.scss */
.c-popout {
  border: 1px solid #E1E723;
  border-radius: 5px;
  margin: 6px;
  padding: 24px;
  position: relative;
}

/* line 41, app/assets/stylesheets/2018-nextgen-ui/components/_popout.scss */
.c-popout__actions {
  padding-top: 12px;
}

/* line 44, app/assets/stylesheets/2018-nextgen-ui/components/_popout.scss */
.c-popout__actions .o-button {
  width: 45%;
}

/* line 47, app/assets/stylesheets/2018-nextgen-ui/components/_popout.scss */
.c-popout__actions .o-button:hover {
  box-shadow: 0px 2px 1em rgba(255, 255, 255, 0.5);
}

/* line 57, app/assets/stylesheets/2018-nextgen-ui/components/_popout.scss */
.c-popout__actions .o-button--green {
  color: #000000;
  background-color: #E1E723;
}

/* line 69, app/assets/stylesheets/2018-nextgen-ui/components/_popout.scss */
.c-popout__actions .o-button--gray {
  background-color: #e6e6e6;
  color: #000000;
}

/* line 75, app/assets/stylesheets/2018-nextgen-ui/components/_popout.scss */
.c-popout__close-btn {
  color: #e6e6e6;
  padding-right: 6px;
  padding-bottom: 6px;
  padding-left: 6px;
  position: absolute;
  top: 0;
  right: 0;
}

/* line 84, app/assets/stylesheets/2018-nextgen-ui/components/_popout.scss */
.c-popout__close-btn:hover, .c-popout__close-btn:focus, .c-popout__close-btn:active {
  color: #ee3124;
}

/* line 91, app/assets/stylesheets/2018-nextgen-ui/components/_popout.scss */
.c-popout__title {
  color: #ffffff;
  font-size: 1.2em;
}

/* line 96, app/assets/stylesheets/2018-nextgen-ui/components/_popout.scss */
.c-popout__content {
  color: #ffffff;
  padding-top: 12px;
}

@media (min-width: 112.5em) {
  /* line 4, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad_new__wrapper {
    position: absolute;
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: start;
            justify-content: flex-start;
    z-index: 9998;
  }
}

/* line 15, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new {
  position: absolute;
  width: 100%;
  height: 0vh;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 9999;
  background: #E1E723;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.8);
  text-align: center;
  overflow: hidden;
}

@media (min-width: 160em) {
  /* line 15, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad_new {
    position: relative;
    margin: 0 auto;
    width: 2560px;
  }
}

/* line 32, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .slick-slider {
  height: 0%;
}

/* line 35, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .slick-slider .slick-list {
  padding: 0px !important;
}

/* line 40, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .slick-slide {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

/* line 43, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .slick-slide.slick-current {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

/* line 48, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .c-popout-ad_new__brushless-logo {
  position: absolute;
  margin-top: -25px;
  height: 900px;
  width: 100%;
  left: 0;
  opacity: 0.1;
  background: url("/assets/popout-ads/new/40V_OPHP_brushless.png") repeat left top;
}

/* line 59, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .c-popout-ad_new__header {
  padding-bottom: 0;
}

/* line 64, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .c-page-break-upswoop {
  position: absolute;
  width: 100%;
}

/* line 68, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .c-page-break-upswoop--below {
  left: 0;
  bottom: -1px;
  z-index: 50;
}

/* line 74, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .c-page-break-upswoop--above {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  z-index: 50;
  top: 0;
  left: 0;
}

/* line 82, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .c-popout-ad_new__logo {
  width: 50%;
}

@media (min-width: 28.125em) {
  /* line 82, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad_new .c-popout-ad_new__logo {
    width: 33%;
  }
}

@media (min-width: 112.5em) {
  /* line 82, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad_new .c-popout-ad_new__logo {
    max-width: 902px;
    /* Fallback for IE */
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}

/* line 95, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .c-page-break-downswoop {
  position: relative;
  width: 100%;
}

/* line 100, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .c-page-break-fill {
  position: absolute;
  z-index: 49;
}

/* line 106, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .c-page-break-fill--below {
  left: 83.5vw;
  right: 0;
  bottom: -5px;
  width: 73vw;
  border-left: 6vw solid transparent;
  border-bottom: 5.5vw solid #E1E723;
}

@media (min-width: 40em) {
  /* line 106, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad_new .c-page-break-fill--below {
    border-bottom: 4.85vw solid #E1E723;
  }
}

@media (min-width: 112.5em) {
  /* line 106, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad_new .c-page-break-fill--below {
    border-bottom: 4.5vw solid #E1E723;
  }
}

@media (min-width: 160em) {
  /* line 106, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad_new .c-page-break-fill--below {
    left: 85%;
    width: 15%;
    border-bottom: 109px solid #E1E723;
    border-left: 120px solid transparent;
  }
}

/* line 131, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .c-page-break-fill--above {
  right: 0;
  width: 90vw;
  border-left: 5.25vw solid transparent;
  border-top: 4.8vw solid #E1E723;
  top: -3px;
}

@media (min-width: 112.5em) {
  /* line 131, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad_new .c-page-break-fill--above {
    top: -10px;
  }
}

@media (min-width: 160em) {
  /* line 131, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad_new .c-page-break-fill--above {
    width: 89%;
    border-left: 102px solid transparent;
    border-top: 114px solid #E1E723;
  }
}

/* line 150, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .c-page-break-fill--above .c-page-break-corner-left {
  position: absolute;
  left: 0;
  width: 10vw;
  border-right: 9vw solid transparent;
}

/* line 156, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .c-page-break-fill--above .c-page-break-corner-left--green {
  border-top: 5vw solid #E1E723;
  border-left: 12vw solid #E1E723;
}

/* line 160, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .c-page-break-fill--above .c-page-break-corner-left--black {
  border-top: 5vw solid #000000;
  border-left: 12vw solid #000000;
}

/* line 166, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .c-page-break-fill--above .c-page-break-corner-right {
  position: absolute;
  right: 0;
  width: 10vw;
  border-left: 9vw solid transparent;
}

/* line 172, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .c-page-break-fill--above .c-page-break-corner-right--green {
  border-top: 5vw solid #E1E723;
  border-right: 12vw solid #E1E723;
}

/* line 177, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .c-page-break-fill--above .c-page-break-corner-right--black {
  border-top: 5vw solid #000000;
  border-right: 12vw solid #000000;
}

/* line 184, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .slick-slide {
  opacity: 0;
  margin: 0 -5%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  max-height: 400px;
}

@media (min-width: 40em) {
  /* line 184, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad_new .slick-slide {
    opacity: 0.25;
    max-height: 500px;
  }
}

/* line 195, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .slick-slide.slick-center {
  opacity: 1;
  z-index: 2;
}

/* line 200, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .slick-slide img {
  max-height: 440px;
}

@media (min-width: 28.125em) {
  /* line 200, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad_new .slick-slide img {
    max-height: 254px;
  }
}

@media (min-width: 40em) {
  /* line 200, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad_new .slick-slide img {
    max-height: 275px;
  }
}

/* line 213, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new.active {
  height: auto;
}

/* line 216, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new.active .slick-slider {
  height: 100%;
}

/* line 221, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .c-popout-ad_new__slider {
  width: 85%;
  margin: auto;
  margin-top: 0;
}

/* line 231, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .c-popout-ad_new__close {
  position: absolute;
  font-weight: 900;
  font-size: 1.5em;
  color: #000000;
  cursor: pointer;
  right: 0;
  top: 0;
}

/* line 241, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .c-popout-ad_new__mid {
  background: #000000;
  overflow: hidden;
  position: relative;
}

@media (min-width: 28.125em) {
  /* line 241, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad_new .c-popout-ad_new__mid {
    max-height: 65%;
  }
}

/* line 251, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .c-popout-ad_new__footer {
  background: #E1E723;
}

/* line 255, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .o-button--ghost {
  background: #000000;
}

/* line 258, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new .o-button--ghost:hover {
  color: #000000;
  border: 1px solid #000000;
  background: #E1E723;
}

/* line 266, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad_new__mid-wrapper {
  margin: 0 auto;
  position: relative;
  padding: 5.75em 0 2em;
}

@media (min-width: 112.5em) {
  /* line 266, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad_new__mid-wrapper {
    padding: 7.75em 0 2em;
  }
}

/* line 277, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad {
  background-clip: padding-box;
  background-color: #000000;
  border-radius: 24px;
  color: #E1E723;
  display: block;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column nowrap;
  font-size: 0.75rem;
  height: 100%;
  padding: 12px;
  position: relative;
  text-align: center;
}

/* line 292, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad::before {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(225, 231, 35, 0.2)), to(rgba(225, 231, 35, 0.75)));
  background-image: linear-gradient(180deg, rgba(225, 231, 35, 0.2) 0%, rgba(225, 231, 35, 0.75) 100%);
  background-clip: padding-box;
  border-radius: 24px;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

@media (min-width: 28.125em) {
  /* line 277, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad {
    font-size: 0.85rem;
    padding: 24px;
    padding-left: 35%;
    text-align: right;
  }
}

@media (min-width: 40em) {
  /* line 277, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad {
    font-size: 0.75rem;
    padding: 24px 48px;
    padding-left: 20%;
  }
}

@media (min-width: 61.25em) {
  /* line 277, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad {
    font-size: 1rem;
    padding-left: 30%;
  }
}

/* line 330, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad__title,
.c-popout-ad__subtitle {
  font-weight: 500;
  position: relative;
  text-shadow: 0 0 1.5em rgba(0, 0, 0, 0.25), 0 0 1em rgba(0, 0, 0, 0.25), 0 0 1em rgba(0, 0, 0, 0.25), 0 0 0.5em rgba(0, 0, 0, 0.25), 0 0 0.5em rgba(0, 0, 0, 0.25), -1px 1px 1px rgba(0, 0, 0, 0.25), 1px 1px 1px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  z-index: 20;
}

/* line 342, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad__title {
  font-size: 2.125em;
  line-height: 1;
  margin-bottom: 0;
}

@media (min-width: 28.125em) and (max-width: 39.99em) {
  /* line 342, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad__title {
    direction: rtl;
  }
}

/* line 356, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad__subtitle {
  font-size: 1.25em;
}

/* line 361, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad__btn {
  background-color: #000000;
  margin-top: auto;
  position: relative;
  z-index: 20;
}

@media (min-width: 40em) {
  /* line 361, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad__btn {
    align-self: flex-end;
    display: inline-block;
  }
}

/* line 373, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad__img {
  display: none;
  pointer-events: none;
}

@media (min-width: 28.125em) {
  /* line 373, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad__img {
    display: block;
    width: 35%;
    position: absolute;
    bottom: 0;
    left: -5%;
    z-index: 1;
  }
  /* line 386, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad--from-bottom .c-popout-ad__img {
    bottom: 0;
    top: auto;
  }
  /* line 391, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad--from-top .c-popout-ad__img {
    bottom: auto;
    top: 0;
  }
}

/* line 398, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad--static {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 47.27272727%;
  padding-bottom: 0;
}

/* line 405, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad--static .c-popout-ad__link {
  color: transparent;
  font-size: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
}

/* line 416, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad--static::before {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0;
}

/* line 423, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad--static:focus::before, .c-popout-ad--static:hover::before {
  opacity: 0.5;
}

@media (max-width: 28.115em) {
  /* line 398, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad--static {
    padding-top: 108.09859155%;
  }
}

/* line 432, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad--static .c-popout-ad__img {
  position: absolute;
  left: auto;
  z-index: 2;
  display: block;
}

@media (max-width: 28.115em) {
  /* line 432, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad--static .c-popout-ad__img {
    right: -5%;
    bottom: -7.5%;
    width: 65%;
  }
}

@media (min-width: 28.125em) {
  /* line 432, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad--static .c-popout-ad__img {
    height: 80%;
    width: auto;
    right: 2.5%;
    bottom: 2.5%;
  }
}

/* line 452, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad--static.c-popout-ad--one-plus {
  background-image: url("/assets/popout-ads/2021/HOME_ONEplus_background-225.jpg");
}

@media (max-width: 28.115em) {
  /* line 452, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad--static.c-popout-ad--one-plus {
    background-image: url("/assets/popout-ads/2021/HOME_ONEplus_Background_Mobile_V2.jpg");
  }
}

@media (min-width: 28.125em) {
  /* line 459, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad--static.c-popout-ad--one-plus .c-popout-ad__img {
    height: 90%;
  }
}

/* line 466, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
.c-popout-ad--static.c-popout-ad--40v {
  background-image: url("/assets/popout-ads/2021/HOME_50_40V_background.jpg");
}

@media (max-width: 28.115em) {
  /* line 466, app/assets/stylesheets/2018-nextgen-ui/components/_popout-ads.scss */
  .c-popout-ad--static.c-popout-ad--40v {
    background-image: url("/assets/popout-ads/2021/HOME_50_40V_Background_Mobile.jpg");
  }
}

/* ==========================================================================
   #PRODUCT ITEM COMPONENT
============================================================================= */
/* line 5, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column nowrap;
  height: 100%;
  -webkit-box-pack: start;
          justify-content: flex-start;
  font-size: 1rem;
  width: 100%;
  position: relative;
}

/* line 14, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item--register {
  min-height: 467px;
}

/* line 17, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item--register .c-product-item__link {
  padding-bottom: 0;
}

/* line 23, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__link {
  color: inherit;
  -webkit-box-flex: 1;
          flex-grow: 1;
  padding-bottom: 10%;
}

/* line 28, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__link:focus, .c-product-item__link:hover {
  color: #000000;
}

/* line 32, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__link:focus .c-product-item__figure, .c-product-item__link:hover .c-product-item__figure {
  border-color: inherit;
  border-color: #E1E723;
}

/* line 37, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__link:focus .c-product-item__image, .c-product-item__link:hover .c-product-item__image {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

/* line 43, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__figure {
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

/* line 52, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__image {
  padding: 1em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  width: 100%;
}

/* line 59, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__content {
  margin-top: auto;
  padding-bottom: 12px;
  position: relative;
  bottom: 0;
}

/* line 66, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__name {
  font-size: 1em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* line 72, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__model {
  font-weight: 300;
  font-size: 0.875em;
  margin-bottom: 0;
  margin-right: 1em;
}

/* line 79, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__actions {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row nowrap;
  position: absolute;
  right: 0;
  bottom: 12px;
  z-index: 2;
}

/* line 87, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__actions .o-btn {
  color: #50b0f4;
  font-size: 1.5em;
  line-height: 1rem;
}

/* line 92, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__actions .o-btn:focus, .c-product-item__actions .o-btn:hover {
  background-color: #f1f1f1;
}

/* line 99, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__actions .c-contextual-menu__item .o-icon {
  height: 30px;
  width: 30px;
}

/* line 110, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__footer {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #e6e6e6;
  padding-top: 12px;
  /* --- ps mobile button and was price fix 08/18/2020 --- */
  /* --- end updated styles for btn and original price fix --- */
  /* --- overrides for extra ps padding etc on btn 09/09/2020  --- */
  /* --- end overrides 09/09/2020 --- */
}

/* line 117, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__footer--register {
  height: auto;
  -webkit-box-pack: center;
          justify-content: center;
}

@media (max-width: 71.865em) {
  /* line 123, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
  .c-product-item__footer .ps-widget,
  .c-product-item__footer .ps-online-tab,
  .c-product-item__footer .ps-online-sellers,
  .c-product-item__footer .ps-online-seller-select .ps-grocery-seller {
    max-width: 90px !important;
    min-width: unset;
    min-height: 24px !important;
    max-height: 24px !important;
  }
}

/* line 135, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__footer .ps-widget {
  padding: 6px;
}

/* line 139, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__footer button.ps-online-buy-button.unavailable,
.c-product-item__footer button.ps-online-buy-button.available {
  padding-left: 42px !important;
}

@media (max-width: 71.865em) {
  /* line 139, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
  .c-product-item__footer button.ps-online-buy-button.unavailable,
  .c-product-item__footer button.ps-online-buy-button.available {
    font-size: 12px !important;
    font-size: 0.75rem !important;
    line-height: 1.5 !important;
    min-height: 24px !important;
    min-width: 90px !important;
  }
}

/* line 151, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__footer button.ps-online-buy-button.unavailable,
.c-product-item__footer button.ps-online-buy-button.available {
  border: 3px solid #222;
  background-color: #222;
  border-radius: 6px;
  color: #E1E723;
}

/* line 158, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__footer button.ps-online-buy-button.unavailable:focus, .c-product-item__footer button.ps-online-buy-button.unavailable:hover,
.c-product-item__footer button.ps-online-buy-button.available:focus,
.c-product-item__footer button.ps-online-buy-button.available:hover {
  background-color: #E1E723;
  border: 3px solid #E1E723;
  border-radius: 6px;
  color: #222;
}

/* line 167, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__footer button.ps-online-buy-button > span,
.c-product-item__footer button.ps-online-buy-button.available > small,
.c-product-item__footer button.ps-online-buy-button.unavailable > small {
  font-size: 13px !important;
  font-size: 0.8125rem !important;
  line-height: 1.84615 !important;
}

@media (max-width: 71.865em) {
  /* line 167, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
  .c-product-item__footer button.ps-online-buy-button > span,
  .c-product-item__footer button.ps-online-buy-button.available > small,
  .c-product-item__footer button.ps-online-buy-button.unavailable > small {
    font-size: 12px !important;
    font-size: 0.75rem !important;
    line-height: 1.5 !important;
  }
}

/* line 178, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__footer .ps-online-seller-select > div > div > div > span > span.ps-originalprice,
.c-product-item__footer div[data-online-store] > div > div > div > span > span.ps-originalprice,
.c-product-item__footer div.ps-online-seller > div > div > div > span > span.ps-originalprice {
  -webkit-text-decoration-line: line-through !important;
          text-decoration-line: line-through !important;
}

/* line 188, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__footer .ps-online-seller-select {
  padding-right: 0;
}

/* line 192, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__footer .ps-online-seller-select > div {
  padding: 0;
  box-shadow: none;
}

/* line 196, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__footer .ps-online-seller-select > div:hover {
  box-shadow: none;
  background-color: transparent;
}

/* line 202, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__footer .ps-online-seller-select > div > div {
  padding: 0;
  box-shadow: none;
}

/* line 207, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__footer .ps-online-seller-select > div > div > div:first-of-type {
  padding: 0;
}

/* line 211, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__footer .ps-online-seller-select > div > div > div:last-of-type {
  padding: 0;
}

/* line 215, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__footer button.ps-online-buy-button.unavailable {
  padding: 0.5em;
}

/* line 221, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__footer .ps-satellite-price .ps-price {
  font-size: 1em;
  line-height: 1;
}

/* line 226, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__footer .c-product-item__footer-buy-btn {
  position: relative;
  font-size: 12px;
  color: #222222;
  background-color: #e6e6e6;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-right: 6px;
  padding-left: 32px;
  margin-right: 6px;
}

/* line 237, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__footer .c-product-item__footer-buy-btn .icon--home-depot {
  content: url(/assets/fpo/logo-homedepot.svg);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: inline-block;
  height: 100%;
}

/* line 248, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__footer .c-product-item__footer-learn-btn {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  padding: 6px;
  background-color: #666666;
}

/* line 257, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__footer-help-plus {
  height: 24px;
}

@media (max-width: 39.99em) {
  /* line 261, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
  .c-dropdown__cat-select {
    display: none;
  }
}

/* line 267, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
div.ps-wtb-content div.ps-online-tab .ps-no-results {
  display: none !important;
}

/* line 271, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__stars {
  padding-top: 0.25rem;
  font-size: 0;
  line-height: 16px;
  margin-right: 30px;
}

/* line 277, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__stars span {
  display: inline-block;
}

/* line 281, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__stars .c-stars__container {
  position: relative;
}

/* line 285, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__stars .c-stars__indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  white-space: nowrap;
  overflow: hidden;
}

/* line 295, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__stars .c-stars {
  font-size: 14px;
}

/* line 299, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__stars .c-stars__review-count {
  font-size: 12px;
  margin-left: 1em;
  color: #b7cd4c;
}

/* line 304, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__stars .c-stars__review-count > span {
  font-size: 150%;
}

/* line 309, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__stars .c-stars--green {
  color: #b7cd4c;
}

/* line 313, app/assets/stylesheets/2018-nextgen-ui/components/_product-item.scss */
.c-product-item__stars .c-stars--light {
  color: #e6e6e6;
}

/* line 2, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
.c-wishlist-modal {
  position: absolute;
  z-index: 99999;
  visibility: visible;
  display: none;
  top: 0%;
  left: 0;
}

@media (min-width: 61.25em) {
  /* line 2, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
  .c-wishlist-modal {
    top: 10%;
    left: 25vw;
  }
}

/* line 16, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
.c-wishlist-modal__overlay {
  width: 100vw;
  height: 100vh;
  background: black;
  position: fixed;
  top: 0;
  left: 0;
  filter: alpha(opacity=20);
  opacity: 0.4;
}

/* line 27, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
.c-wishlist-modal__main {
  border: 0.5px;
  border-radius: 3px;
  background-color: white;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.5);
  max-height: 99vh;
  width: 95vw;
  overflow: auto;
  padding: 24px;
  z-index: 602;
  position: inherit;
}

@media (min-width: 61.25em) {
  /* line 27, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
  .c-wishlist-modal__main {
    padding: 36px;
    width: 50vw;
  }
}

/* line 45, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
.c-wishlist-modal__content {
  overflow: auto;
}

/* line 49, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
.c-wishlist-modal__close {
  background-image: initial;
  background-position: initial;
  background-repeat: initial;
  cursor: pointer;
  position: absolute;
  right: 24px;
  top: 0;
}

/* line 58, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
.c-wishlist-modal__close .c-wishlist-modal__close-link {
  color: #888888;
  font-size: 2.5em;
  position: absolute;
  right: -16px;
  top: -16px;
}

/* line 67, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
.c-wishlist-modal__header-title {
  color: #888888;
  font-weight: 400;
  font-size: 2em;
  letter-spacing: -1.6px;
  text-align: center;
  text-transform: uppercase;
}

/* line 75, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
.c-wishlist-modal__header-title--blue {
  color: #50b0f4;
}

@media (min-width: 61.25em) {
  /* line 67, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
  .c-wishlist-modal__header-title {
    font-size: 2.8em;
  }
}

/* line 84, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
.c-wishlist-modal__content {
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
}

/* line 89, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
.c-wishlist-modal__content p {
  font-size: 1.3rem;
  color: #222222;
}

/* wishlist modal product actions */
/* line 95, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
.c-wishlist-modal__product-actions {
  text-align: center;
}

/* line 98, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
.c-wishlist-modal__product-actions--flex {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: center;
          justify-content: center;
}

@media (max-width: 39.99em) {
  /* line 98, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
  .c-wishlist-modal__product-actions--flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

/* line 108, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
.c-wishlist-modal__product-actions li {
  margin-left: 0;
  text-align: left;
}

@media (max-width: 39.99em) {
  /* line 108, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
  .c-wishlist-modal__product-actions li {
    text-align: center;
  }
}

/* line 117, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
.c-wishlist-modal__product-actions a {
  font-size: 1.25em;
  font-weight: 300;
  min-width: 158px;
}

/* line 123, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
.c-wishlist-modal__product-actions button {
  font-size: 1.25em;
  font-weight: 300;
  margin-right: 12px;
  min-width: 158px;
}

/* line 131, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
.c-wishlist-modal__wishlists, .c-wishlist-modal__new-list {
  padding: 24px;
}

/* line 135, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
.c-wishlist-modal__wishlists {
  border-right: 2px solid #E1E723;
  border-bottom: 0;
}

@media (max-width: 39.99em) {
  /* line 135, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
  .c-wishlist-modal__wishlists {
    border-right: 0;
    border-bottom: 2px solid #E1E723;
  }
}

/* line 145, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
.c-wishlist-modal__new-list-title {
  font-weight: 300;
  color: #222222;
}

/* line 150, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
.c-wishlist-modal__dropdown {
  margin-left: 0;
}

/* line 154, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
.c-wishlist-modal__dropdown-link {
  color: #222222;
  text-transform: uppercase;
  font-size: 24px;
}

/* line 160, app/assets/stylesheets/2018-nextgen-ui/components/_wishlist-modal.scss */
.o-wishlist-link {
  color: #E1E723;
}

/* ==========================================================================
   #MINIMAL variant of CARD
============================================================================= */
/* line 5, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_card-minimal.scss */
.c-card--minimal {
  box-shadow: none;
  padding: 0;
}

/* line 9, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_card-minimal.scss */
.c-card--minimal .c-card__figure {
  margin-bottom: 6px;
}

/* line 14, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_card-minimal.scss */
.c-card--minimal .c-card__body > :last-child {
  margin-bottom: 0;
}

/* line 19, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_card-minimal.scss */
.c-card--minimal .c-card__title {
  color: #666666;
  font-size: 1.125rem;
  font-weight: 400;
}

/* ==========================================================================
   #FEATURES CAROUSEL
============================================================================= */
/* line 5, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
.c-features-carousel {
  background-color: #ffffff;
  position: relative;
  padding-top: 112px;
}

@media (min-width: 40em) {
  /* line 5, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
  .c-features-carousel {
    padding-top: 96px;
  }
}

@media (min-width: 61.25em) {
  /* line 5, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
  .c-features-carousel {
    padding-top: 48px;
  }
}

/* line 19, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
.c-features-carousel__nav,
.c-features-carousel .slick-dots {
  -webkit-filter: drop-shadow(0 0 0.25em rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 0 0.25em rgba(0, 0, 0, 0.25));
  list-style: none;
  margin: 0;
  text-align: center;
}

/* line 26, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
.c-features-carousel__nav > li,
.c-features-carousel .slick-dots > li {
  display: inline-block;
  padding-left: 6px;
  padding-right: 6px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 1;
}

/* line 34, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
.c-features-carousel__nav > li.slick-active,
.c-features-carousel .slick-dots > li.slick-active {
  z-index: 10;
}

/* line 39, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
.c-features-carousel__nav > li.slick-active > .c-features-carousel__nav-link,
.c-features-carousel .slick-dots > li.slick-active > .c-features-carousel__nav-link {
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
}

@media (min-width: 28.125em) {
  /* line 26, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
  .c-features-carousel__nav > li,
  .c-features-carousel .slick-dots > li {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (min-width: 40em) {
  /* line 26, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
  .c-features-carousel__nav > li,
  .c-features-carousel .slick-dots > li {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 53.125em) {
  /* line 19, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
  .c-features-carousel__nav,
  .c-features-carousel .slick-dots {
    position: absolute;
    text-align: center;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
}

@media (min-width: 53.125em) {
  /* line 65, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
  .c-features-carousel__nav {
    padding-bottom: 12px;
  }
}

@media (max-width: 53.115em) {
  /* line 65, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
  .c-features-carousel__nav {
    position: absolute;
    top: 0;
    width: 100%;
    text-align: center;
  }
}

/* line 78, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
.c-features-carousel__nav-link {
  margin-bottom: 0;
  background-color: #ffffff;
  border: 1px solid #888888;
  border-radius: 50%;
  padding: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

/* line 86, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
.c-features-carousel__nav-link:focus, .c-features-carousel__nav-link:hover {
  background-color: #ffffff;
  outline: none;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

/* line 94, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
.slick-initialized .slick-track .slick-slide.c-features-carousel__feature {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column nowrap;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
          align-items: center;
}

@media (min-width: 53.125em) {
  /* line 94, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
  .slick-initialized .slick-track .slick-slide.c-features-carousel__feature {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    justify-content: space-around;
    padding: 24px;
  }
}

/* line 108, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
.slick-initialized .slick-track .slick-slide.c-features-carousel__feature--standard {
  padding: 0;
}

/* line 112, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
.slick-slide .c-features-carousel__img,
.c-features-carousel__img,
.c-features-carousel__body {
  display: inline-block;
  font-size: 1rem;
  vertical-align: middle;
}

/* line 120, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
.c-features-carousel__body {
  padding-top: 24px;
  width: 100%;
}

@media (min-width: 40em) {
  /* line 120, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
  .c-features-carousel__body {
    padding: 1em 2em;
    width: 80%;
  }
}

@media (min-width: 53.125em) {
  /* line 120, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
  .c-features-carousel__body {
    width: 50%;
  }
}

@media (min-width: 61.25em) {
  /* line 120, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
  .c-features-carousel__body {
    padding-left: 4em;
    padding-right: 4em;
    width: 38%;
  }
}

/* line 145, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
.c-features-carousel__img {
  border: 2px solid #E1E723;
  border-radius: 24px;
  width: 100%;
}

@media (min-width: 40em) {
  /* line 145, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
  .c-features-carousel__img {
    width: 80%;
  }
}

@media (min-width: 53.125em) {
  /* line 145, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
  .c-features-carousel__img {
    width: 50%;
  }
}

@media (min-width: 61.25em) {
  /* line 145, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
  .c-features-carousel__img {
    width: 60%;
  }
}

/* line 163, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
.c-features-carousel__title {
  line-height: 1.2;
  margin-bottom: 1em;
  text-transform: uppercase;
}

@media (min-width: 40em) {
  /* line 163, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
  .c-features-carousel__title {
    font-size: 1.875em;
  }
}

@media (max-width: 28.115em) {
  /* line 163, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
  .c-features-carousel__title {
    text-align: center;
  }
}

/* line 177, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
.c-features-carousel__text {
  font-weight: 500;
  font-size: 1.2rem;
  direction: initial;
  text-align: left;
  padding: 12px;
}

/* line 185, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
.c-features-carousel__feature--standard {
  background-color: #E1E723;
  font-size: 1.2rem;
  font-weight: 200;
  color: #000000;
}

/* line 191, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
.c-features-carousel__feature--standard .c-features-carousel__body {
  width: 100%;
}

@media (min-width: 61.25em) {
  /* line 191, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
  .c-features-carousel__feature--standard .c-features-carousel__body {
    width: 50%;
  }
}

/* line 199, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
.c-features-carousel__feature--standard ul {
  direction: ltr;
}

/* line 203, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
.c-features-carousel__feature--standard .c-features-carousel__img {
  border: 0;
  border-radius: 0;
  width: 100%;
}

@media (min-width: 61.25em) {
  /* line 203, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_features-carousel.scss */
  .c-features-carousel__feature--standard .c-features-carousel__img {
    width: 50%;
  }
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_logoland.scss */
.c-logoland {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
          align-items: stretch;
}

@media (max-width: 500px) {
  /* line 8, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_logoland.scss */
  .c-logoland .c-icon-stack {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
  }
  /* line 12, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_logoland.scss */
  .c-logoland .c-icon-stack a,
  .c-logoland .c-icon-stack p {
    flex-basis: 50%;
  }
}

@media (min-width: 500px) {
  /* line 1, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_logoland.scss */
  .c-logoland {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
}

/* line 24, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_logoland.scss */
.c-icon-stack {
  background-color: #f1f1f1;
  border: 1px solid #fff;
  text-align: center;
  padding: 1.25em;
  width: 30%;
}

@media (max-width: 500px) {
  /* line 24, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_logoland.scss */
  .c-icon-stack {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
}

/* line 37, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_logoland.scss */
.c-icon-stack--four {
  width: 100%;
}

@media (min-width: 767px) {
  /* line 42, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_logoland.scss */
  .c-icon-stack--four {
    width: 20%;
  }
}

@media (max-width: 500px) {
  /* line 47, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_logoland.scss */
  .c-icon-stack__link {
    width: 30%;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

/* line 57, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_logoland.scss */
.c-icon-stack__icon {
  height: 7.8125em;
  margin-bottom: 1.25rem;
}

@media (max-width: 500px) {
  /* line 57, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_logoland.scss */
  .c-icon-stack__icon {
    margin-bottom: 0px;
  }
}

/* line 66, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_logoland.scss */
.c-icon-stack__icon--warranty {
  height: 7.8125em;
}

@media (max-width: 500px) {
  /* line 66, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_logoland.scss */
  .c-icon-stack__icon--warranty {
    margin-bottom: 0px;
  }
}

/* line 75, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_logoland.scss */
.c-icon-stack__body {
  margin-bottom: 0;
}

@media (max-width: 500px) {
  /* line 75, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_logoland.scss */
  .c-icon-stack__body {
    width: 60%;
    padding-left: 16px;
    text-align: left;
  }
}

/* ==========================================================================
   #PIP ENHANCED HEADER
============================================================================= */
@media (min-width: 40em) {
  /* line 5, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_pip-enhanced-header.scss */
  .c-pip-enhanced-header {
    font-size: 1.5rem;
  }
}

/* line 11, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_pip-enhanced-header.scss */
.c-pip-enhanced-header__title,
.c-pip-enhanced-header__caption {
  font-weight: 500;
  margin-bottom: 0;
}

/* line 17, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_pip-enhanced-header.scss */
.c-pip-enhanced-header__title {
  font-size: 1.125em;
}

/* line 21, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_pip-enhanced-header.scss */
.c-pip-enhanced-header__caption {
  font-size: 1.5em;
}

/* ==========================================================================
   #PIP HEADER
============================================================================= */
@media (min-width: 81.25em) {
  /* line 5, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_pip-header.scss */
  .c-pip-header {
    padding-left: 48px;
    padding-right: 48px;
  }
}

/* line 12, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_pip-header.scss */
.c-pip-header__hero {
  margin-bottom: 24px;
}

@media (min-width: 53.125em) {
  /* line 12, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_pip-header.scss */
  .c-pip-header__hero {
    margin-top: -24px;
  }
}

/* ==========================================================================
   #PRODUCT HUD - HEADS-UP DISPLAY
============================================================================= */
/* line 5, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-hud {
  background-color: #000000;
  background-image: url("/assets/product-page/ryobi2020/patterns/dot_knockout@2x.png"), -webkit-gradient(linear, left top, left bottom, from(#666666), to(transparent));
  background-image: url("/assets/product-page/ryobi2020/patterns/dot_knockout@2x.png"), linear-gradient(180deg, #666666, transparent);
  background-clip: padding-box;
  background-repeat: repeat, repeat;
  background-position: 1px 1px, center top;
  background-size: 6px 6px, auto;
  border-radius: 24px;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -moz-crisp-edges;
      image-rendering: pixelated;
  color: #ffffff;
  margin-bottom: 12px;
  padding: 24px;
}

/* line 20, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-hud__name,
.c-product-hud__model {
  color: #ffffff;
  font-weight: 400;
  text-transform: uppercase;
}

/* line 27, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-hud__name {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 6px;
}

/* line 32, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-hud__model {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

/* line 37, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-hud__content-upper {
  margin-bottom: 24px;
}

/* line 41, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-hud__reviews {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row wrap;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
          align-items: baseline;
}

/* line 48, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-hud__reviews.c-inview-navigator__nav__item:hover {
  background-color: transparent !important;
}

/* line 53, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-hud__reviews .c-stars--light {
  color: #ffffff;
}

/* line 57, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-hud__reviews .c-stars--green,
.c-product-hud__reviews .c-stars__review-count {
  color: #E1E723;
}

/* line 62, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-hud__reviews .c-stars__review-count,
.c-product-hud__reviews .c-product-item__stars {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

/* line 67, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-hud__reviews .c-product-item__stars {
  margin-right: 1em;
  padding-top: 0;
}

/* line 102, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-hud__write-review {
  color: #E1E723;
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-family: inherit;
  font-weight: 300;
}

/* line 109, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-hud__write-review:focus, .c-product-hud__write-review:hover {
  color: #ffffff;
}

/* line 116, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-hud__bullets > li + li {
  margin-top: 12px;
}

/* line 121, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-hud__content-lower {
  margin-top: 48px;
}

/* line 124, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-hud__content-lower .ps-price,
.c-product-hud__content-lower .ps-originalprice {
  color: #ffffff !important;
}

/* line 129, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-hud__content-lower .ps-price {
  font-size: 24px !important;
}

/* line 133, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-hud__content-lower .ps-originalprice {
  -webkit-text-decoration-line: line-through !important;
          text-decoration-line: line-through !important;
  -moz-text-decoration-line: line-through !important;
}

/* line 137, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-hud__content-lower .c-add-to-list {
  margin: 0 .75em;
}

/* line 140, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-hud__content-lower .o-addtolist-icon {
  background-image: url("/assets/product-page/ryobi2020/hud/wishlist_add.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

/* line 147, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-hud__content-lower .c-social-links .o-sm-icon {
  color: #E1E723;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

/* line 151, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-hud__content-lower .c-social-links .o-sm-icon:hover, .c-product-hud__content-lower .c-social-links .o-sm-icon:focus {
  color: #888888;
}

/* line 157, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-hud__content-lower .c-social-links .c-social-svg {
  color: currentColor;
  fill: currentColor;
  height: 24px;
  width: 24px;
}

/* line 166, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.o-relative {
  position: relative;
}

/* line 170, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.o-btn-icon {
  height: 26px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 6px;
}

/* line 178, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-hud__actions {
  list-style: none;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row wrap;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
          align-items: center;
  margin: 0;
}

/* buy now button styles */
/* line 190, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-btn {
  -webkit-transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
  background-color: #222222;
  color: #E1E723;
  padding: 6px 18px;
  font: inherit;
  font-size: 1rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  text-transform: uppercase;
  border: 0;
  outline: none;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
  border-radius: 6px;
}

/* line 207, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-btn:hover, .c-btn:focus {
  color: #000000;
  background-color: #E1E723;
}

/* line 213, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-btn[disabled] {
  opacity: 0.5;
  background-color: #aaaaaa;
}

/* line 217, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-btn[disabled]:hover, .c-btn[disabled]:focus {
  background-color: #aaaaaa;
  cursor: default;
}

/* line 224, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-btn.o-hd-icon {
  background-image: url("/assets/logo-homedepot.100x100.png");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  border: 2px solid #E1E723;
  margin-left: 0;
  padding-left: 3.25em;
  padding-right: 12px;
}

@media (max-width: 39.99em) {
  /* line 224, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
  .c-btn.o-hd-icon {
    padding-right: 12px;
    padding-left: 38px;
  }
}

@media (min-width: 40em) {
  /* line 190, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
  .c-btn {
    padding: 6px 24px;
  }
}

@media (max-width: 39.99em) {
  /* line 190, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
  .c-btn {
    font-size: 14px;
  }
}

/* line 249, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-btn--green {
  background-color: #E1E723;
  border: 1px solid #E1E723;
  color: #222222;
}

/* line 254, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-btn--green:hover, .c-btn--green:focus {
  background-color: #000000;
  box-shadow: 0 0 18px rgba(225, 231, 35, 0.36);
  color: #E1E723;
}

/* line 263, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-pre-hud,
.c-product-post-hud {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row nowrap;
  -webkit-box-align: end;
          align-items: end;
}

/* line 270, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-pre-hud {
  -webkit-box-pack: center;
          justify-content: center;
  text-align: center;
}

@media (max-width: 39.99em) {
  /* line 270, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
  .c-product-pre-hud {
    margin-bottom: 24px;
    -webkit-box-pack: center;
            justify-content: center;
    text-align: center;
  }
}

/* line 281, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
.c-product-post-hud {
  -webkit-box-pack: start;
          justify-content: flex-start;
}

@media (max-width: 39.99em) {
  /* line 281, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-hud.scss */
  .c-product-post-hud {
    -webkit-box-pack: center;
            justify-content: center;
    text-align: center;
  }
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-callouts.scss */
.c-product-callouts {
  background-color: #000000;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-top: 1px solid #E1E723;
  border-bottom: 6px solid #E1E723;
  color: #E1E723;
  font-size: 1.25em;
  line-height: 1;
  text-shadow: 0 0 1em rgba(0, 0, 0, 0.9), 0 0 2em rgba(0, 0, 0, 0.9);
  text-align: center;
  /* Padding on bottom of bullets & adjust spacing */
  /* Vertically center bullet text */
}

@media (min-width: 40em) {
  /* line 1, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-callouts.scss */
  .c-product-callouts {
    font-size: 1.5em;
  }
}

@media (min-width: 61.25em) {
  /* line 1, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-callouts.scss */
  .c-product-callouts {
    font-size: 2.25em;
  }
}

/* line 23, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-callouts.scss */
.c-product-callouts .c-product-callouts__smudge {
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.8)));
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  height: 100%;
  width: 100%;
}

/* line 31, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-callouts.scss */
.c-product-callouts .slick-dotted.slick-slider {
  padding-bottom: 16px;
  margin-bottom: 0px;
}

/* line 37, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-callouts.scss */
.c-product-callouts > .slick-slider > .slick-list > .slick-track {
  display: -webkit-box;
  display: flex;
}

/* line 41, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-callouts.scss */
.c-product-callouts > .slick-slider > .slick-list > .slick-track > .slick-slide {
  margin: auto 0px;
}

/* line 45, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-callouts.scss */
.c-product-callouts .slick-slide__inner {
  padding: 48px 15%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column nowrap;
  -webkit-box-pack: center;
          justify-content: center;
  align-content: center;
}

@media (min-width: 61.25em) {
  /* line 45, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-callouts.scss */
  .c-product-callouts .slick-slide__inner {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

/* line 57, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-callouts.scss */
.c-product-callouts .slick-slide__inner *:last-child {
  margin-bottom: 0;
}

/* line 62, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-callouts.scss */
.c-product-callouts .slick-dots {
  bottom: 5px;
}

/* line 66, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-callouts.scss */
.c-product-callouts .slick-dots li button {
  margin-bottom: 0;
}

/* line 70, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-callouts.scss */
.c-product-callouts .slick-dots li button::before {
  color: #E1E723;
  font-size: 30px;
}

/* line 77, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-callouts.scss */
.c-product-callouts--solid-bg {
  background-color: #E1E723;
  background-image: none !important;
  color: #000000;
  font-weight: 500;
  text-shadow: none;
}

/* line 84, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-callouts.scss */
.c-product-callouts--solid-bg .c-product-callouts__smudge {
  background: none;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}

/* line 90, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-callouts.scss */
.c-product-callouts--solid-bg .slick-dots li button::before {
  color: #000000;
}

/* line 96, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-callouts.scss */
.c-product-callouts--description {
  padding: 2em 4em;
  font-size: 1.1rem;
  line-height: 1.5;
  width: 100%;
}

@media (min-width: 61.25em) {
  /* line 96, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-callouts.scss */
  .c-product-callouts--description {
    width: 65%;
  }
}

/* ==========================================================================
   #PRODUCT SECTIONS for PIP
============================================================================= */
/* line 5, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-sections.scss */
.c-product-sections__section {
  padding: 1.5rem 0;
}

/* line 9, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-sections.scss */
.c-product-sections__section--video-gallery {
  padding: 0 0 1.5rem 0;
}

/* line 13, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-sections.scss */
.c-product-sections__title {
  color: #666666;
  font-size: 1.75rem;
  font-weight: 400;
  padding-top: 24px;
  position: relative;
  text-shadow: 0 0 1em #fff;
}

@media (min-width: 61.25em) {
  /* line 13, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-sections.scss */
  .c-product-sections__title {
    font-size: 2.25rem;
  }
}

/* line 25, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-sections.scss */
.c-product-sections__title::after {
  border-bottom: 2px solid #E1E723;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0.3em;
  width: 100%;
  z-index: 1;
}

/* line 36, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-sections.scss */
.c-product-sections__title .title-mask {
  background-color: #fff;
  display: inline-block;
  padding-left: 2px;
  padding-right: 2px;
  position: relative;
  z-index: 2;
}

/* line 47, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-sections.scss */
.c-product-includes__text {
  text-align: center;
  text-transform: uppercase;
}

/* line 52, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-sections.scss */
.c-product-includes__image {
  width: 100%;
  height: auto;
}

/* line 58, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-sections.scss */
.fade-overlay {
  background: none;
  height: 100%;
  text-align: center;
  width: 100%;
  pointer-events: none;
}

/* line 65, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-sections.scss */
.fade-overlay .expand-overlay {
  pointer-events: auto;
}

/* line 70, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-sections.scss */
.c-limited {
  max-height: 26em;
  overflow: hidden;
  position: relative;
}

/* line 75, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-sections.scss */
.c-limited .fade-overlay {
  height: 26em;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, rgba(255, 255, 255, 0)), color-stop(80%, white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 70%, white 80%);
  position: absolute;
  top: 0;
  left: 0;
}

/* line 86, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-sections.scss */
.c-limited .fade-overlay .expand-overlay {
  margin-top: 23em;
}

/* Reviews Section */
/* line 93, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-sections.scss */
.BVreviews-container {
  display: block;
}

/* line 97, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-sections.scss */
#BVRRContainer .bv-action-bar {
  margin-bottom: -55px !important;
}

/* line 100, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-sections.scss */
#BVRRContainer .bv-action-bar .bv-action-bar-header {
  display: none !important;
}

/* line 104, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-sections.scss */
#BVRRContainer .bv-action-bar .bv-write-review-container {
  position: relative !important;
  top: -45px !important;
}

/* line 110, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-sections.scss */
.c-project__review-summary {
  text-align: center;
}

/* line 114, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-sections.scss */
.c-project__review-summary__medium {
  display: none;
  width: 100%;
  position: relative;
  margin: 0 1rem;
  text-align: center;
}

@media (min-width: 540px) {
  /* line 114, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-sections.scss */
  .c-project__review-summary__medium {
    width: auto;
  }
}

/* line 141, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-sections.scss */
.c-project__review-summary__medium .ps-review {
  max-width: none;
}

/* line 146, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-sections.scss */
.article__title {
  text-transform: capitalize;
}

/* ==========================================================================
   #PRODUCT SPECS
============================================================================= */
/* line 5, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-specs.scss */
.c-product-specs-title {
  color: #000000;
  font-size: 1.25em;
  margin-bottom: 0.2em;
  padding-left: 24px;
  padding-right: 24px;
}

/* line 13, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-specs.scss */
.c-product-specs-list {
  -webkit-box-align: stretch;
          align-items: stretch;
  border-top: 1px solid #E1E723;
  clear: both;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.25em;
  width: 100%;
}

/* line 24, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-specs.scss */
.c-product-specs-list__key,
.c-product-specs-list__value {
  border-bottom: 1px solid;
  color: #000000;
  float: left;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.2;
  margin: 0;
  padding: 6px 12px;
}

/* line 36, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-specs.scss */
.c-product-specs-list__key {
  background-color: #E1E723;
  border-bottom-color: #ffffff;
  text-align: left;
  width: 38%;
  width: calc(38% - 1px);
}

@media (min-width: 61.25em) {
  /* line 36, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-specs.scss */
  .c-product-specs-list__key {
    width: 18%;
    width: calc(18% - 1px);
  }
}

/* line 51, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-specs.scss */
.c-product-specs-list__value {
  border-bottom-color: #E1E723;
  width: auto;
  width: 62%;
  -webkit-box-flex: 1;
          flex-grow: 1;
}

@media (min-width: 61.25em) {
  /* line 51, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-specs.scss */
  .c-product-specs-list__value {
    width: 32%;
  }
}

/* ==========================================================================
   #SYSTEM CALLOUT for PIPs
============================================================================= */
/* line 5, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_system-callout.scss */
.c-system-callout {
  background-color: #222222;
  background-color: #231f20;
  color: #E1E723;
  text-align: center;
  padding-bottom: 96px;
  position: relative;
}

/* line 14, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_system-callout.scss */
.c-system-callout__img {
  display: block;
  position: relative;
  width: 100%;
  z-index: 1;
}

/* line 21, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_system-callout.scss */
.c-system-callout__button {
  position: absolute;
  bottom: 48px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}

/* line 29, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_system-callout.scss */
.c-floating-button {
  position: fixed;
  z-index: -999;
  bottom: 1rem;
  right: 0.5rem;
  width: 40px;
  height: 40px;
  background-color: #000000;
  color: #E1E723;
  border-radius: 50%;
  display: none;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

@media (min-width: 40em) {
  /* line 29, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_system-callout.scss */
  .c-floating-button {
    z-index: 1000;
  }
}

/* line 48, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_system-callout.scss */
.c-floating-button__text--return-top {
  color: #E1E723;
  font-weight: 700;
  -webkit-transform: scale(2, 1);
          transform: scale(2, 1);
  line-height: 20%;
}

/* line 5, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs.scss */
.c-tab-bar {
  border-bottom: 1px solid #ffffff;
  position: relative;
}

/* line 10, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs.scss */
.c-tab-bar__crop {
  overflow-x: auto;
  overflow-y: hidden;
  min-width: 100%;
}

/* line 16, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs.scss */
.c-tab-bar__list {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
          justify-content: center;
  min-width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  line-height: 1.6;
}

/* line 26, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs.scss */
.c-tab-bar__list:before, .c-tab-bar__list:after {
  content: " ";
  display: table;
}

@media (max-width: 28.115em) {
  /* line 16, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs.scss */
  .c-tab-bar__list {
    -webkit-box-align: center;
            align-items: center;
  }
}

/* line 37, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs.scss */
.c-tab-bar__item {
  display: -webkit-inline-box;
  display: inline-flex;
  font-size: 0.75rem;
  list-style: none;
  vertical-align: middle;
  position: relative;
}

/* line 44, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs.scss */
.c-tab-bar__item:after {
  content: "|";
  display: -webkit-inline-box;
  display: inline-flex;
  padding-bottom: 2px;
  align-self: center;
}

/* line 51, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs.scss */
.c-tab-bar__item:last-of-type:after {
  content: "";
}

@media (min-width: 61.25em) {
  /* line 37, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs.scss */
  .c-tab-bar__item {
    font-size: 1.2rem;
  }
}

/* line 61, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs.scss */
.c-tab-bar__link {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  color: #50b0f4;
  font-family: "futura-pt", Helvetica, Arial, sans-serif;
  font-weight: 400;
  padding: 0.3125rem;
  text-decoration: none;
  text-transform: uppercase;
  margin: 0;
  cursor: pointer;
  background-color: #ffffff;
  border: none;
  outline: none;
}

/* line 76, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs.scss */
.c-tab-bar__link:hover {
  color: #ffffff;
  background-color: #50b0f4;
}

/* line 81, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs.scss */
.c-tab-bar__link:active, .c-tab-bar__link.is-active {
  color: #888888;
}

/* line 84, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs.scss */
.c-tab-bar__link:active:hover, .c-tab-bar__link.is-active:hover {
  background-color: #ffffff;
  cursor: unset;
}

/* tabs content */
/* line 2, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs-content.scss */
.c-tabs-content {
  margin-top: 24px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 61.25em) {
  /* line 2, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs-content.scss */
  .c-tabs-content {
    width: 70%;
  }
}

/* line 12, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs-content.scss */
.c-tabs-content__item {
  display: none;
}

/* line 15, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs-content.scss */
.c-tabs-content__item.is-active {
  display: block;
}

@media (max-width: 28.115em) {
  /* line 12, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs-content.scss */
  .c-tabs-content__item {
    text-align: center;
  }
}

/* line 23, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs-content.scss */
.c-tabs-content__item a {
  color: #E1E723;
}

/* line 27, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs-content.scss */
.c-tabs-content__item .o-button--ghost {
  background-color: rgba(34, 34, 34, 0.95);
}

/* line 30, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs-content.scss */
.c-tabs-content__item .o-button--ghost:focus, .c-tabs-content__item .o-button--ghost:hover {
  background-color: #E1E723;
}

/* line 36, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs-content.scss */
.c-tabs-content__item .o-layout {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}

@media (max-width: 28.115em) {
  /* line 36, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs-content.scss */
  .c-tabs-content__item .o-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: center;
            align-items: center;
  }
}

/* line 46, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs-content.scss */
.c-tabs-content__item .o-layout--wrap {
  flex-wrap: wrap;
  -webkit-box-pack: start;
          justify-content: flex-start;
}

@media (max-width: 28.115em) {
  /* line 51, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs-content.scss */
  .c-tabs-content__item .o-media {
    margin-bottom: 24px;
  }
}

/* line 57, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs-content.scss */
.c-tabs-content__item .o-media__body {
  color: #888888;
}

/* line 60, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs-content.scss */
.c-tabs-content__item .o-media__body:hover, .c-tabs-content__item .o-media__body:focus {
  color: #222222;
}

@media (min-width: 40em) {
  /* line 66, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_tabs-content.scss */
  .c-tabs-content__item .c-hp-tab-description {
    border-left: 2px solid rgba(230, 230, 230, 0.95);
    padding-left: 24px;
  }
}

/* ==========================================================================
   #PRODTAB COMPONENT
============================================================================= */
/* line 10, app/assets/stylesheets/2018-nextgen-ui/components/_prodtabs.scss */
.c-prodtabs {
  border-bottom: 1px solid #e6e6e6;
  position: relative;
}

@media (max-width: 39.99em) {
  /* line 10, app/assets/stylesheets/2018-nextgen-ui/components/_prodtabs.scss */
  .c-prodtabs {
    margin-left: -24px;
    margin-right: -24px;
    /*html*/
  }
  /* line 19, app/assets/stylesheets/2018-nextgen-ui/components/_prodtabs.scss */
  .flexbox .c-prodtabs::before, .flexbox .c-prodtabs::after {
    content: '';
    pointer-events: none;
    width: 12px;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 10;
  }
  /* line 30, app/assets/stylesheets/2018-nextgen-ui/components/_prodtabs.scss */
  .flexbox .c-prodtabs::before {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(34, 34, 34, 0)), color-stop(75%, rgba(34, 34, 34, 0.325)), to(rgba(34, 34, 34, 0.65)));
    background-image: linear-gradient(to left, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.325) 75%, rgba(34, 34, 34, 0.65));
    left: 0;
  }
  /* line 35, app/assets/stylesheets/2018-nextgen-ui/components/_prodtabs.scss */
  .flexbox .c-prodtabs::after {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(34, 34, 34, 0)), color-stop(75%, rgba(34, 34, 34, 0.325)), to(rgba(34, 34, 34, 0.65)));
    background-image: linear-gradient(to right, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.325) 75%, rgba(34, 34, 34, 0.65));
    right: 0;
  }
}

/* line 43, app/assets/stylesheets/2018-nextgen-ui/components/_prodtabs.scss */
.c-prodtabs__aperture {
  overflow-x: auto;
  overflow-y: hidden;
  min-width: 100%;
}

/* line 49, app/assets/stylesheets/2018-nextgen-ui/components/_prodtabs.scss */
.c-prodtabs__list {
  font-size: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
          justify-content: start;
  min-width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}

@media (min-width: 40em) {
  /* line 49, app/assets/stylesheets/2018-nextgen-ui/components/_prodtabs.scss */
  .c-prodtabs__list {
    -webkit-box-pack: center;
            justify-content: center;
  }
}

/* line 64, app/assets/stylesheets/2018-nextgen-ui/components/_prodtabs.scss */
.c-prodtabs__item {
  background: #ffffff;
  display: inline-block;
  -webkit-box-flex: 1;
          flex-grow: 1;
  font-size: 0.75rem;
  list-style: none;
  vertical-align: middle;
  max-width: 240px;
  position: relative;
  z-index: 1;
}

@media (min-width: 61.25em) {
  /* line 64, app/assets/stylesheets/2018-nextgen-ui/components/_prodtabs.scss */
  .c-prodtabs__item {
    font-size: 1rem;
  }
}

/* line 80, app/assets/stylesheets/2018-nextgen-ui/components/_prodtabs.scss */
.c-prodtabs__item:first-child, .c-prodtabs__item:last-child {
  z-index: 20;
}

/* line 85, app/assets/stylesheets/2018-nextgen-ui/components/_prodtabs.scss */
.c-prodtabs__item:first-child {
  background: linear-gradient(to right, white 0%, white 12px, rgba(255, 255, 255, 0) 12px, rgba(255, 255, 255, 0));
}

/* line 89, app/assets/stylesheets/2018-nextgen-ui/components/_prodtabs.scss */
.c-prodtabs__item:last-child {
  background: linear-gradient(to left, white 0%, white 12px, rgba(255, 255, 255, 0) 12px, rgba(255, 255, 255, 0));
}

/* line 94, app/assets/stylesheets/2018-nextgen-ui/components/_prodtabs.scss */
.c-prodtabs__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  /* [1] */
  vertical-align: middle;
  /* [2] */
  color: #666666;
  font-family: "futura-pt", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  /* [4] */
  text-decoration: none;
  text-transform: uppercase;
  margin: 0;
  /* [4] */
  cursor: pointer;
  /* [5] */
  padding: 12px 24px;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
  background-color: transparent;
  border-radius: 0;
  border: none;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  position: relative;
}

/* line 118, app/assets/stylesheets/2018-nextgen-ui/components/_prodtabs.scss */
.c-prodtabs__button::after {
  background-color: #E1E723;
  content: '';
  display: block;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
  height: 5px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

/* line 133, app/assets/stylesheets/2018-nextgen-ui/components/_prodtabs.scss */
.c-prodtabs__button:focus::after, .c-prodtabs__button:hover::after {
  opacity: 0.5;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

/* line 141, app/assets/stylesheets/2018-nextgen-ui/components/_prodtabs.scss */
.c-prodtabs__button:active::after, .c-prodtabs__button.is-active::after {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* line 10, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid {
  font-size: 0;
  width: 100%;
  padding-top: 100%;
  position: relative;
}

@media (max-width: 53.115em) {
  /* line 10, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
  .c-promo-grid {
    display: none;
  }
}

/* line 21, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid__item {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 30, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid__link,
.c-promo-grid__img {
  display: block;
  width: 100%;
}

/* line 36, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid__link {
  height: 100%;
}

/* line 46, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid--layout-0 .c-promo-grid__item {
  height: 100%;
  width: 100%;
}

/* line 56, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid--layout-1 .c-promo-grid__item {
  height: 100%;
  width: 47%;
}

/* line 60, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid--layout-1 .c-promo-grid__item--1 {
  left: 0;
}

/* line 65, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid--layout-1 .c-promo-grid__item--2 {
  left: auto;
  right: 0;
}

/* line 78, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid--layout-2 .c-promo-grid__item--1 {
  height: 47%;
  width: 47%;
  top: 0;
  left: 0;
}

/* line 85, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid--layout-2 .c-promo-grid__item--2 {
  height: 100%;
  width: 47%;
  left: auto;
  right: 0;
}

/* line 92, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid--layout-2 .c-promo-grid__item--3 {
  height: 47%;
  width: 47%;
  top: auto;
  bottom: 0;
  left: 0;
}

/* line 107, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid--layout-3 .c-promo-grid__item--1 {
  height: 47%;
  width: 47%;
  left: 0;
  top: 0;
}

/* line 114, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid--layout-3 .c-promo-grid__item--2 {
  height: 47%;
  width: 47%;
  top: 0;
  left: auto;
  right: 0;
}

/* line 122, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid--layout-3 .c-promo-grid__item--3 {
  height: 47%;
  width: 100%;
  top: auto;
  bottom: 0;
  left: 0;
}

/* line 136, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid--layout-4 .c-promo-grid__item {
  height: 47%;
  width: 47%;
}

/* line 140, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid--layout-4 .c-promo-grid__item--1 {
  left: 0;
  top: 0;
}

/* line 145, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid--layout-4 .c-promo-grid__item--2 {
  top: 0;
  left: auto;
  right: 0;
}

/* line 151, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid--layout-4 .c-promo-grid__item--3 {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
}

/* line 158, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid--layout-4 .c-promo-grid__item--4 {
  top: auto;
  bottom: 0;
  left: 0;
}

/* line 171, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid--layout-5 .c-promo-grid__item--1 {
  height: 100%;
  width: 47%;
  left: 0;
  top: 0;
}

/* line 178, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid--layout-5 .c-promo-grid__item--2 {
  height: 47%;
  width: 47%;
  top: 0;
  left: auto;
  right: 0;
}

/* line 186, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid--layout-5 .c-promo-grid__item--3 {
  height: 47%;
  width: 47%;
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
}

/* line 201, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid--layout-6 .c-promo-grid__item {
  height: 47%;
  width: 100%;
}

/* line 205, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid--layout-6 .c-promo-grid__item--1 {
  left: 0;
  top: 0;
}

/* line 210, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid--layout-6 .c-promo-grid__item--2 {
  top: auto;
  left: 0;
  bottom: 0;
}

/* line 223, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid--layout-7 .c-promo-grid__item--1 {
  height: 47%;
  width: 100%;
  top: 0;
  left: 0;
}

/* line 230, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid--layout-7 .c-promo-grid__item--2 {
  height: 47%;
  width: 47%;
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
}

/* line 239, app/assets/stylesheets/2018-nextgen-ui/components/_promo-grid.scss */
.c-promo-grid--layout-7 .c-promo-grid__item--3 {
  height: 47%;
  width: 47%;
  top: auto;
  left: 0;
  bottom: 0;
}

/* ==========================================================================
   #SPEC LIST COMPONENT
============================================================================= */
/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
.c-project-details__header {
  position: relative;
}

/* line 4, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
.c-project-details__header .o-icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/* line 12, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
.c-project-details__header .c-project-details__like-count {
  font-weight: bold;
  position: absolute;
  top: 0;
  right: 2rem;
  bottom: 0;
  margin: auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 0.75rem;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  max-width: 100%;
  max-height: 100%;
}

/* line 31, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
.c-project-details__title {
  width: calc(100% - 40px);
  line-height: 1;
}

/* line 37, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
.c-project-details__reply .js-comment-reply {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.25s;
  transition: max-height 0.25s;
}

/* line 43, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
.c-project-details__reply .c-reply-visible {
  display: none;
}

/* line 47, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
.c-project-details__reply .c-reply-visible:checked ~ .js-comment-reply {
  max-height: 15em;
}

/* line 51, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
.c-project-details__reply .c-reply-visible:checked ~ .c-reply-show {
  display: none;
}

/* line 59, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
.c-project-details__comment .c-content {
  display: table;
  width: 100%;
}

/* line 64, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
.c-project-details__comment .o-icon {
  height: 1.5em;
  width: 1.5em;
  padding: .1rem 0;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

/* line 75, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
.c-project-details__comment .o-icon:hover {
  opacity: 0.75;
}

/* line 79, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
.c-project-details__comment .o-icon--edit {
  background-image: url("/assets/SVG/edit-d8e9c47900cf14be0ebbf5690565a3e1c258690efcba0ee834c175ec8fab35c9.svg");
}

/* line 83, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
.c-project-details__comment .o-icon--delete {
  background-image: url("/assets/SVG/trash-4c3a0fe688bea540a734a00eaedeb010f7a94dd9a41b00f866c94a93a5fe726b.svg");
}

@supports ((-webkit-mask-image: none) or (mask-image: none)) and (not (-ms-ime-align: auto)) {
  /* line 89, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
  .c-project-details__comment .o-icon {
    opacity: 1;
    background-image: none;
    background-color: #50B0F4;
    -webkit-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
  }
  /* line 96, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
  .c-project-details__comment .o-icon:hover {
    background-color: #B7CD4C;
  }
  /* line 100, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
  .c-project-details__comment .o-icon--edit {
    -webkit-mask-image: url("/assets/SVG/edit-d8e9c47900cf14be0ebbf5690565a3e1c258690efcba0ee834c175ec8fab35c9.svg");
            mask-image: url("/assets/SVG/edit-d8e9c47900cf14be0ebbf5690565a3e1c258690efcba0ee834c175ec8fab35c9.svg");
  }
  /* line 104, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
  .c-project-details__comment .o-icon--delete {
    -webkit-mask-image: url("/assets/SVG/trash-4c3a0fe688bea540a734a00eaedeb010f7a94dd9a41b00f866c94a93a5fe726b.svg");
            mask-image: url("/assets/SVG/trash-4c3a0fe688bea540a734a00eaedeb010f7a94dd9a41b00f866c94a93a5fe726b.svg");
  }
}

/* line 109, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
.c-project-details__comment .c-comment-body, .c-project-details__comment .o-input__field {
  display: table-cell;
  width: 100%;
}

/* line 114, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
.c-project-details__comment .o-editing {
  display: none;
}

/* line 117, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
.c-project-details__comment .o-editing ~ * .o-input__field {
  display: none;
}

/* line 121, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
.c-project-details__comment .o-editing ~ .o-form-controls {
  display: none;
}

/* line 126, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
.c-project-details__comment .o-editing:checked ~ .c-content {
  margin: 24px 0 .25em;
}

/* line 129, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
.c-project-details__comment .o-editing:checked ~ .c-content .o-input__field {
  display: table-cell;
}

/* line 133, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
.c-project-details__comment .o-editing:checked ~ .c-content .c-comment-body {
  display: none;
}

/* line 138, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
.c-project-details__comment .o-editing:checked ~ .o-heading {
  display: none;
}

/* line 142, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
.c-project-details__comment .o-editing:checked ~ .o-form-controls {
  display: block;
}

/* line 148, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_project-details.scss */
.c-project-details__comment .o-edit-controls {
  display: table-cell;
  white-space: nowrap;
  padding-left: .75em;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_footer.scss */
.c-footer {
  background-color: #444444;
  padding: 2rem 1rem;
}

@media (min-width: 53.125em) {
  /* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_footer.scss */
  .c-footer {
    padding: 3rem 2rem;
  }
}

/* line 9, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_footer.scss */
.c-footer .o-list-inline__item {
  margin-bottom: .5rem;
}

/* line 13, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_footer.scss */
.c-footer .c-subscribe-form {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

/* line 19, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_footer.scss */
.c-footer__section {
  text-align: center;
}

@media (min-width: 53.125em) {
  /* line 23, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_footer.scss */
  .c-footer__section--left {
    text-align: left;
  }
}

@media (min-width: 53.125em) {
  /* line 29, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_footer.scss */
  .c-footer__section--right {
    text-align: right;
  }
}

/* line 35, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_footer.scss */
.c-footer__legal {
  max-width: 365px;
  margin: 2rem 0;
  margin-bottom: 2.5rem;
  display: inline-block;
}

/* line 42, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_footer.scss */
.c-footer__contact {
  margin-bottom: .75rem;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_subscribe-form.scss */
.c-subscribe-form {
  display: inline-block;
  width: 100%;
  max-width: 400px;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_tab-nav.scss */
.c-tab-nav {
  border-bottom: 1px solid #e6e6e6;
  position: relative;
  top: -6px;
  left: 0;
  width: 100%;
  margin-bottom: 2rem;
}

/* line 10, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_tab-nav.scss */
.c-tab-nav__tab {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  -webkit-transition: background-color 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background-color 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  line-height: 1;
  display: block;
  padding: 1.2rem 0;
  position: relative;
}

/* line 17, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_tab-nav.scss */
.c-tab-nav__tab:hover {
  background-color: rgba(225, 231, 35, 0.35);
}

/* line 21, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_tab-nav.scss */
.c-tab-nav__tab .o-icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

/* line 25, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_tab-nav.scss */
.c-tab-nav__tab.is-active {
  background-color: #E1E723;
}

/* line 28, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_tab-nav.scss */
.c-tab-nav__tab.is-active .o-svg-image {
  display: block;
}

/* line 33, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_tab-nav.scss */
.c-tab-nav__tab .o-svg-image {
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  height: 40px;
  display: none;
}

/* line 41, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_tab-nav.scss */
.c-tab-nav__tab .o-svg-image svg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  fill: #E1E723;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_page-body.scss */
.c-page-body {
  background-color: #f7f7f7;
  padding-bottom: 1rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 53.125em) {
  /* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_page-body.scss */
  .c-page-body {
    padding: 1rem 0;
  }
}

@media (min-width: 61.25em) {
  /* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_page-body.scss */
  .c-page-body {
    padding: 3rem 0;
  }
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader {
  width: 100%;
}

/* line 5, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__box {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  /* easeOutQuart */
  -webkit-transition: border 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),  box-shadow 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: border 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),  box-shadow 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  border: 2px solid #e6e6e6;
  padding: 1rem;
  cursor: pointer;
}

/* line 12, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__box svg {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

/* line 16, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__box.cant-upload {
  opacity: .5;
}

/* line 22, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__box:not(.cant-upload):hover, .c-media-uploader__box:not(.cant-upload).is-active {
  box-shadow: 0 0 8px 0 rgba(80, 176, 244, 0.8);
  border-color: rgba(80, 176, 244, 0.8);
  background-color: rgba(80, 176, 244, 0.05);
}

/* line 27, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__box:not(.cant-upload):hover .o-icon svg, .c-media-uploader__box:not(.cant-upload).is-active .o-icon svg {
  -webkit-transform: scale(1);
          transform: scale(1);
  fill: #50b0f4;
}

/* line 35, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__file-input {
  visibility: hidden;
  width: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* line 44, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__list {
  list-style: none;
  margin: 0;
}

/* line 49, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__list-item {
  font-size: 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #e6e6e6;
  border-top: 1px solid transparent;
  padding: .5rem 0;
  position: relative;
}

@media (min-width: 28.125em) {
  /* line 49, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
  .c-media-uploader__list-item {
    padding: 1rem 0;
  }
}

/* line 62, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__list-item:first-child {
  padding-top: 0;
}

/* line 67, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__list-item__section {
  font-size: 1rem;
  display: inline-block;
  vertical-align: middle;
}

/* line 73, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__list-item--reorder, .c-media-uploader__list-item--image {
  width: 50px;
}

/* line 77, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__list-item--image, .c-media-uploader__list-item--video, .c-media-uploader__list-item--poster {
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-size: cover;
  background-position: center center;
  background-color: #e6e6e6;
  position: relative;
}

@media (min-width: 40em) {
  /* line 77, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
  .c-media-uploader__list-item--image, .c-media-uploader__list-item--video, .c-media-uploader__list-item--poster {
    width: 100px;
    height: 100px;
  }
}

/* line 92, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__list-item--name {
  width: calc(100% - 200px);
  text-align: left;
  padding: 0 .5rem;
}

@media (min-width: 40em) {
  /* line 92, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
  .c-media-uploader__list-item--name {
    width: calc(100% - 250px);
  }
}

/* line 102, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__list-item-placeholder {
  height: 68px;
  background-color: rgba(80, 176, 244, 0.15);
}

@media (min-width: 40em) {
  /* line 102, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
  .c-media-uploader__list-item-placeholder {
    height: 134px;
  }
}

/* line 113, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__progress {
  height: 50px;
  background-color: #e6e6e6;
}

/* line 118, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__progress__meter {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  -webkit-transition: width 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: width 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 0%;
  height: 100%;
  background-color: #50b0f4;
}

/* line 125, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__step-placeholder {
  height: 100px;
  background-color: rgba(80, 176, 244, 0.15);
}

/* line 130, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__steps {
  font-size: 0;
}

/* line 134, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__steps__step {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid transparent;
  padding: 1rem 0;
}

/* line 139, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__steps__step:last-child {
  border-bottom: 1px solid #e6e6e6;
}

/* line 144, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__steps__step-handle {
  width: 50px;
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  text-align: center;
}

/* line 152, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__steps__step-contents {
  width: calc(100% - 100px);
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
}

/* line 158, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__steps__step-contents img {
  max-width: 200px;
}

/* line 163, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__steps__step-delete {
  width: 50px;
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  text-align: center;
}

/* line 171, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__list-item--video-text {
  width: calc(100% - 166px);
  text-align: left;
  padding: 0 .5rem;
}

@media (min-width: 40em) {
  /* line 171, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
  .c-media-uploader__list-item--video-text {
    width: calc(100% - 266px);
  }
}

/* line 181, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__list-item--type-video {
  margin-bottom: 1.5rem;
}

/* line 187, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__list-item--poster:hover .o-icon, .c-media-uploader__list-item--video:hover .o-icon {
  background-color: #E1E723;
}

/* line 190, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__list-item--poster:hover .o-icon svg, .c-media-uploader__list-item--video:hover .o-icon svg {
  fill: #000000;
}

/* line 195, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__list-item--poster input, .c-media-uploader__list-item--video input {
  visibility: hidden;
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* line 204, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-uploader.scss */
.c-media-uploader__list-item--poster {
  margin-left: 1rem;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_operable-list.scss */
.c-operable-list {
  list-style: none;
  margin: 0;
}

/* line 6, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_operable-list.scss */
.c-operable-list__item {
  font-size: 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #e6e6e6;
  border-top: 1px solid transparent;
  padding: .5rem 0;
  position: relative;
}

@media (min-width: 28.125em) {
  /* line 6, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_operable-list.scss */
  .c-operable-list__item {
    padding: 1rem 0;
  }
}

/* line 19, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_operable-list.scss */
.c-operable-list__item:first-child {
  border-top: 1px solid #e6e6e6;
}

/* line 24, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_operable-list.scss */
.c-operable-list__item__section {
  font-size: 1rem;
  display: inline-block;
  vertical-align: middle;
}

/* line 30, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_operable-list.scss */
.c-operable-list__item__section--action {
  width: 50px;
  text-align: center;
}

/* line 35, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_operable-list.scss */
.c-operable-list__item__section--media {
  height: 50px;
  cursor: pointer;
  background-size: cover;
  background-position: center center;
}

@media (min-width: 40em) {
  /* line 35, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_operable-list.scss */
  .c-operable-list__item__section--media {
    width: 100px;
    height: 100px;
  }
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-info.scss */
.c-media-info {
  position: relative;
}

/* line 5, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-info.scss */
.c-media-info__info {
  width: 100%;
  padding: .5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.75);
  font-size: 1.5rem;
}

@media (min-width: 61.25em) {
  /* line 5, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-info.scss */
  .c-media-info__info {
    font-size: 2rem;
    padding: 1rem;
  }
}

/* line 19, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_media-info.scss */
.c-media-info__info .o-heading {
  font-size: inherit;
}

/* line 5, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-header.scss */
.c-profile-header__background {
  width: 100%;
  height: 250px;
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 61.25em) {
  /* line 5, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-header.scss */
  .c-profile-header__background {
    height: 400px;
  }
}

/* line 18, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-header.scss */
.c-profile-header__avatar {
  width: 200px;
  height: 200px;
  position: absolute;
  padding: 1rem;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
}

@media (min-width: 40em) {
  /* line 18, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-header.scss */
  .c-profile-header__avatar {
    top: auto;
    right: auto;
    bottom: -40px;
    left: 20px;
  }
}

@media (min-width: 53.125em) {
  /* line 18, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-header.scss */
  .c-profile-header__avatar {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}

@media (min-width: 61.25em) {
  /* line 18, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-header.scss */
  .c-profile-header__avatar {
    top: auto;
    right: auto;
    bottom: -40px;
    left: 20px;
  }
}

/* line 53, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-header.scss */
.c-profile-header__action {
  text-align: center;
}

@media (min-width: 40em) {
  /* line 53, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-header.scss */
  .c-profile-header__action {
    text-align: right;
  }
}

@media (min-width: 53.125em) {
  /* line 53, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-header.scss */
  .c-profile-header__action {
    text-align: center;
  }
}

@media (min-width: 61.25em) {
  /* line 53, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-header.scss */
  .c-profile-header__action {
    text-align: right;
  }
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_activity.scss */
.c-activity {
  font-size: 0;
  position: relative;
  text-align: left;
  padding: 1rem 0;
}

/* line 7, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_activity.scss */
.c-activity-list .c-activity {
  border-bottom: 2px solid #e6e6e6;
}

/* line 11, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_activity.scss */
.c-activity:first-child {
  padding-top: 0;
}

/* line 15, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_activity.scss */
.c-activity:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

/* line 21, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_activity.scss */
.c-activity--light {
  color: #ffffff;
}

/* line 24, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_activity.scss */
.c-activity--light .o-heading {
  color: #ffffff;
}

/* line 28, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_activity.scss */
.c-activity-list .c-activity--light {
  border-bottom: 2px solid #222222;
}

/* line 32, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_activity.scss */
.c-activity--light:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

/* line 38, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_activity.scss */
.c-activity__media,
.c-activity__content {
  font-size: 1rem;
  display: inline-block;
  vertical-align: top;
}

/* line 45, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_activity.scss */
.c-activity__media {
  width: 70px;
  height: 70px;
  background-size: cover;
  background-position: center center;
}

@media (min-width: 61.25em) {
  /* line 45, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_activity.scss */
  .c-activity__media {
    width: 100px;
    height: 100px;
  }
}

/* line 56, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_activity.scss */
.c-activity--small .c-activity__media {
  width: 50px;
  height: 50px;
}

/* line 62, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_activity.scss */
.c-activity__content {
  padding-left: 1rem;
  width: calc(100% - 70px);
}

@media (min-width: 61.25em) {
  /* line 62, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_activity.scss */
  .c-activity__content {
    width: calc(100% - 100px);
  }
}

/* line 70, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_activity.scss */
.c-activity--small .c-activity__content {
  width: calc(100% - 50px);
}

/* line 74, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_activity.scss */
.c-activity__content p {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
}

/* line 81, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_activity.scss */
.c-activity__content a {
  color: #50b0f4;
  text-decoration: none;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 10px;
}

/* line 90, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_activity.scss */
.c-activity__content a:hover {
  color: #E1E723;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
.c-profile-nav {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  -webkit-transition: 0.35s height cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.35s height cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: #e6e6e6;
  margin-top: 1rem;
  position: relative;
}

@media (max-width: 39.99em) {
  /* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
  .c-profile-nav {
    height: 70px;
    overflow: hidden;
  }
  /* line 11, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
  .c-profile-nav.is-open {
    height: 350px;
  }
  /* line 14, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
  .c-profile-nav.is-open .o-icon--caret--down {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  /* line 17, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
  .c-profile-nav.is-open .o-icon--caret--down svg {
    fill: transparent;
  }
}

/* line 24, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
.c-profile-nav .o-icon--caret--down {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  -webkit-transition: 0.35s -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.35s -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.35s transform cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.35s transform cubic-bezier(0.165, 0.84, 0.44, 1), 0.35s -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
  position: absolute;
  top: 22px;
  right: 10px;
  width: 30px;
  height: 30px;
  pointer-events: none;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* line 34, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
.c-profile-nav .o-icon--caret--down svg {
  fill: #E1E723;
}

@media (min-width: 40em) {
  /* line 24, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
  .c-profile-nav .o-icon--caret--down {
    display: none;
  }
}

/* line 44, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
.c-profile-nav__items {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

/* line 49, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
.c-profile-nav__item {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  /* easeOutQuart */
  -webkit-transition: 0.35s background-color cubic-bezier(0.165, 0.84, 0.44, 1),  0.35s top cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.35s background-color cubic-bezier(0.165, 0.84, 0.44, 1),  0.35s top cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: .5rem;
  text-align: center;
  -webkit-box-flex: 1;
          flex-grow: 1;
  cursor: pointer;
  width: 100%;
  position: relative;
}

/* line 58, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
.c-profile-nav__item:last-child {
  border-bottom: 0;
}

/* line 62, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
.c-profile-nav__item:hover {
  background-color: #f1f1f1;
}

/* line 66, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
.c-profile-nav__item.is-active {
  background-color: #444444;
}

/* line 69, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
.c-profile-nav__item.is-active .o-heading {
  color: #E1E723;
}

/* line 73, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
.c-profile-nav__item.is-active svg {
  fill: #E1E723;
}

/* line 78, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
.c-profile-nav__item.on-bottom-row {
  width: 100%;
}

@media (max-width: 39.99em) {
  /* line 49, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
  .c-profile-nav__item {
    border-bottom: 1px dotted #aaaaaa;
  }
  /* line 85, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
  .c-profile-nav__item.is-active {
    border-bottom: 0;
  }
}

@media (min-width: 40em) {
  /* line 49, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
  .c-profile-nav__item {
    width: 20%;
    border-bottom: 0;
    border-right: 1px dotted #aaaaaa;
    position: static;
  }
  /* line 96, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
  .c-profile-nav__item:last-child {
    border-right: 0;
  }
  /* line 100, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
  .c-profile-nav__item.on-bottom-row {
    width: 20%;
  }
}

@media (min-width: 53.125em) {
  /* line 49, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
  .c-profile-nav__item {
    width: 33%;
  }
  /* line 108, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
  .c-profile-nav__item:last-child, .c-profile-nav__item:nth-child(3) {
    border-right: 0;
  }
  /* line 112, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
  .c-profile-nav__item.on-bottom-row {
    width: 50%;
    border-top: 1px dotted #aaaaaa;
  }
}

@media (min-width: 61.25em) {
  /* line 49, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
  .c-profile-nav__item {
    width: 20%;
  }
  /* line 121, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
  .c-profile-nav__item:nth-child(3) {
    border-right: 1px dotted #aaaaaa;
  }
  /* line 125, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
  .c-profile-nav__item.on-bottom-row {
    width: 20%;
    border-top: 0;
  }
}

/* line 131, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
.c-profile-nav__item .o-heading {
  font-size: .75rem;
}

@media (min-width: 61.25em) {
  /* line 131, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_profile-nav.scss */
  .c-profile-nav__item .o-heading {
    font-size: 1rem;
  }
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flash-message.scss */
.c-flash-message {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  /* easeOutQuart */
  -webkit-transition: 0.35s opacity cubic-bezier(0.165, 0.84, 0.44, 1),  0.35s -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.35s opacity cubic-bezier(0.165, 0.84, 0.44, 1),  0.35s -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.35s transform cubic-bezier(0.165, 0.84, 0.44, 1),  0.35s opacity cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.35s transform cubic-bezier(0.165, 0.84, 0.44, 1),  0.35s opacity cubic-bezier(0.165, 0.84, 0.44, 1),  0.35s -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1);
  position: fixed;
  -webkit-transform: translateY(-200px);
          transform: translateY(-200px);
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 5;
  opacity: 0;
}

/* line 12, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flash-message.scss */
.c-flash-message.is-active {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 1;
}

/* line 17, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flash-message.scss */
.c-flash-message .o-icon {
  display: none;
}

/* line 21, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flash-message.scss */
.c-flash-message.c-flash-message--success .o-icon--check {
  display: inline-block;
}

/* line 24, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flash-message.scss */
.c-flash-message.c-flash-message--success .o-icon--check svg {
  fill: #ffffff;
}

/* line 29, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flash-message.scss */
.c-flash-message.c-flash-message--error .o-icon--error {
  display: inline-block;
}

/* line 32, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flash-message.scss */
.c-flash-message.c-flash-message--error .o-icon--error svg {
  fill: #ffffff;
}

/* line 38, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flash-message.scss */
.c-flash-message__message-wrapper {
  background-color: rgba(80, 176, 244, 0.5);
  padding: .25rem;
  position: relative;
  display: inline-block;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.6);
}

/* line 45, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flash-message.scss */
.c-flash-message--success .c-flash-message__message-wrapper {
  background-color: rgba(80, 176, 244, 0.5);
}

/* line 49, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flash-message.scss */
.c-flash-message--error .c-flash-message__message-wrapper {
  background-color: rgba(238, 49, 36, 0.5);
}

/* line 54, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flash-message.scss */
.c-flash-message__message {
  position: relative;
  display: inline-block;
  text-align: center;
  background-color: #50b0f4;
  width: 100%;
  color: #ffffff;
  padding: .5rem 2rem;
  max-width: 600px;
}

@media (min-width: 28.125em) {
  /* line 54, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flash-message.scss */
  .c-flash-message__message {
    width: auto;
  }
}

/* line 68, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flash-message.scss */
.c-flash-message--success .c-flash-message__message {
  background-color: #50b0f4;
  color: #ffffff;
}

/* line 73, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flash-message.scss */
.c-flash-message--error .c-flash-message__message {
  background-color: #ee3124;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_filter-panel.scss */
.c-filter-panel-wrapper {
  position: relative;
}

/* line 5, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_filter-panel.scss */
.c-filter-panel {
  text-align: left;
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 300;
  min-width: 10em;
}

/* line 14, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_filter-panel.scss */
.c-filter-panel.is-active {
  display: inline-block;
}

/* line 19, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_filter-panel.scss */
.c-filter-panel__header {
  background-color: #f1f1f1;
  text-align: right;
}

/* line 24, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_filter-panel.scss */
.c-filter-panel__item {
  -webkit-transition: .2s all ease;
  transition: .2s all ease;
}

/* line 27, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_filter-panel.scss */
.c-filter-panel__item:hover {
  background-color: #f1f1f1;
  cursor: pointer;
}

/* line 32, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_filter-panel.scss */
.c-filter-panel__item label:hover {
  cursor: pointer;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_contextual-menu.scss */
.c-contextual-menu {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  /* easeOutQuart */
  -webkit-transition: 0.25s opacity cubic-bezier(0.165, 0.84, 0.44, 1),  0.25s visibility cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.25s opacity cubic-bezier(0.165, 0.84, 0.44, 1),  0.25s visibility cubic-bezier(0.165, 0.84, 0.44, 1);
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.82);
  margin-bottom: 0;
  padding: .75rem;
  z-index: 10;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  text-align: left;
}

/* line 15, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_contextual-menu.scss */
.c-contextual-menu.is-active {
  opacity: 1;
  visibility: visible;
}

/* line 21, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_contextual-menu.scss */
.c-contextual-menu__item {
  display: block;
  border-bottom: 1px solid #444444;
}

/* line 38, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_contextual-menu.scss */
.c-contextual-menu__item .o-icon,
.c-contextual-menu__item .o-icon svg {
  color: #888888;
  fill: currentColor;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

/* line 46, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_contextual-menu.scss */
.c-contextual-menu__item:last-child {
  border-bottom: 0;
}

/* line 56, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_contextual-menu.scss */
.c-contextual-menu__item:focus .o-link, .c-contextual-menu__item:hover .o-link {
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.8);
}

/* line 61, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_contextual-menu.scss */
.c-contextual-menu__item:focus .o-icon,
.c-contextual-menu__item:focus .o-icon svg, .c-contextual-menu__item:hover .o-icon,
.c-contextual-menu__item:hover .o-icon svg {
  color: #ffffff;
  fill: currentColor;
}

/* line 70, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_contextual-menu.scss */
.c-contextual-menu__link,
.c-contextual-menu__link--help-plus {
  -webkit-backface-visibility: hidden;
  /* easeOutQuart */
  -webkit-transition: color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #ffffff;
  display: block;
  padding: .5rem 0;
  padding-right: .5rem;
}

/* line 78, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_contextual-menu.scss */
.c-contextual-menu__item:first-child .c-contextual-menu__link, .c-contextual-menu__item:first-child
.c-contextual-menu__link--help-plus {
  padding-top: 0;
}

/* line 82, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_contextual-menu.scss */
.c-contextual-menu__item:last-child .c-contextual-menu__link, .c-contextual-menu__item:last-child
.c-contextual-menu__link--help-plus {
  padding-bottom: 0;
}

/* line 86, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_contextual-menu.scss */
.c-contextual-menu__item:focus .c-contextual-menu__link,
.c-contextual-menu__item:hover .c-contextual-menu__link, .c-contextual-menu__item:focus
.c-contextual-menu__link--help-plus,
.c-contextual-menu__item:hover
.c-contextual-menu__link--help-plus {
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.8);
}

/* line 91, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_contextual-menu.scss */
.c-contextual-menu__item:focus .c-contextual-menu__link .o-icon,
.c-contextual-menu__item:focus .c-contextual-menu__link .o-icon svg,
.c-contextual-menu__item:hover .c-contextual-menu__link .o-icon,
.c-contextual-menu__item:hover .c-contextual-menu__link .o-icon svg, .c-contextual-menu__item:focus
.c-contextual-menu__link--help-plus .o-icon,
.c-contextual-menu__item:focus
.c-contextual-menu__link--help-plus .o-icon svg,
.c-contextual-menu__item:hover
.c-contextual-menu__link--help-plus .o-icon,
.c-contextual-menu__item:hover
.c-contextual-menu__link--help-plus .o-icon svg {
  color: #ffffff;
  fill: currentColor;
}

/* line 104, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_contextual-menu.scss */
.c-share-url-toggle {
  position: relative;
}

/* line 108, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_contextual-menu.scss */
.c-share-url-toggle__label {
  position: relative;
  z-index: 2;
}

/* line 113, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_contextual-menu.scss */
.c-share-url-toggle__input {
  font-size: 1rem;
  display: block;
  opacity: 0;
  position: absolute;
  top: .5rem;
  right: 0;
  bottom: .5rem;
  left: 0;
  width: 100%;
  z-index: 1;
}

/* line 125, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_contextual-menu.scss */
.c-share-url-toggle__input:focus {
  opacity: 1;
  z-index: 5;
}

@media (min-width: 53.125em) {
  /* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_breadcrumb.scss */
  .c-breadcrumb {
    padding-left: 0;
  }
}

/* line 2, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_pagination.scss */
.c-pagination {
  display: inline-block;
}

/* line 5, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_pagination.scss */
.c-pagination a, .c-pagination em, .c-pagination span {
  font-size: 1.25rem;
  vertical-align: middle;
}

/* line 10, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_pagination.scss */
.c-pagination a {
  color: #50b0f4;
}

/* line 13, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_pagination.scss */
.c-pagination a:hover {
  color: #b7cd4c;
}

/* line 18, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_pagination.scss */
.c-pagination .previous_page, .c-pagination .next_page {
  font-size: .5rem;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_truncate-section.scss */
.c-truncate-section.is-truncated {
  height: auto;
  max-height: 250px;
  overflow: hidden;
}

/* line 6, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_truncate-section.scss */
.c-truncate-section.is-truncated.is-active {
  max-height: none !important;
}

/* line 10, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_truncate-section.scss */
.c-truncate-section.is-truncated + .c-truncate-section__toggle {
  display: block;
}

/* line 15, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_truncate-section.scss */
.c-truncate-section__toggle {
  display: none;
  color: #50b0f4;
  text-align: center;
  padding: .5rem;
  box-shadow: 0 -6px 15px #f7f7f7;
}

/* line 22, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_truncate-section.scss */
.c-truncate-section__toggle:hover {
  color: #b7cd4c;
}

/* line 3, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_accordion.scss */
.c-accordion__header.is-active .c-nav-side__nav-item__right-aligned-icon--rotate {
  right: -10px;
}

/* line 6, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_accordion.scss */
.c-accordion__header.is-active .c-nav-side__nav-item__right-aligned-icon--rotate .o-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* line 9, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_accordion.scss */
.c-accordion__header.is-active .c-nav-side__nav-item__right-aligned-icon--rotate svg {
  fill: #50b0f4;
}

/* line 16, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_accordion.scss */
.c-accordion__footer {
  display: none;
}

/* line 6, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
.c-flip-card {
  display: block;
  position: relative;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  overflow-y: auto;
  text-transform: uppercase;
  box-sizing: border-box;
  padding: 0;
  margin: 12px auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 6vw;
  overflow: hidden;
  color: #000;
}

@media (min-width: 53.125em) {
  /* line 6, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
  .c-flip-card {
    font-size: 30px;
  }
}

@media (min-width: 61.25em) {
  /* line 6, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
  .c-flip-card {
    font-size: 20px;
  }
}

@media (min-width: 71.875em) {
  /* line 6, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
  .c-flip-card {
    font-size: 25px;
  }
}

/* line 30, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
.c-flip-card:hover .c-flip-card__back {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  height: 101%;
}

/* line 34, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
.c-flip-card .c-flip-card__title {
  display: block;
  margin-top: 10px;
  font-weight: 600;
}

/* line 39, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
.c-flip-card .c-flip-card__copy {
  width: 60%;
}

/* line 45, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
.c-flip-card--mobile .c-flip-card__back {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  height: 101%;
}

/* line 49, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
.c-flip-card--mobile .c-flip-card__front {
  visibility: hidden;
}

/* line 54, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
.c-flip-card__back {
  position: absolute;
  top: 100%;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  padding: 1rem;
  padding-top: 1.5em;
  width: 100%;
  background-color: rgba(195, 209, 6, 0.9);
}

/* line 64, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
.c-flip-card__button {
  margin-top: auto;
  background-color: #fff;
  box-shadow: 0 0 0.75em rgba(0, 0, 0, 0.1);
  margin-bottom: 1em;
  padding: 0.25em 1em;
  position: absolute;
  bottom: 0;
  color: #222222;
}

/* line 74, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
.c-flip-card__button:hover {
  color: #3f3e3e;
}

/* line 78, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
.c-flip-card__button:click {
  color: #222222;
}

/* line 83, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
.c-flip-card__quoteimg {
  display: none;
  margin: 0 auto 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/* line 88, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
.c-flip-card__quote {
  display: none;
  position: absolute;
  bottom: 5%;
  font-size: 150%;
}

/* line 95, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
.c-flip-card--meet {
  font-size: 1.8vw;
  color: #fff;
  margin: .7rem auto;
}

/* line 100, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
.c-flip-card--meet:hover .c-flip-card__front {
  visibility: hidden;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

/* line 104, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
.c-flip-card--meet .c-flip-card__title {
  display: none;
}

/* line 107, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
.c-flip-card--meet .c-flip-card__copy {
  width: 100%;
}

/* line 110, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
.c-flip-card--meet .c-flip-card__button {
  display: none;
}

/* line 113, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
.c-flip-card--meet .c-flip-card__quoteimg {
  display: block;
}

/* line 116, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
.c-flip-card--meet .c-flip-card__quote {
  display: inline;
  margin: 0 auto;
}

@media (min-width: 40em) {
  /* line 95, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
  .c-flip-card--meet {
    font-size: 2vw;
  }
}

@media (min-width: 53.125em) {
  /* line 95, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
  .c-flip-card--meet {
    font-size: 1vw;
  }
}

@media (min-width: 61.25em) {
  /* line 95, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
  .c-flip-card--meet {
    font-size: .6vw;
  }
}

@media (min-width: 81.25em) {
  /* line 95, app/assets/stylesheets/2018-nextgen-ui/../nation/components/_flip-card.scss */
  .c-flip-card--meet {
    font-size: 8px;
  }
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/../nation/components/video-billboard.scss */
.c-video-billboard {
  position: relative;
}

/* line 5, app/assets/stylesheets/2018-nextgen-ui/../nation/components/video-billboard.scss */
.c-video-billboard__text {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  display: block;
  position: absolute;
  margin: auto;
  text-align: center;
  font-size: 4vw;
  color: #FFF;
  text-shadow: 5px 5px 9px #000;
  width: 90%;
  text-transform: uppercase;
  font-weight: 400;
}

@media (min-width: 53.125em) {
  /* line 5, app/assets/stylesheets/2018-nextgen-ui/../nation/components/video-billboard.scss */
  .c-video-billboard__text {
    font-size: 24px;
  }
}

@media (min-width: 61.25em) {
  /* line 5, app/assets/stylesheets/2018-nextgen-ui/../nation/components/video-billboard.scss */
  .c-video-billboard__text {
    font-size: 35px;
  }
}

/* line 2, app/assets/stylesheets/2018-nextgen-ui/components/_jump-menu.scss */
.c-jump-menu select {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zd…J2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+);
  background-position: 100% center;
  background-repeat: no-repeat;
  padding: 0.5rem;
  font-size: 0.875rem;
  font-family: "futura-pt", Helvetica, Arial, sans-serif;
  color: rgba(0, 0, 0, 0.75);
  line-height: normal;
  border-radius: 0;
  height: 2.3125rem;
  width: 100%;
  border: solid 1px #b7cd4c;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/components/_animated-email-signup.scss */
.c-sticky-animated-email-signup {
  position: fixed;
  bottom: 0;
  right: 12px;
  background: #fff;
  padding: 10px;
  width: 400px;
  z-index: 99999;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border: solid 1px rgba(0, 0, 0, 0.15);
  color: #666666;
  overflow: hidden;
}

/* line 15, app/assets/stylesheets/2018-nextgen-ui/components/_animated-email-signup.scss */
.c-sticky-animated-email-signup__gif {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 1;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none !important;
}

/* line 26, app/assets/stylesheets/2018-nextgen-ui/components/_animated-email-signup.scss */
.c-sticky-animated-email-signup__form {
  padding-bottom: 25px;
}

/* line 28, app/assets/stylesheets/2018-nextgen-ui/components/_animated-email-signup.scss */
.c-sticky-animated-email-signup__form .o-input-label {
  color: #666666;
}

/* line 32, app/assets/stylesheets/2018-nextgen-ui/components/_animated-email-signup.scss */
.c-sticky-animated-email-signup__form .c-sticky-animated-email-signup__inputs {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border: solid 1px rgba(0, 0, 0, 0.15);
  background-color: #e6e6e6;
}

/* line 39, app/assets/stylesheets/2018-nextgen-ui/components/_animated-email-signup.scss */
.c-sticky-animated-email-signup__close {
  position: absolute;
  top: 0;
  right: 5px;
  color: #50b0f4;
  font-size: 200%;
}

/* line 45, app/assets/stylesheets/2018-nextgen-ui/components/_animated-email-signup.scss */
.c-sticky-animated-email-signup__close:hover {
  cursor: pointer;
}

@media (max-width: 39.99em) {
  /* line 1, app/assets/stylesheets/2018-nextgen-ui/components/_animated-email-signup.scss */
  .c-sticky-animated-email-signup {
    display: none;
  }
}

/* line 55, app/assets/stylesheets/2018-nextgen-ui/components/_animated-email-signup.scss */
.c-sticky-animated-email-signup--powertools {
  padding-top: 36px;
}

/* line 58, app/assets/stylesheets/2018-nextgen-ui/components/_animated-email-signup.scss */
.c-sticky-animated-email-signup--powertools .c-sticky-animated-email-signup__close {
  top: 30px;
}

/* line 64, app/assets/stylesheets/2018-nextgen-ui/components/_animated-email-signup.scss */
.c-animated__group {
  width: 100%;
  height: auto;
  bottom: 0;
  position: absolute;
  background-size: 400px;
  background-position: left bottom;
  background-repeat: none;
}

/* line 74, app/assets/stylesheets/2018-nextgen-ui/components/_animated-email-signup.scss */
.c-animated .c-animated__group--grass {
  background-image: url("/assets/animated_email_signup/grass.png");
  z-index: 3;
  height: 100%;
  -webkit-animation: width 2.5s 1;
          animation: width 2.5s 1;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  width: 100%;
  will-change: width;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

/* line 84, app/assets/stylesheets/2018-nextgen-ui/components/_animated-email-signup.scss */
.c-animated .c-animated__group--cut-grass {
  background-image: url("/assets/animated_email_signup/cut-grass.png");
  height: 100%;
  z-index: 1;
  -webkit-animation: fade-away 1s 1;
          animation: fade-away 1s 1;
  -webkit-animation-delay: 4.75s;
          animation-delay: 4.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  will-change: opacity;
}

/* line 93, app/assets/stylesheets/2018-nextgen-ui/components/_animated-email-signup.scss */
.c-animated .c-animated__group--trimmer {
  z-index: 2;
  -webkit-animation: trimmer 5s 1;
          animation: trimmer 5s 1;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-transform: translate(100%, 0%);
          transform: translate(100%, 0%);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 1;
  will-change: transform, opacity;
}

/* line 103, app/assets/stylesheets/2018-nextgen-ui/components/_animated-email-signup.scss */
.c-animated .c-animated__group--panel {
  background-image: url("/assets/animated_email_signup/wood-panel.png");
  height: 100%;
  z-index: 2;
  -webkit-animation: cut-away 1s 1;
          animation: cut-away 1s 1;
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  will-change: opacity;
  opacity: 1;
  background-size: cover;
  background-position: center;
}

/* line 116, app/assets/stylesheets/2018-nextgen-ui/components/_animated-email-signup.scss */
.c-animated .c-animated__group--wood-top {
  background-image: url("/assets/animated_email_signup/top-wood.png");
  height: 10%;
  width: 100%;
  z-index: 1;
  top: 0;
}

/* line 124, app/assets/stylesheets/2018-nextgen-ui/components/_animated-email-signup.scss */
.c-animated .c-animated__group--cut-line {
  background: #C19F77;
  z-index: 2;
  height: 2px;
  -webkit-animation: cut-line 4.75s 1;
          animation: cut-line 4.75s 1;
  -webkit-animation-delay: 3.7s;
          animation-delay: 3.7s;
  will-change: width;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  top: 10%;
}

/* line 136, app/assets/stylesheets/2018-nextgen-ui/components/_animated-email-signup.scss */
.c-animated .c-animated__group--saw {
  z-index: 3;
  -webkit-animation: saw 4.75s 1;
          animation: saw 4.75s 1;
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: translate(0%, 100%);
          transform: translate(0%, 100%);
  opacity: 0;
  will-change: transform, opacity;
  top: 0px;
  width: 100%;
}

@-webkit-keyframes trimmer {
  20% {
    -webkit-transform: translate(100%, 0%);
            transform: translate(100%, 0%);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    opacity: 1;
  }
  55% {
    -webkit-transform: translate(2%, -5%);
            transform: translate(2%, -5%);
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
  90% {
    -webkit-transform: translate(120%, -100%);
            transform: translate(120%, -100%);
    opacity: 0;
  }
}

@keyframes trimmer {
  20% {
    -webkit-transform: translate(100%, 0%);
            transform: translate(100%, 0%);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    opacity: 1;
  }
  55% {
    -webkit-transform: translate(2%, -5%);
            transform: translate(2%, -5%);
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
  90% {
    -webkit-transform: translate(120%, -100%);
            transform: translate(120%, -100%);
    opacity: 0;
  }
}

@-webkit-keyframes saw {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 1;
  }
}

@keyframes saw {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 1;
  }
}

@-webkit-keyframes cut-line {
  0% {
    width: 0%;
    opacity: 1;
  }
  40% {
    width: 100%;
    opacity: 1;
  }
  95% {
    width: 100%;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

@keyframes cut-line {
  0% {
    width: 0%;
    opacity: 1;
  }
  40% {
    width: 100%;
    opacity: 1;
  }
  95% {
    width: 100%;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

@-webkit-keyframes width {
  0% {
    width: 100%;
  }
  40% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

@keyframes width {
  0% {
    width: 100%;
  }
  40% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

@-webkit-keyframes cut-away {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes cut-away {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@-webkit-keyframes fade-away {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fade-away {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search {
  position: relative;
}

/* line 4, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search ul {
  list-style: none;
  margin: 0;
}

/* line 9, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search .c-drop-search__svg-wrap {
  position: absolute;
  height: 50px;
  width: 50px;
  right: 0;
  top: 0;
}

/* line 16, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search .c-drop-search__svg-wrap:hover {
  background-color: #50b0f4;
}

/* line 20, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search .c-drop-search__svg-wrap.is-active .c-drop-search__svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* line 25, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search__svg {
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

/* line 32, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search__options {
  position: absolute;
  left: 0;
  height: 0;
  overflow: hidden;
  -webkit-transition: 1s all ease;
  transition: 1s all ease;
  width: 100%;
}

/* line 41, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search__link {
  display: block;
  color: inherit;
}

/* line 44, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search__link:hover {
  background-color: #50b0f4;
}

/* line 48, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search__link.has-content {
  width: calc( 100% - 50px);
}

/* line 53, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search__list {
  border: solid 1px #e6e6e6;
  position: relative;
  font-weight: 400;
}

/* line 59, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search__list .c-drop-search__button {
  position: absolute;
  display: -webkit-box;
  display: flex;
  right: 0;
  top: 0;
  height: 50px;
  width: 100%;
}

/* line 69, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search__list.is-active .c-drop-search__options {
  height: 285px;
  z-index: 999;
  overflow: scroll;
}

/* line 74, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search__list.is-active .c-drop-search__button > .c-drop-search__svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* line 81, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search__category-wrapper {
  display: none;
}

/* line 84, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search__category-wrapper.is-active {
  display: block;
}

/* line 90, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search__category {
  position: relative;
  margin: 0;
}

/* line 94, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search__category.is-active {
  height: 500px;
  overflow: scroll;
}

/* line 99, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search__category .c-drop-search__list-item {
  padding: 0;
}

/* line 105, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search__list-item--default {
  background-color: #f1f1f1;
  color: #666666;
  display: block;
}

/* line 113, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search__family {
  position: relative;
  list-style: none;
  background-color: #222222;
  color: #ffffff;
}

/* line 119, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search__family .c-drop-search__svg--sublist {
  top: 25px;
}

/* line 123, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search__family > .c-drop-search__svg-wrap {
  display: block;
  position: relative;
  width: 100%;
  vertical-align: middle;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding-left: 1em;
}

/* line 135, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search__family .c-drop-search__sublist {
  height: 0;
  overflow: hidden;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
}

/* line 140, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search__family .c-drop-search__sublist.is-active {
  height: auto;
}

/* line 146, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search__family.is-active .c-drop-search__svg--sublist {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* line 149, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search__family.is-active .c-drop-search__sublist {
  height: auto;
}

/* line 155, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search__sublist {
  margin: 0;
}

/* line 158, app/assets/stylesheets/2018-nextgen-ui/components/_dropdown-search.scss */
.c-drop-search__sublist-item {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/components/_search-bar.scss */
.c-search-bar {
  position: relative;
  width: 100%;
  border: solid 1px #e6e6e6;
  font-size: 0;
}

/* line 7, app/assets/stylesheets/2018-nextgen-ui/components/_search-bar.scss */
.c-search-bar__input {
  width: calc(100% - 49px);
  display: inline-block;
  font-size: 16px;
  vertical-align: middle;
}

/* line 14, app/assets/stylesheets/2018-nextgen-ui/components/_search-bar.scss */
.c-search-bar__submit {
  width: 49px;
  display: inline-block;
  font-size: 16px;
  border-right: solid 1px #e6e6e6;
  vertical-align: middle;
  height: 49px;
  padding-top: 10px;
  text-align: center;
}

/* line 23, app/assets/stylesheets/2018-nextgen-ui/components/_search-bar.scss */
.c-search-bar__submit input {
  display: none;
}

/* line 26, app/assets/stylesheets/2018-nextgen-ui/components/_search-bar.scss */
.c-search-bar__submit:hover {
  background-color: #50b0f4;
  color: #ffffff;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/components/_components.generic-video.scss */
.c-generic-video {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

/* line 8, app/assets/stylesheets/2018-nextgen-ui/components/_components.generic-video.scss */
.c-generic-video__video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
.lg-backdrop.in {
  opacity: 0.85;
}

/* line 6, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
.c-product-modal.lg-outer {
  z-index: 5010;
}

/* line 9, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
.c-product-modal.lg-outer .lg-inner {
  background-color: #ffffff;
}

/* line 13, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
.c-product-modal.lg-outer .lg-thumb-outer {
  background-color: #000000;
}

/* line 17, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
.c-product-modal.lg-outer .lg-toolbar {
  background-color: #000000;
}

/* line 21, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
.c-product-modal.lg-outer .lg-toolbar .lg-icon {
  color: #E1E723;
}

/* line 24, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
.c-product-modal.lg-outer .lg-toolbar .lg-icon:hover {
  color: #50b0f4;
}

/* line 29, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
.c-product-modal.lg-outer .lg-img-wrap {
  padding: 1em;
}

@media (max-width: 39.99em) {
  /* line 29, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
  .c-product-modal.lg-outer .lg-img-wrap {
    -webkit-transform: translate3d(0px, -12vh, 0px) !important;
            transform: translate3d(0px, -12vh, 0px) !important;
  }
}

@media (max-width: 39.99em) {
  /* line 37, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
  .c-product-modal.lg-outer .lg-thumb.lg-group {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row wrap;
    -webkit-box-pack: center;
            justify-content: center;
  }
}

@media (min-width: 40em) {
  /* line 36, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
  .c-product-modal.lg-outer .lg-thumb {
    padding: 1em;
  }
}

/* line 50, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
.c-product-modal.lg-outer .lg-thumb-item {
  color: #ffffff;
  position: relative;
}

/* line 54, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
.c-product-modal.lg-outer .lg-thumb-item.active, .c-product-modal.lg-outer .lg-thumb-item:hover {
  border-color: currentColor;
  color: #E1E723;
}

/* line 60, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
.c-product-modal.lg-outer .lg-thumb-item .o-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  fill: currentColor;
}

@media (max-width: 39.99em) {
  /* line 50, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
  .c-product-modal.lg-outer .lg-thumb-item {
    height: 50px !important;
    width: 50px !important;
    margin-right: 3px !important;
    margin-left: 3px !important;
  }
}

/* line 76, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
.c-product-modal.lg-outer .lg-toogle-thumb {
  background-color: #ffffff;
  border-radius: 50% 50% 0 0;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
  color: #000000;
}

/* line 82, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
.c-product-modal.lg-outer .lg-toogle-thumb:hover {
  color: #50b0f4;
}

/* line 89, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
.c-product-modal .lg-actions .lg-next,
.c-product-modal .lg-actions .lg-prev {
  background-color: #888888;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
  color: #E1E723;
  color: #000000;
}

/* line 98, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
.c-product-modal .lg-actions .lg-next:hover,
.c-product-modal .lg-actions .lg-prev:hover {
  color: #50b0f4;
}

/* line 104, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
.c-product-modal #lg-counter {
  color: #E1E723;
}

/* line 109, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
.c-product-gallery__list {
  max-width: 13.75em;
  max-height: 3.75em;
  overflow: hidden;
  width: 100%;
}

/* line 116, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
.c-product-gallery__thumbnail {
  cursor: pointer;
  display: inline-block;
  float: left;
  position: relative;
  width: 100%;
  max-width: 3.75em;
}

/* line 125, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
.c-product-gallery__img {
  border: 1px solid #E1E723;
  border-radius: 6px;
  max-width: 3.75em;
}

/* line 130, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
.c-product-gallery__img:hover {
  border-color: #50b0f4;
}

/* line 135, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
.c-product-gallery__img-play {
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 1px;
  right: 1px;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url("/assets/product-page/play.svg");
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

/* line 148, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
.c-product-gallery__img-play:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* line 153, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
.o-overlay--grayscale {
  background-color: rgba(56, 56, 56, 0.8);
  border-radius: 6px;
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 1px;
  right: 1px;
}

/* line 163, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
.c-product-gallery__count {
  font-size: 1.5rem;
  font-family: "futura-pt", Helvetica, Arial, sans-serif;
  font-weight: 500;
  color: #E1E723;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -25%;
  text-align: center;
  width: 100%;
  z-index: 4;
}

@media (max-width: 39.99em) {
  /* line 177, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
  .c-product-gallery--desktop {
    display: none;
  }
}

@media (min-width: 40em) {
  /* line 183, app/assets/stylesheets/2018-nextgen-ui/components/product-pip/_product-gallery.scss */
  .c-product-gallery--mobile {
    display: none;
  }
}

@keyframes animate-bg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -80px 0;
  }
}

/* line 12, app/assets/stylesheets/2018-nextgen-ui/components/_flash-messages.scss */
.flash-messages {
  background-size: 40px 40px;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, transparent 75%, transparent);
  width: 100%;
  color: #fff;
  padding: 0;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  -webkit-animation: animate-bg 5s linear infinite;
          animation: animate-bg 5s linear infinite;
  background-color: #000000;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
}

@media (min-width: 40em) {
  /* line 12, app/assets/stylesheets/2018-nextgen-ui/components/_flash-messages.scss */
  .flash-messages {
    padding: 12px;
  }
}

@media (min-width: 61.25em) {
  /* line 12, app/assets/stylesheets/2018-nextgen-ui/components/_flash-messages.scss */
  .flash-messages {
    padding: 6px;
  }
}

/* line 44, app/assets/stylesheets/2018-nextgen-ui/components/_flash-messages.scss */
.flash-messages > .alert-box + .alert-box {
  margin-top: 0.5em;
}

/* line 49, app/assets/stylesheets/2018-nextgen-ui/components/_flash-messages.scss */
.alert-box {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
  text-align: center;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  /* line 49, app/assets/stylesheets/2018-nextgen-ui/components/_flash-messages.scss */
  .alert-box {
    padding: 12px;
  }
}

/* line 63, app/assets/stylesheets/2018-nextgen-ui/components/_flash-messages.scss */
.alert-box .close {
  color: #E1E723;
  font-size: 22px;
  font-weight: 400;
  display: inline-block;
  margin-left: 1em;
}

@media (max-width: 767px) {
  /* line 63, app/assets/stylesheets/2018-nextgen-ui/components/_flash-messages.scss */
  .alert-box .close {
    position: absolute;
    top: 0;
    right: 12px;
  }
}

/* line 76, app/assets/stylesheets/2018-nextgen-ui/components/_flash-messages.scss */
.alert-box .close:hover {
  color: #ee3124;
}

/* line 82, app/assets/stylesheets/2018-nextgen-ui/components/_flash-messages.scss */
.alert-box__text {
  font-size: 1.1em;
}

@media (min-width: 1025px) {
  /* line 82, app/assets/stylesheets/2018-nextgen-ui/components/_flash-messages.scss */
  .alert-box__text {
    font-size: 1.2em;
  }
}

/** MODIFIERS **/
/* line 91, app/assets/stylesheets/2018-nextgen-ui/components/_flash-messages.scss */
.flash-messages--success {
  background-color: #E1E723;
  color: #000000;
  text-shadow: 0 1px 0 rgba(240, 236, 236, 0.5);
}

/* line 96, app/assets/stylesheets/2018-nextgen-ui/components/_flash-messages.scss */
.flash-messages--success .close {
  color: #000000;
}

/* line 101, app/assets/stylesheets/2018-nextgen-ui/components/_flash-messages.scss */
.flash-messages--error {
  background-color: #ee3124;
  color: #ffffff;
}

/* line 105, app/assets/stylesheets/2018-nextgen-ui/components/_flash-messages.scss */
.flash-messages--error .close {
  color: #000000;
}

/* line 108, app/assets/stylesheets/2018-nextgen-ui/components/_flash-messages.scss */
.flash-messages--error .close:hover {
  color: #000000;
}

/* line 3, app/assets/stylesheets/2018-nextgen-ui/utilities/_ie-warning.scss */
.browserupgrade,
.browserupgrade-ie10 {
  background-color: #f00;
  color: #fff;
  padding: 6px;
}

/* line 10, app/assets/stylesheets/2018-nextgen-ui/utilities/_ie-warning.scss */
.browserupgrade, .browserupgrade-ie10 > a {
  color: #fff;
  text-decoration: underline;
}

/* line 15, app/assets/stylesheets/2018-nextgen-ui/utilities/_ie-warning.scss */
.browserupgrade, .browserupgrade-ie10 > a:active {
  color: #fff;
  text-decoration: underline;
}

/* line 20, app/assets/stylesheets/2018-nextgen-ui/utilities/_ie-warning.scss */
.browserupgrade, .browserupgrade-ie10 > a:visited {
  color: #fff;
  text-decoration: underline;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* line 26, app/assets/stylesheets/2018-nextgen-ui/utilities/_ie-warning.scss */
  .browserupgrade-ie10 {
    display: block !important;
  }
  /* line 30, app/assets/stylesheets/2018-nextgen-ui/utilities/_ie-warning.scss */
  .browserupgrade {
    display: none !important;
  }
}

/* ==========================================================================
   #TEXT PROPERTIES
   ========================================================================== */
/**
 *
 *
 */
/* line 10, app/assets/stylesheets/2018-nextgen-ui/utilities/_text-properties.scss */
.u-text-align-left {
  text-align: left !important;
}

/* line 14, app/assets/stylesheets/2018-nextgen-ui/utilities/_text-properties.scss */
.u-text-align-center {
  text-align: center !important;
}

/* line 18, app/assets/stylesheets/2018-nextgen-ui/utilities/_text-properties.scss */
.u-text-align-right {
  text-align: right !important;
}

/* line 22, app/assets/stylesheets/2018-nextgen-ui/utilities/_text-properties.scss */
.u-lowercase,
.u-text-transform-lowercase {
  text-transform: lowercase !important;
}

/* line 27, app/assets/stylesheets/2018-nextgen-ui/utilities/_text-properties.scss */
.u-capitalize,
.u-text-transform-capitalize {
  text-transform: capitalize !important;
}

/* line 32, app/assets/stylesheets/2018-nextgen-ui/utilities/_text-properties.scss */
.u-uppercase,
.u-text-transform-uppercase {
  text-transform: uppercase !important;
}

/* line 37, app/assets/stylesheets/2018-nextgen-ui/utilities/_text-properties.scss */
.u-sibling-inline-baseline {
  display: inline-block !important;
  vertical-align: baseline !important;
}

/* line 42, app/assets/stylesheets/2018-nextgen-ui/utilities/_text-properties.scss */
.u-no-wrap,
.u-whitespace-nowrap {
  white-space: nowrap !important;
}

/* line 47, app/assets/stylesheets/2018-nextgen-ui/utilities/_text-properties.scss */
.u-fw-300 {
  font-weight: 300 !important;
}

/* line 51, app/assets/stylesheets/2018-nextgen-ui/utilities/_text-properties.scss */
.u-fw-400 {
  font-weight: 400 !important;
}

/* line 55, app/assets/stylesheets/2018-nextgen-ui/utilities/_text-properties.scss */
.u-fw-500 {
  font-weight: 500 !important;
}

/* line 59, app/assets/stylesheets/2018-nextgen-ui/utilities/_text-properties.scss */
.u-fw-600 {
  font-weight: 600 !important;
}

/* line 63, app/assets/stylesheets/2018-nextgen-ui/utilities/_text-properties.scss */
.u-fw-800 {
  font-weight: 800 !important;
}

/* ==========================================================================
   #Container Alignment PROPERTIES
   ========================================================================== */
/**
 *
 *
 */
/* line 10, app/assets/stylesheets/2018-nextgen-ui/utilities/_utilities.align.scss */
.u-vertical-align--middle {
  vertical-align: middle;
}

/* line 14, app/assets/stylesheets/2018-nextgen-ui/utilities/_utilities.align.scss */
.u-vertical-align--bottom {
  vertical-align: bottom;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/utilities/_utilities.backgrounds.scss */
.u-bgc-white {
  background-color: #ffffff !important;
}

/* line 5, app/assets/stylesheets/2018-nextgen-ui/utilities/_utilities.backgrounds.scss */
.u-bgc-black {
  background-color: #000000 !important;
}

/* line 9, app/assets/stylesheets/2018-nextgen-ui/utilities/_utilities.backgrounds.scss */
.u-bgc-ryobi-green {
  background-color: #E1E723 !important;
}

/* line 13, app/assets/stylesheets/2018-nextgen-ui/utilities/_utilities.backgrounds.scss */
.u-bgc-dark-gray {
  background-color: #666666 !important;
}

/* line 17, app/assets/stylesheets/2018-nextgen-ui/utilities/_utilities.backgrounds.scss */
.u-bgc-darker-gray {
  background-color: #444444 !important;
}

/* line 21, app/assets/stylesheets/2018-nextgen-ui/utilities/_utilities.backgrounds.scss */
.u-bgc-transparent {
  background-color: transparent !important;
}

/* line 1, app/assets/stylesheets/2018-nextgen-ui/utilities/_utilities.text-colors.scss */
.u-clr-black {
  color: #000000 !important;
}

/* line 5, app/assets/stylesheets/2018-nextgen-ui/utilities/_utilities.text-colors.scss */
.u-clr-white {
  color: #ffffff !important;
}

/* line 9, app/assets/stylesheets/2018-nextgen-ui/utilities/_utilities.text-colors.scss */
.u-clr-light-gray {
  color: #aaaaaa !important;
}

/* line 13, app/assets/stylesheets/2018-nextgen-ui/utilities/_utilities.text-colors.scss */
.u-clr-gray {
  color: #888888 !important;
}

/* line 17, app/assets/stylesheets/2018-nextgen-ui/utilities/_utilities.text-colors.scss */
.u-clr-dark-gray {
  color: #666666 !important;
}

/* line 21, app/assets/stylesheets/2018-nextgen-ui/utilities/_utilities.text-colors.scss */
.u-clr-darker-gray {
  color: #444444 !important;
}

/* line 25, app/assets/stylesheets/2018-nextgen-ui/utilities/_utilities.text-colors.scss */
.u-clr-inherit {
  color: inherit !important;
}

/* line 30, app/assets/stylesheets/2018-nextgen-ui/utilities/_utilities.text-colors.scss */
.u-heading--blue {
  color: #50b0f4 !important;
}

/* line 34, app/assets/stylesheets/2018-nextgen-ui/utilities/_utilities.text-colors.scss */
.u-heading--gray_light {
  color: #aaaaaa !important;
}

/* line 38, app/assets/stylesheets/2018-nextgen-ui/utilities/_utilities.text-colors.scss */
.u-heading--gray {
  color: #888888 !important;
}

/* line 42, app/assets/stylesheets/2018-nextgen-ui/utilities/_utilities.text-colors.scss */
.u-heading--inherit {
  color: inherit !important;
}

/* ==========================================================================
   #CLEARFIX
   ========================================================================== */
/**
 * Attach our clearfix mixin to a utility class.
 */
/* line 14, node_modules/inuitcss/tools/_tools.clearfix.scss */
.u-clearfix:after {
  content: "" !important;
  display: block !important;
  clear: both !important;
}

@-webkit-keyframes swal2-show {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  45% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  80% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes swal2-show {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  45% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  80% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes swal2-hide {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
}

@keyframes swal2-hide {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
}

@-webkit-keyframes swal2-animate-success-line-tip {
  0% {
    top: 1.1875em;
    left: .0625em;
    width: 0;
  }
  54% {
    top: 1.0625em;
    left: .125em;
    width: 0;
  }
  70% {
    top: 2.1875em;
    left: -.375em;
    width: 3.125em;
  }
  84% {
    top: 3em;
    left: 1.3125em;
    width: 1.0625em;
  }
  100% {
    top: 2.8125em;
    left: .875em;
    width: 1.5625em;
  }
}

@keyframes swal2-animate-success-line-tip {
  0% {
    top: 1.1875em;
    left: .0625em;
    width: 0;
  }
  54% {
    top: 1.0625em;
    left: .125em;
    width: 0;
  }
  70% {
    top: 2.1875em;
    left: -.375em;
    width: 3.125em;
  }
  84% {
    top: 3em;
    left: 1.3125em;
    width: 1.0625em;
  }
  100% {
    top: 2.8125em;
    left: .875em;
    width: 1.5625em;
  }
}

@-webkit-keyframes swal2-animate-success-line-long {
  0% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  65% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  84% {
    top: 2.1875em;
    right: 0;
    width: 3.4375em;
  }
  100% {
    top: 2.375em;
    right: .5em;
    width: 2.9375em;
  }
}

@keyframes swal2-animate-success-line-long {
  0% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  65% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  84% {
    top: 2.1875em;
    right: 0;
    width: 3.4375em;
  }
  100% {
    top: 2.375em;
    right: .5em;
    width: 2.9375em;
  }
}

@-webkit-keyframes swal2-rotate-success-circular-line {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  5% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  12% {
    -webkit-transform: rotate(-405deg);
    transform: rotate(-405deg);
  }
  100% {
    -webkit-transform: rotate(-405deg);
    transform: rotate(-405deg);
  }
}

@keyframes swal2-rotate-success-circular-line {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  5% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  12% {
    -webkit-transform: rotate(-405deg);
    transform: rotate(-405deg);
  }
  100% {
    -webkit-transform: rotate(-405deg);
    transform: rotate(-405deg);
  }
}

@-webkit-keyframes swal2-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0;
  }
  50% {
    margin-top: 1.625em;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0;
  }
  80% {
    margin-top: -.375em;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
  100% {
    margin-top: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes swal2-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0;
  }
  50% {
    margin-top: 1.625em;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0;
  }
  80% {
    margin-top: -.375em;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
  100% {
    margin-top: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes swal2-animate-error-icon {
  0% {
    -webkit-transform: rotateX(100deg);
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1;
  }
}

@keyframes swal2-animate-error-icon {
  0% {
    -webkit-transform: rotateX(100deg);
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1;
  }
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-toast-shown.swal2-toast-column > .swal2-container > .swal2-toast {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: stretch;
          align-items: stretch;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-toast-shown.swal2-toast-column > .swal2-container > .swal2-toast .swal2-actions {
  -webkit-box-flex: 1;
          flex: 1;
  align-self: stretch;
  height: 2.2em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-toast-shown.swal2-toast-column > .swal2-container > .swal2-toast .swal2-loading {
  -webkit-box-pack: center;
          justify-content: center;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-toast-shown.swal2-toast-column > .swal2-container > .swal2-toast .swal2-input {
  height: 2em;
  margin: .3125em auto;
  font-size: 1em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-toast-shown.swal2-toast-column > .swal2-container > .swal2-toast .swal2-validationerror {
  font-size: 1em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-toast-shown > .swal2-container {
  position: fixed;
  background-color: transparent;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-toast-shown > .swal2-container.swal2-shown {
  background-color: transparent;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-toast-shown > .swal2-container.swal2-top {
  top: 0;
  right: auto;
  bottom: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-toast-shown > .swal2-container.swal2-top-end, body.swal2-toast-shown > .swal2-container.swal2-top-right {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-toast-shown > .swal2-container.swal2-top-left, body.swal2-toast-shown > .swal2-container.swal2-top-start {
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-toast-shown > .swal2-container.swal2-center-left, body.swal2-toast-shown > .swal2-container.swal2-center-start {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-toast-shown > .swal2-container.swal2-center {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-toast-shown > .swal2-container.swal2-center-end, body.swal2-toast-shown > .swal2-container.swal2-center-right {
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-toast-shown > .swal2-container.swal2-bottom-left, body.swal2-toast-shown > .swal2-container.swal2-bottom-start {
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-toast-shown > .swal2-container.swal2-bottom {
  top: auto;
  right: auto;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-toast-shown > .swal2-container.swal2-bottom-end, body.swal2-toast-shown > .swal2-container.swal2-bottom-right {
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-align: center;
          align-items: center;
  width: auto;
  padding: .625em;
  box-shadow: 0 0 .625em #d9d9d9;
  overflow-y: hidden;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast .swal2-header {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast .swal2-title {
  -webkit-box-pack: start;
          justify-content: flex-start;
  margin: 0 .6em;
  font-size: 1em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast .swal2-footer {
  margin: .5em 0 0;
  padding: .5em 0 0;
  font-size: .8em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast .swal2-close {
  position: initial;
  width: .8em;
  height: .8em;
  line-height: .8;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast .swal2-content {
  -webkit-box-pack: start;
          justify-content: flex-start;
  font-size: 1em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast .swal2-icon {
  width: 2em;
  min-width: 2em;
  height: 2em;
  margin: 0;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast .swal2-icon-text {
  font-size: 2em;
  font-weight: 700;
  line-height: 1em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  top: .875em;
  width: 1.375em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
  left: .3125em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
  right: .3125em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast .swal2-actions {
  height: auto;
  margin: .3125em .3125em 0;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast .swal2-styled {
  margin: 0 .3125em;
  padding: .3125em .625em;
  font-size: 1em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast .swal2-styled:focus {
  box-shadow: 0 0 0 0.0625em #fff, 0 0 0 0.125em rgba(50, 100, 150, 0.4);
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast .swal2-success {
  border-color: #a5dc86;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line] {
  position: absolute;
  width: 2em;
  height: 2.8125em;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 50%;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left] {
  top: -.25em;
  left: -.9375em;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 2em 2em;
  transform-origin: 2em 2em;
  border-radius: 4em 0 0 4em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right] {
  top: -.25em;
  left: .9375em;
  -webkit-transform-origin: 0 2em;
  transform-origin: 0 2em;
  border-radius: 0 4em 4em 0;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast .swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast .swal2-success .swal2-success-fix {
  top: 0;
  left: .4375em;
  width: .4375em;
  height: 2.6875em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line] {
  height: .3125em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip] {
  top: 1.125em;
  left: .1875em;
  width: .75em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long] {
  top: .9375em;
  right: .1875em;
  width: 1.375em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast.swal2-show {
  -webkit-animation: showSweetToast .5s;
  animation: showSweetToast .5s;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast.swal2-hide {
  -webkit-animation: hideSweetToast .2s forwards;
  animation: hideSweetToast .2s forwards;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip {
  -webkit-animation: animate-toast-success-tip .75s;
  animation: animate-toast-success-tip .75s;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long {
  -webkit-animation: animate-toast-success-long .75s;
  animation: animate-toast-success-long .75s;
}

@-webkit-keyframes showSweetToast {
  0% {
    -webkit-transform: translateY(-0.625em) rotateZ(2deg);
    transform: translateY(-0.625em) rotateZ(2deg);
    opacity: 0;
  }
  33% {
    -webkit-transform: translateY(0) rotateZ(-2deg);
    transform: translateY(0) rotateZ(-2deg);
    opacity: .5;
  }
  66% {
    -webkit-transform: translateY(0.3125em) rotateZ(2deg);
    transform: translateY(0.3125em) rotateZ(2deg);
    opacity: .7;
  }
  100% {
    -webkit-transform: translateY(0) rotateZ(0);
    transform: translateY(0) rotateZ(0);
    opacity: 1;
  }
}

@keyframes showSweetToast {
  0% {
    -webkit-transform: translateY(-0.625em) rotateZ(2deg);
    transform: translateY(-0.625em) rotateZ(2deg);
    opacity: 0;
  }
  33% {
    -webkit-transform: translateY(0) rotateZ(-2deg);
    transform: translateY(0) rotateZ(-2deg);
    opacity: .5;
  }
  66% {
    -webkit-transform: translateY(0.3125em) rotateZ(2deg);
    transform: translateY(0.3125em) rotateZ(2deg);
    opacity: .7;
  }
  100% {
    -webkit-transform: translateY(0) rotateZ(0);
    transform: translateY(0) rotateZ(0);
    opacity: 1;
  }
}

@-webkit-keyframes hideSweetToast {
  0% {
    opacity: 1;
  }
  33% {
    opacity: .5;
  }
  100% {
    -webkit-transform: rotateZ(1deg);
    transform: rotateZ(1deg);
    opacity: 0;
  }
}

@keyframes hideSweetToast {
  0% {
    opacity: 1;
  }
  33% {
    opacity: .5;
  }
  100% {
    -webkit-transform: rotateZ(1deg);
    transform: rotateZ(1deg);
    opacity: 0;
  }
}

@-webkit-keyframes animate-toast-success-tip {
  0% {
    top: .5625em;
    left: .0625em;
    width: 0;
  }
  54% {
    top: .125em;
    left: .125em;
    width: 0;
  }
  70% {
    top: .625em;
    left: -.25em;
    width: 1.625em;
  }
  84% {
    top: 1.0625em;
    left: .75em;
    width: .5em;
  }
  100% {
    top: 1.125em;
    left: .1875em;
    width: .75em;
  }
}

@keyframes animate-toast-success-tip {
  0% {
    top: .5625em;
    left: .0625em;
    width: 0;
  }
  54% {
    top: .125em;
    left: .125em;
    width: 0;
  }
  70% {
    top: .625em;
    left: -.25em;
    width: 1.625em;
  }
  84% {
    top: 1.0625em;
    left: .75em;
    width: .5em;
  }
  100% {
    top: 1.125em;
    left: .1875em;
    width: .75em;
  }
}

@-webkit-keyframes animate-toast-success-long {
  0% {
    top: 1.625em;
    right: 1.375em;
    width: 0;
  }
  65% {
    top: 1.25em;
    right: .9375em;
    width: 0;
  }
  84% {
    top: .9375em;
    right: 0;
    width: 1.125em;
  }
  100% {
    top: .9375em;
    right: .1875em;
    width: 1.375em;
  }
}

@keyframes animate-toast-success-long {
  0% {
    top: 1.625em;
    right: 1.375em;
    width: 0;
  }
  65% {
    top: 1.25em;
    right: .9375em;
    width: 0;
  }
  84% {
    top: .9375em;
    right: 0;
    width: 1.125em;
  }
  100% {
    top: .9375em;
    right: .1875em;
    width: 1.375em;
  }
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
  overflow-y: hidden;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-height-auto {
  height: auto !important;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-no-backdrop .swal2-shown {
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  background-color: transparent;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-no-backdrop .swal2-shown > .swal2-modal {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-no-backdrop .swal2-shown.swal2-top {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-no-backdrop .swal2-shown.swal2-top-left, body.swal2-no-backdrop .swal2-shown.swal2-top-start {
  top: 0;
  left: 0;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-no-backdrop .swal2-shown.swal2-top-end, body.swal2-no-backdrop .swal2-shown.swal2-top-right {
  top: 0;
  right: 0;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-no-backdrop .swal2-shown.swal2-center {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-no-backdrop .swal2-shown.swal2-center-left, body.swal2-no-backdrop .swal2-shown.swal2-center-start {
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-no-backdrop .swal2-shown.swal2-center-end, body.swal2-no-backdrop .swal2-shown.swal2-center-right {
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-no-backdrop .swal2-shown.swal2-bottom {
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-no-backdrop .swal2-shown.swal2-bottom-left, body.swal2-no-backdrop .swal2-shown.swal2-bottom-start {
  bottom: 0;
  left: 0;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .swal2-shown.swal2-bottom-right {
  right: 0;
  bottom: 0;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-container {
  display: -webkit-box;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  padding: 10px;
  background-color: transparent;
  z-index: 1060;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-container.swal2-top {
  -webkit-box-align: start;
          align-items: flex-start;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-container.swal2-top-left, .swal2-container.swal2-top-start {
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
          justify-content: flex-start;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-container.swal2-top-end, .swal2-container.swal2-top-right {
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-container.swal2-center {
  -webkit-box-align: center;
          align-items: center;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-container.swal2-center-left, .swal2-container.swal2-center-start {
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: start;
          justify-content: flex-start;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-container.swal2-center-end, .swal2-container.swal2-center-right {
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-container.swal2-bottom {
  -webkit-box-align: end;
          align-items: flex-end;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-container.swal2-bottom-left, .swal2-container.swal2-bottom-start {
  -webkit-box-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
          justify-content: flex-start;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-container.swal2-bottom-end, .swal2-container.swal2-bottom-right {
  -webkit-box-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-container.swal2-grow-fullscreen > .swal2-modal {
  display: -webkit-box !important;
  display: flex !important;
  -webkit-box-flex: 1;
          flex: 1;
  align-self: stretch;
  -webkit-box-pack: center;
          justify-content: center;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-container.swal2-grow-row > .swal2-modal {
  display: -webkit-box !important;
  display: flex !important;
  -webkit-box-flex: 1;
          flex: 1;
  align-content: center;
  -webkit-box-pack: center;
          justify-content: center;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-container.swal2-grow-column {
  -webkit-box-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-container.swal2-grow-column.swal2-bottom, .swal2-container.swal2-grow-column.swal2-center, .swal2-container.swal2-grow-column.swal2-top {
  -webkit-box-align: center;
          align-items: center;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-container.swal2-grow-column.swal2-bottom-left, .swal2-container.swal2-grow-column.swal2-bottom-start, .swal2-container.swal2-grow-column.swal2-center-left, .swal2-container.swal2-grow-column.swal2-center-start, .swal2-container.swal2-grow-column.swal2-top-left, .swal2-container.swal2-grow-column.swal2-top-start {
  -webkit-box-align: start;
          align-items: flex-start;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-container.swal2-grow-column.swal2-bottom-end, .swal2-container.swal2-grow-column.swal2-bottom-right, .swal2-container.swal2-grow-column.swal2-center-end, .swal2-container.swal2-grow-column.swal2-center-right, .swal2-container.swal2-grow-column.swal2-top-end, .swal2-container.swal2-grow-column.swal2-top-right {
  -webkit-box-align: end;
          align-items: flex-end;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-container.swal2-grow-column > .swal2-modal {
  display: -webkit-box !important;
  display: flex !important;
  -webkit-box-flex: 1;
          flex: 1;
  align-content: center;
  -webkit-box-pack: center;
          justify-content: center;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right) > .swal2-modal {
  margin: auto;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
  .swal2-container .swal2-modal {
    margin: 0 !important;
  }
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-container.swal2-fade {
  -webkit-transition: background-color .1s;
  transition: background-color .1s;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-container.swal2-shown {
  background-color: rgba(0, 0, 0, 0.4);
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup {
  display: none;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  width: 32em;
  max-width: 100%;
  padding: 1.25em;
  border-radius: .3125em;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  box-sizing: border-box;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup:focus {
  outline: 0;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup.swal2-loading {
  overflow-y: hidden;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-title {
  display: block;
  position: relative;
  max-width: 100%;
  margin: 0 0 .4em;
  padding: 0;
  color: #595959;
  font-size: 1.875em;
  font-weight: 600;
  text-align: center;
  text-transform: none;
  word-wrap: break-word;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-actions {
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  margin: 1.25em auto 0;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
  opacity: .4;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.1)));
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2)));
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm {
  width: 2.5em;
  height: 2.5em;
  margin: .46875em;
  padding: 0;
  border: .25em solid transparent;
  border-radius: 100%;
  border-color: transparent;
  background-color: transparent !important;
  color: transparent;
  cursor: default;
  box-sizing: border-box;
  -webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel {
  margin-right: 30px;
  margin-left: 30px;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm::after {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 5px;
  border: 3px solid #999;
  border-radius: 50%;
  border-right-color: transparent;
  box-shadow: 1px 1px 1px #fff;
  content: '';
  -webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-styled {
  margin: 0 .3125em;
  padding: .625em 2em;
  font-weight: 500;
  box-shadow: none;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-styled:not([disabled]) {
  cursor: pointer;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-styled.swal2-confirm {
  border: 0;
  border-radius: .25em;
  background: initial;
  background-color: #3085d6;
  color: #fff;
  font-size: 1.0625em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-styled.swal2-cancel {
  border: 0;
  border-radius: .25em;
  background: initial;
  background-color: #aaa;
  color: #fff;
  font-size: 1.0625em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-styled:focus {
  outline: 0;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(50, 100, 150, 0.4);
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-styled::-moz-focus-inner {
  border: 0;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-footer {
  -webkit-box-pack: center;
          justify-content: center;
  margin: 1.25em 0 0;
  padding: 1em 0 0;
  border-top: 1px solid #eee;
  color: #545454;
  font-size: 1em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-image {
  max-width: 100%;
  margin: 1.25em auto;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-close {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-box-pack: center;
          justify-content: center;
  width: 1.2em;
  height: 1.2em;
  padding: 0;
  -webkit-transition: color .1s ease-out;
  transition: color .1s ease-out;
  border: none;
  border-radius: 0;
  background: 0 0;
  color: #ccc;
  font-family: serif;
  font-size: 2.5em;
  line-height: 1.2;
  cursor: pointer;
  overflow: hidden;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-close:hover {
  -webkit-transform: none;
  transform: none;
  color: #f27474;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup > .swal2-checkbox, .swal2-popup > .swal2-file, .swal2-popup > .swal2-input, .swal2-popup > .swal2-radio, .swal2-popup > .swal2-select, .swal2-popup > .swal2-textarea {
  display: none;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-content {
  -webkit-box-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0;
  color: #545454;
  font-size: 1.125em;
  font-weight: 300;
  line-height: normal;
  word-wrap: break-word;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup #swal2-content {
  text-align: center;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-checkbox, .swal2-popup .swal2-file, .swal2-popup .swal2-input, .swal2-popup .swal2-radio, .swal2-popup .swal2-select, .swal2-popup .swal2-textarea {
  margin: 1em auto;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-file, .swal2-popup .swal2-input, .swal2-popup .swal2-textarea {
  width: 100%;
  -webkit-transition: border-color .3s,box-shadow .3s;
  transition: border-color .3s,box-shadow .3s;
  border: 1px solid #d9d9d9;
  border-radius: .1875em;
  font-size: 1.125em;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-file.swal2-inputerror, .swal2-popup .swal2-input.swal2-inputerror, .swal2-popup .swal2-textarea.swal2-inputerror {
  border-color: #f27474 !important;
  box-shadow: 0 0 2px #f27474 !important;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-file:focus, .swal2-popup .swal2-input:focus, .swal2-popup .swal2-textarea:focus {
  border: 1px solid #b4dbed;
  outline: 0;
  box-shadow: 0 0 3px #c4e6f5;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-file::-webkit-input-placeholder, .swal2-popup .swal2-input::-webkit-input-placeholder, .swal2-popup .swal2-textarea::-webkit-input-placeholder {
  color: #ccc;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-file:-ms-input-placeholder, .swal2-popup .swal2-input:-ms-input-placeholder, .swal2-popup .swal2-textarea:-ms-input-placeholder {
  color: #ccc;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-file::-ms-input-placeholder, .swal2-popup .swal2-input::-ms-input-placeholder, .swal2-popup .swal2-textarea::-ms-input-placeholder {
  color: #ccc;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-file::-webkit-input-placeholder, .swal2-popup .swal2-input::-webkit-input-placeholder, .swal2-popup .swal2-textarea::-webkit-input-placeholder {
  color: #ccc;
}
.swal2-popup .swal2-file::-moz-placeholder, .swal2-popup .swal2-input::-moz-placeholder, .swal2-popup .swal2-textarea::-moz-placeholder {
  color: #ccc;
}
.swal2-popup .swal2-file:-ms-input-placeholder, .swal2-popup .swal2-input:-ms-input-placeholder, .swal2-popup .swal2-textarea:-ms-input-placeholder {
  color: #ccc;
}
.swal2-popup .swal2-file::-ms-input-placeholder, .swal2-popup .swal2-input::-ms-input-placeholder, .swal2-popup .swal2-textarea::-ms-input-placeholder {
  color: #ccc;
}
.swal2-popup .swal2-file::placeholder, .swal2-popup .swal2-input::placeholder, .swal2-popup .swal2-textarea::placeholder {
  color: #ccc;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-range input {
  width: 80%;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-range output {
  width: 20%;
  font-weight: 600;
  text-align: center;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-range input, .swal2-popup .swal2-range output {
  height: 2.625em;
  margin: 1em auto;
  padding: 0;
  font-size: 1.125em;
  line-height: 2.625em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-input {
  height: 2.625em;
  padding: .75em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-input[type=number] {
  max-width: 10em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-file {
  font-size: 1.125em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-textarea {
  height: 6.75em;
  padding: .75em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-select {
  min-width: 50%;
  max-width: 100%;
  padding: .375em .625em;
  color: #545454;
  font-size: 1.125em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-checkbox, .swal2-popup .swal2-radio {
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-checkbox label, .swal2-popup .swal2-radio label {
  margin: 0 .6em;
  font-size: 1.125em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-checkbox input, .swal2-popup .swal2-radio input {
  margin: 0 .4em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-validationerror {
  display: none;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  padding: .625em;
  background: #f0f0f0;
  color: #666;
  font-size: 1em;
  font-weight: 300;
  overflow: hidden;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-popup .swal2-validationerror::before {
  display: inline-block;
  width: 1.5em;
  min-width: 1.5em;
  height: 1.5em;
  margin: 0 .625em;
  border-radius: 50%;
  background-color: #f27474;
  color: #fff;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
  content: '!';
  zoom: normal;
}

@supports (-ms-accelerator: true) {
  /* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
  .swal2-range input {
    width: 100% !important;
  }
  /* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
  .swal2-range output {
    display: none;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
  .swal2-range input {
    width: 100% !important;
  }
  /* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
  .swal2-range output {
    display: none;
  }
}

@-moz-document url-prefix() {
  /* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
  .swal2-close:focus {
    outline: 2px solid rgba(50, 100, 150, 0.4);
  }
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-icon {
  position: relative;
  -webkit-box-pack: center;
          justify-content: center;
  width: 5em;
  height: 5em;
  margin: 1.25em auto 1.875em;
  border: .25em solid transparent;
  border-radius: 50%;
  line-height: 5em;
  cursor: default;
  box-sizing: content-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  zoom: normal;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-icon-text {
  font-size: 3.75em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-icon.swal2-error {
  border-color: #f27474;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-icon.swal2-error .swal2-x-mark {
  position: relative;
  -webkit-box-flex: 1;
          flex-grow: 1;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  display: block;
  position: absolute;
  top: 2.3125em;
  width: 2.9375em;
  height: .3125em;
  border-radius: .125em;
  background-color: #f27474;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
  left: 1.0625em;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
  right: 1em;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-icon.swal2-warning {
  border-color: #facea8;
  color: #f8bb86;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-icon.swal2-info {
  border-color: #9de0f6;
  color: #3fc3ee;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-icon.swal2-question {
  border-color: #c9dae1;
  color: #87adbd;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-icon.swal2-success {
  border-color: #a5dc86;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-icon.swal2-success [class^=swal2-success-circular-line] {
  position: absolute;
  width: 3.75em;
  height: 7.5em;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 50%;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left] {
  top: -.4375em;
  left: -2.0635em;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 3.75em 3.75em;
  transform-origin: 3.75em 3.75em;
  border-radius: 7.5em 0 0 7.5em;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right] {
  top: -.6875em;
  left: 1.875em;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0 3.75em;
  transform-origin: 0 3.75em;
  border-radius: 0 7.5em 7.5em 0;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-icon.swal2-success .swal2-success-ring {
  position: absolute;
  top: -.25em;
  left: -.25em;
  width: 100%;
  height: 100%;
  border: 0.25em solid rgba(165, 220, 134, 0.3);
  border-radius: 50%;
  z-index: 2;
  box-sizing: content-box;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-icon.swal2-success .swal2-success-fix {
  position: absolute;
  top: .5em;
  left: 1.625em;
  width: .4375em;
  height: 5.625em;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  z-index: 1;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-icon.swal2-success [class^=swal2-success-line] {
  display: block;
  position: absolute;
  height: .3125em;
  border-radius: .125em;
  background-color: #a5dc86;
  z-index: 2;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
  top: 2.875em;
  left: .875em;
  width: 1.5625em;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-icon.swal2-success [class^=swal2-success-line][class$=long] {
  top: 2.375em;
  right: .5em;
  width: 2.9375em;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-progresssteps {
  -webkit-box-align: center;
          align-items: center;
  margin: 0 0 1.25em;
  padding: 0;
  font-weight: 600;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-progresssteps li {
  display: inline-block;
  position: relative;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-progresssteps .swal2-progresscircle {
  width: 2em;
  height: 2em;
  border-radius: 2em;
  background: #3085d6;
  color: #fff;
  line-height: 2em;
  text-align: center;
  z-index: 20;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-progresssteps .swal2-progresscircle:first-child {
  margin-left: 0;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-progresssteps .swal2-progresscircle:last-child {
  margin-right: 0;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep {
  background: #3085d6;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep ~ .swal2-progresscircle {
  background: #add8e6;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep ~ .swal2-progressline {
  background: #add8e6;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-progresssteps .swal2-progressline {
  width: 2.5em;
  height: .4em;
  margin: 0 -1px;
  background: #3085d6;
  z-index: 10;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
[class^=swal2] {
  -webkit-tap-highlight-color: transparent;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-show {
  -webkit-animation: swal2-show .3s;
  animation: swal2-show .3s;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-show.swal2-noanimation {
  -webkit-animation: none;
  animation: none;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-hide {
  -webkit-animation: swal2-hide .15s forwards;
  animation: swal2-hide .15s forwards;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-hide.swal2-noanimation {
  -webkit-animation: none;
  animation: none;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
[dir=rtl] .swal2-close {
  right: auto;
  left: 0;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-animate-success-icon .swal2-success-line-tip {
  -webkit-animation: swal2-animate-success-line-tip .75s;
  animation: swal2-animate-success-line-tip .75s;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-animate-success-icon .swal2-success-line-long {
  -webkit-animation: swal2-animate-success-line-long .75s;
  animation: swal2-animate-success-line-long .75s;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-animate-success-icon .swal2-success-circular-line-right {
  -webkit-animation: swal2-rotate-success-circular-line 4.25s ease-in;
  animation: swal2-rotate-success-circular-line 4.25s ease-in;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-animate-error-icon {
  -webkit-animation: swal2-animate-error-icon .5s;
  animation: swal2-animate-error-icon .5s;
}

/* line 1, vendor/bundle/ruby/2.6.0/gems/sweetalert2-7.25.6/app/assets/stylesheets/sweetalert2/sweetalert2.min.css */
.swal2-animate-error-icon .swal2-x-mark {
  -webkit-animation: swal2-animate-error-x-mark .5s;
  animation: swal2-animate-error-x-mark .5s;
}

@-webkit-keyframes swal2-rotate-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swal2-rotate-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  40%, 43%, 70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  40%, 43%, 70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

@keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(-1turn);
    transform: perspective(400px) rotateY(-1turn);
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) translateZ(150px) rotateY(-190deg);
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) translateZ(150px) rotateY(-170deg);
  }
  50%, 80% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(-1turn);
    transform: perspective(400px) rotateY(-1turn);
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) translateZ(150px) rotateY(-190deg);
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) translateZ(150px) rotateY(-170deg);
  }
  50%, 80% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  0%, 40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
  }
  60%, 80% {
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
  }
  60%, 80% {
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: center;
  }
  to {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: center;
  }
  to {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: center;
  }
  to {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: center;
  }
  to {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
  0%, 20%, 60% {
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
  0%, 20%, 60% {
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50%, to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50%, to {
    opacity: 0;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

/* line 11, vendor/bundle/ruby/2.6.0/gems/animate-rails-1.0.10/app/assets/stylesheets/animate.css */
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/* ==========================================================================
   #WIDTHS
   ========================================================================== */
/**
 * inuitcss generates a series of utility classes that give a fluid width to
 * whichever element they’re applied, e.g.:
 *
 *   <img src="" alt="" class="u-1/2" />
 *
 * These classes are most commonly used in conjunction with our layout system,
 * e.g.:
 *
 *   <div class="o-layout__item  u-1/2">
 *
 * By default, inuitcss will also generate responsive variants of each of these
 * classes by using your Sass MQ configuration, e.g.:
 *
 *   <div class="o-layout__item  u-1/1  u-1/2@tablet  u-1/3@desktop">
 *
 * Optionally, inuitcss can generate offset classes which can push and pull
 * elements left and right by a specified amount, e.g.:
 *
 *   <div class="o-layout__item  u-2/3  u-pull-1/3">
 *
 * This is useful for making very granular changes to the rendered order of
 * items in a layout.
 *
 * N.B. This option is turned off by default.
 */
/**
 * A series of width helper classes that you can use to size things like grid
 * systems. Classes take a fraction-like format (e.g. `.u-2/3`). Use these in
 * your markup:
 *
 * <div class="u-7/12">
 *
 * The following will generate widths helper classes based on the fractions
 * defined in the `$inuit-fractions` list.
 */
/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-1\/1 {
  width: 100% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-1\/2 {
  width: 50% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-2\/2 {
  width: 100% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-1\/3 {
  width: 33.33333% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-2\/3 {
  width: 66.66667% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-3\/3 {
  width: 100% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-1\/4 {
  width: 25% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-2\/4 {
  width: 50% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-3\/4 {
  width: 75% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-4\/4 {
  width: 100% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-1\/5 {
  width: 20% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-2\/5 {
  width: 40% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-3\/5 {
  width: 60% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-4\/5 {
  width: 80% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-5\/5 {
  width: 100% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-1\/6 {
  width: 16.66667% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-2\/6 {
  width: 33.33333% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-3\/6 {
  width: 50% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-4\/6 {
  width: 66.66667% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-5\/6 {
  width: 83.33333% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-6\/6 {
  width: 100% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-1\/7 {
  width: 14.28571% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-2\/7 {
  width: 28.57143% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-3\/7 {
  width: 42.85714% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-4\/7 {
  width: 57.14286% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-5\/7 {
  width: 71.42857% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-6\/7 {
  width: 85.71429% !important;
}

/* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
.u-7\/7 {
  width: 100% !important;
}

/**
 * If we’re using Sass-MQ, automatically generate grid system(s) for each of our
 * defined breakpoints, and give them a Responsive Suffix, e.g.:
 *
 * <div class="u-3/12@mobile">
 */
@media (min-width: 20em) {
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/1\@mobile {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/2\@mobile {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/2\@mobile {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/3\@mobile {
    width: 33.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/3\@mobile {
    width: 66.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/3\@mobile {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/4\@mobile {
    width: 25% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/4\@mobile {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/4\@mobile {
    width: 75% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/4\@mobile {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/5\@mobile {
    width: 20% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/5\@mobile {
    width: 40% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/5\@mobile {
    width: 60% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/5\@mobile {
    width: 80% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/5\@mobile {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/6\@mobile {
    width: 16.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/6\@mobile {
    width: 33.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/6\@mobile {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/6\@mobile {
    width: 66.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/6\@mobile {
    width: 83.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-6\/6\@mobile {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/7\@mobile {
    width: 14.28571% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/7\@mobile {
    width: 28.57143% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/7\@mobile {
    width: 42.85714% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/7\@mobile {
    width: 57.14286% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/7\@mobile {
    width: 71.42857% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-6\/7\@mobile {
    width: 85.71429% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-7\/7\@mobile {
    width: 100% !important;
  }
}

@media (min-width: 28.125em) {
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/1\@phablet {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/2\@phablet {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/2\@phablet {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/3\@phablet {
    width: 33.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/3\@phablet {
    width: 66.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/3\@phablet {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/4\@phablet {
    width: 25% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/4\@phablet {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/4\@phablet {
    width: 75% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/4\@phablet {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/5\@phablet {
    width: 20% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/5\@phablet {
    width: 40% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/5\@phablet {
    width: 60% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/5\@phablet {
    width: 80% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/5\@phablet {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/6\@phablet {
    width: 16.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/6\@phablet {
    width: 33.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/6\@phablet {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/6\@phablet {
    width: 66.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/6\@phablet {
    width: 83.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-6\/6\@phablet {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/7\@phablet {
    width: 14.28571% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/7\@phablet {
    width: 28.57143% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/7\@phablet {
    width: 42.85714% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/7\@phablet {
    width: 57.14286% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/7\@phablet {
    width: 71.42857% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-6\/7\@phablet {
    width: 85.71429% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-7\/7\@phablet {
    width: 100% !important;
  }
}

@media (min-width: 40em) {
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/1\@tablet {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/2\@tablet {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/2\@tablet {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/3\@tablet {
    width: 33.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/3\@tablet {
    width: 66.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/3\@tablet {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/4\@tablet {
    width: 25% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/4\@tablet {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/4\@tablet {
    width: 75% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/4\@tablet {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/5\@tablet {
    width: 20% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/5\@tablet {
    width: 40% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/5\@tablet {
    width: 60% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/5\@tablet {
    width: 80% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/5\@tablet {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/6\@tablet {
    width: 16.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/6\@tablet {
    width: 33.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/6\@tablet {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/6\@tablet {
    width: 66.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/6\@tablet {
    width: 83.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-6\/6\@tablet {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/7\@tablet {
    width: 14.28571% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/7\@tablet {
    width: 28.57143% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/7\@tablet {
    width: 42.85714% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/7\@tablet {
    width: 57.14286% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/7\@tablet {
    width: 71.42857% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-6\/7\@tablet {
    width: 85.71429% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-7\/7\@tablet {
    width: 100% !important;
  }
}

@media (min-width: 53.125em) {
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/1\@tablet-desktop {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/2\@tablet-desktop {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/2\@tablet-desktop {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/3\@tablet-desktop {
    width: 33.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/3\@tablet-desktop {
    width: 66.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/3\@tablet-desktop {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/4\@tablet-desktop {
    width: 25% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/4\@tablet-desktop {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/4\@tablet-desktop {
    width: 75% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/4\@tablet-desktop {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/5\@tablet-desktop {
    width: 20% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/5\@tablet-desktop {
    width: 40% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/5\@tablet-desktop {
    width: 60% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/5\@tablet-desktop {
    width: 80% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/5\@tablet-desktop {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/6\@tablet-desktop {
    width: 16.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/6\@tablet-desktop {
    width: 33.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/6\@tablet-desktop {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/6\@tablet-desktop {
    width: 66.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/6\@tablet-desktop {
    width: 83.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-6\/6\@tablet-desktop {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/7\@tablet-desktop {
    width: 14.28571% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/7\@tablet-desktop {
    width: 28.57143% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/7\@tablet-desktop {
    width: 42.85714% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/7\@tablet-desktop {
    width: 57.14286% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/7\@tablet-desktop {
    width: 71.42857% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-6\/7\@tablet-desktop {
    width: 85.71429% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-7\/7\@tablet-desktop {
    width: 100% !important;
  }
}

@media (min-width: 61.25em) {
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/1\@desktop {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/2\@desktop {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/2\@desktop {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/3\@desktop {
    width: 33.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/3\@desktop {
    width: 66.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/3\@desktop {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/4\@desktop {
    width: 25% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/4\@desktop {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/4\@desktop {
    width: 75% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/4\@desktop {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/5\@desktop {
    width: 20% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/5\@desktop {
    width: 40% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/5\@desktop {
    width: 60% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/5\@desktop {
    width: 80% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/5\@desktop {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/6\@desktop {
    width: 16.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/6\@desktop {
    width: 33.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/6\@desktop {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/6\@desktop {
    width: 66.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/6\@desktop {
    width: 83.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-6\/6\@desktop {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/7\@desktop {
    width: 14.28571% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/7\@desktop {
    width: 28.57143% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/7\@desktop {
    width: 42.85714% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/7\@desktop {
    width: 57.14286% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/7\@desktop {
    width: 71.42857% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-6\/7\@desktop {
    width: 85.71429% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-7\/7\@desktop {
    width: 100% !important;
  }
}

@media (min-width: 71.875em) {
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/1\@desktop-wide {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/2\@desktop-wide {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/2\@desktop-wide {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/3\@desktop-wide {
    width: 33.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/3\@desktop-wide {
    width: 66.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/3\@desktop-wide {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/4\@desktop-wide {
    width: 25% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/4\@desktop-wide {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/4\@desktop-wide {
    width: 75% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/4\@desktop-wide {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/5\@desktop-wide {
    width: 20% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/5\@desktop-wide {
    width: 40% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/5\@desktop-wide {
    width: 60% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/5\@desktop-wide {
    width: 80% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/5\@desktop-wide {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/6\@desktop-wide {
    width: 16.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/6\@desktop-wide {
    width: 33.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/6\@desktop-wide {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/6\@desktop-wide {
    width: 66.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/6\@desktop-wide {
    width: 83.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-6\/6\@desktop-wide {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/7\@desktop-wide {
    width: 14.28571% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/7\@desktop-wide {
    width: 28.57143% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/7\@desktop-wide {
    width: 42.85714% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/7\@desktop-wide {
    width: 57.14286% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/7\@desktop-wide {
    width: 71.42857% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-6\/7\@desktop-wide {
    width: 85.71429% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-7\/7\@desktop-wide {
    width: 100% !important;
  }
}

@media (min-width: 81.25em) {
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/1\@wide {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/2\@wide {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/2\@wide {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/3\@wide {
    width: 33.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/3\@wide {
    width: 66.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/3\@wide {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/4\@wide {
    width: 25% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/4\@wide {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/4\@wide {
    width: 75% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/4\@wide {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/5\@wide {
    width: 20% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/5\@wide {
    width: 40% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/5\@wide {
    width: 60% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/5\@wide {
    width: 80% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/5\@wide {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/6\@wide {
    width: 16.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/6\@wide {
    width: 33.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/6\@wide {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/6\@wide {
    width: 66.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/6\@wide {
    width: 83.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-6\/6\@wide {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/7\@wide {
    width: 14.28571% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/7\@wide {
    width: 28.57143% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/7\@wide {
    width: 42.85714% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/7\@wide {
    width: 57.14286% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/7\@wide {
    width: 71.42857% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-6\/7\@wide {
    width: 85.71429% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-7\/7\@wide {
    width: 100% !important;
  }
}

@media (min-width: 112.5em) {
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/1\@super-wide {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/2\@super-wide {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/2\@super-wide {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/3\@super-wide {
    width: 33.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/3\@super-wide {
    width: 66.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/3\@super-wide {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/4\@super-wide {
    width: 25% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/4\@super-wide {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/4\@super-wide {
    width: 75% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/4\@super-wide {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/5\@super-wide {
    width: 20% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/5\@super-wide {
    width: 40% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/5\@super-wide {
    width: 60% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/5\@super-wide {
    width: 80% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/5\@super-wide {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/6\@super-wide {
    width: 16.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/6\@super-wide {
    width: 33.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/6\@super-wide {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/6\@super-wide {
    width: 66.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/6\@super-wide {
    width: 83.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-6\/6\@super-wide {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/7\@super-wide {
    width: 14.28571% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/7\@super-wide {
    width: 28.57143% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/7\@super-wide {
    width: 42.85714% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/7\@super-wide {
    width: 57.14286% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/7\@super-wide {
    width: 71.42857% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-6\/7\@super-wide {
    width: 85.71429% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-7\/7\@super-wide {
    width: 100% !important;
  }
}

@media (min-width: 160em) {
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/1\@thunderbolt {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/2\@thunderbolt {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/2\@thunderbolt {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/3\@thunderbolt {
    width: 33.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/3\@thunderbolt {
    width: 66.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/3\@thunderbolt {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/4\@thunderbolt {
    width: 25% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/4\@thunderbolt {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/4\@thunderbolt {
    width: 75% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/4\@thunderbolt {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/5\@thunderbolt {
    width: 20% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/5\@thunderbolt {
    width: 40% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/5\@thunderbolt {
    width: 60% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/5\@thunderbolt {
    width: 80% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/5\@thunderbolt {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/6\@thunderbolt {
    width: 16.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/6\@thunderbolt {
    width: 33.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/6\@thunderbolt {
    width: 50% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/6\@thunderbolt {
    width: 66.66667% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/6\@thunderbolt {
    width: 83.33333% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-6\/6\@thunderbolt {
    width: 100% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-1\/7\@thunderbolt {
    width: 14.28571% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-2\/7\@thunderbolt {
    width: 28.57143% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-3\/7\@thunderbolt {
    width: 42.85714% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-4\/7\@thunderbolt {
    width: 57.14286% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-5\/7\@thunderbolt {
    width: 71.42857% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-6\/7\@thunderbolt {
    width: 85.71429% !important;
  }
  /* line 98, node_modules/inuitcss/utilities/_utilities.widths.scss */
  .u-7\/7\@thunderbolt {
    width: 100% !important;
  }
}

/* ==========================================================================
   #HEADINGS
   ========================================================================== */
/**
 * Redefine all of our basic heading styles against utility classes so as to
 * allow for double stranded heading hierarchy, e.g. we semantically need an H2,
 * but we want it to be sized like an H1:
 *
 *   <h2 class="u-h1"></h2>
 *
 */
/* line 14, node_modules/inuitcss/utilities/_utilities.headings.scss */
.u-h1 {
  font-size: 36px !important;
  font-size: 2.25rem !important;
  line-height: 1.16667 !important;
}

/* line 18, node_modules/inuitcss/utilities/_utilities.headings.scss */
.u-h2 {
  font-size: 28px !important;
  font-size: 1.75rem !important;
  line-height: 1.28571 !important;
}

/* line 22, node_modules/inuitcss/utilities/_utilities.headings.scss */
.u-h3 {
  font-size: 24px !important;
  font-size: 1.5rem !important;
  line-height: 1.25 !important;
}

/* line 26, node_modules/inuitcss/utilities/_utilities.headings.scss */
.u-h4 {
  font-size: 20px !important;
  font-size: 1.25rem !important;
  line-height: 1.5 !important;
}

/* line 30, node_modules/inuitcss/utilities/_utilities.headings.scss */
.u-h5 {
  font-size: 18px !important;
  font-size: 1.125rem !important;
  line-height: 1.33333 !important;
}

/* line 34, node_modules/inuitcss/utilities/_utilities.headings.scss */
.u-h6 {
  font-size: 16px !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
}

/* ==========================================================================
   #SPACINGS
   ========================================================================== */
/**
 * Utility classes to put specific spacing values onto elements. The below loop
 * will generate us a suite of classes like:
 *
 *   .u-margin-top {}
 *   .u-padding-left-large {}
 *   .u-margin-right-small {}
 *   .u-padding {}
 *   .u-padding-right-none {}
 *   .u-padding-horizontal {}
 *   .u-padding-vertical-small {}
 */
/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding {
  padding: 24px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-tiny {
  padding: 6px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-small {
  padding: 12px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-large {
  padding: 48px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-huge {
  padding: 96px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-none {
  padding: 0 !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-auto {
  padding: auto !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-top {
  padding-top: 24px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-top-tiny {
  padding-top: 6px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-top-small {
  padding-top: 12px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-top-large {
  padding-top: 48px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-top-huge {
  padding-top: 96px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-top-none {
  padding-top: 0 !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-top-auto {
  padding-top: auto !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-right {
  padding-right: 24px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-right-tiny {
  padding-right: 6px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-right-small {
  padding-right: 12px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-right-large {
  padding-right: 48px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-right-huge {
  padding-right: 96px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-right-none {
  padding-right: 0 !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-right-auto {
  padding-right: auto !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-bottom {
  padding-bottom: 24px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-bottom-tiny {
  padding-bottom: 6px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-bottom-small {
  padding-bottom: 12px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-bottom-large {
  padding-bottom: 48px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-bottom-huge {
  padding-bottom: 96px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-bottom-none {
  padding-bottom: 0 !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-bottom-auto {
  padding-bottom: auto !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-left {
  padding-left: 24px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-left-tiny {
  padding-left: 6px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-left-small {
  padding-left: 12px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-left-large {
  padding-left: 48px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-left-huge {
  padding-left: 96px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-left-none {
  padding-left: 0 !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-left-auto {
  padding-left: auto !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-horizontal {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-horizontal-tiny {
  padding-left: 6px !important;
  padding-right: 6px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-horizontal-small {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-horizontal-large {
  padding-left: 48px !important;
  padding-right: 48px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-horizontal-huge {
  padding-left: 96px !important;
  padding-right: 96px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-horizontal-none {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-horizontal-auto {
  padding-left: auto !important;
  padding-right: auto !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-vertical {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-vertical-tiny {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-vertical-small {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-vertical-large {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-vertical-huge {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-vertical-none {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-padding-vertical-auto {
  padding-top: auto !important;
  padding-bottom: auto !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin {
  margin: 24px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-tiny {
  margin: 6px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-small {
  margin: 12px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-large {
  margin: 48px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-huge {
  margin: 96px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-none {
  margin: 0 !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-auto {
  margin: auto !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-top {
  margin-top: 24px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-top-tiny {
  margin-top: 6px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-top-small {
  margin-top: 12px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-top-large {
  margin-top: 48px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-top-huge {
  margin-top: 96px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-top-none {
  margin-top: 0 !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-top-auto {
  margin-top: auto !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-right {
  margin-right: 24px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-right-tiny {
  margin-right: 6px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-right-small {
  margin-right: 12px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-right-large {
  margin-right: 48px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-right-huge {
  margin-right: 96px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-right-none {
  margin-right: 0 !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-right-auto {
  margin-right: auto !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-bottom {
  margin-bottom: 24px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-bottom-tiny {
  margin-bottom: 6px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-bottom-small {
  margin-bottom: 12px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-bottom-large {
  margin-bottom: 48px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-bottom-huge {
  margin-bottom: 96px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-bottom-none {
  margin-bottom: 0 !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-bottom-auto {
  margin-bottom: auto !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-left {
  margin-left: 24px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-left-tiny {
  margin-left: 6px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-left-small {
  margin-left: 12px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-left-large {
  margin-left: 48px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-left-huge {
  margin-left: 96px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-left-none {
  margin-left: 0 !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-left-auto {
  margin-left: auto !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-horizontal {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-horizontal-tiny {
  margin-left: 6px !important;
  margin-right: 6px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-horizontal-small {
  margin-left: 12px !important;
  margin-right: 12px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-horizontal-large {
  margin-left: 48px !important;
  margin-right: 48px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-horizontal-huge {
  margin-left: 96px !important;
  margin-right: 96px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-horizontal-none {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-horizontal-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-vertical {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-vertical-tiny {
  margin-top: 6px !important;
  margin-bottom: 6px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-vertical-small {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-vertical-large {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-vertical-huge {
  margin-top: 96px !important;
  margin-bottom: 96px !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-vertical-none {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* line 48, node_modules/inuitcss/utilities/_utilities.spacings.scss */
.u-margin-vertical-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

/* ==========================================================================
   #RESPONSIVE-SPACINGS
   ========================================================================== */
/**
 * Utility classes enhancing the normal spacing classes by adding responsiveness
 * to them. By default, there are not responsive spacings defined. You can
 * generate responsive spacings by adding entries to the following three Sass
 * maps, e.g.:
 *
 *   $inuit-responsive-spacing-directions: (
 *     null: null,
 *     bottom: bottom,
 *   );
 *
 *   $inuit-responsive-spacing-properties: (
 *     "margin": "margin",
 *   );
 *
 *   $inuit-responsive-spacing-sizes: (
 *     "-small": $inuit-global-spacing-unit-small,
 *   );
 *
 * This would bring us the following classes:
 *
 *   .u-margin-small@mobile {}
 *   .u-margin-small@tablet {}
 *   .u-margin-small@desktop {}
 *   .u-margin-small@wide {}
 *   .u-margin-bottom-small@mobile {}
 *   .u-margin-bottom-small@tablet {}
 *   .u-margin-bottom-small@desktop {}
 *   .u-margin-bottom-small@wide {}
 *
 * You can change the generated CSS classes by further extending the Sass maps.
 * If you want every ‘normal’ spacing (those from `utilities.spacings`) also as
 * a responsive version, you can just mirror the ‘normal’ spacings:
 *
 *   $inuit-responsive-spacing-directions: $inuit-spacing-directions !default;
 *
 *   $inuit-responsive-spacing-properties: $inuit-spacing-properties !default;
 *
 *   $inuit-responsive-spacing-sizes: $inuit-spacing-sizes !default;
 *
 * BUT BE AWARE: This can generate a huge chunk of extra CSS, depending on the
 * amount of breakpoints you defined. So please check your CSS’ output and
 * filesize!
 */
/* stylelint-disable max-nesting-depth */
/* stylelint-enable max-nesting-depth */
/* ==========================================================================
   #PRINT
   ========================================================================== */
/**
 * Very crude, reset-like styles taken from the HTML5 Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/5.3.0/dist/doc/css.md#print-styles
 * https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css#L205-L282
 */
@media print {
  /**
   * 1. Black prints faster: http://www.sanbeiji.com/archives/953
   */
  /* line 17, node_modules/inuitcss/utilities/_utilities.print.scss */
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* [1] */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  /* line 27, node_modules/inuitcss/utilities/_utilities.print.scss */
  a,
  a:visited {
    text-decoration: underline;
  }
  /* line 32, node_modules/inuitcss/utilities/_utilities.print.scss */
  a[href]:after {
    content: " (" attr(href) ")";
  }
  /* line 36, node_modules/inuitcss/utilities/_utilities.print.scss */
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /**
   * Don’t show links that are fragment identifiers, or use the `javascript:`
   * pseudo protocol.
   */
  /* line 46, node_modules/inuitcss/utilities/_utilities.print.scss */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  /* line 51, node_modules/inuitcss/utilities/_utilities.print.scss */
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /**
   * Printing Tables: http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  /* line 62, node_modules/inuitcss/utilities/_utilities.print.scss */
  thead {
    display: table-header-group;
  }
  /* line 66, node_modules/inuitcss/utilities/_utilities.print.scss */
  tr,
  img {
    page-break-inside: avoid;
  }
  /* line 72, node_modules/inuitcss/utilities/_utilities.print.scss */
  img {
    max-width: 100% !important;
  }
  /* line 76, node_modules/inuitcss/utilities/_utilities.print.scss */
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  /* line 83, node_modules/inuitcss/utilities/_utilities.print.scss */
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* ==========================================================================
   #HIDE
   ========================================================================== */
/**
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
/* line 10, node_modules/inuitcss/utilities/_utilities.hide.scss */
.u-hidden-visually {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

/**
 * Hide visually and from screen readers.
 */
/* line 19, node_modules/inuitcss/utilities/_utilities.hide.scss */
.u-hidden {
  display: none !important;
}
